/* 
	:title 		"Project D Javascript Library for Beauty Soul";
	:created 	"2010/04/16";
	:release 	[:revision "1.00"];
	:auther 	[:name "Project D"];
	:note		"
				使用には、jQueryが必要です。
				jQuery : http://jquery.com/
				Outline -
				1. 画像のロールオーバー
				2. ウィンドウ関連
				";
*/

$(document).ready(function(){var imgCache=new Object();$('.rollover').not('[src*="_on."]').each(function(i){var imgSrc,period,imgSrcOn;imgSrc=this.src;period=this.src.lastIndexOf('.');imgSrcOn=this.src.substr(0,period)+'_on'+this.src.substr(period,4);imgCache[this.src]=new Image();imgCache[this.src].src=imgSrcOn;$(this).hover(function(){this.src=imgSrcOn;},function(){this.src=imgSrc;});});});$(document).ready(function(){var tgDomain;tgDomain="beautysoul-st.jp";$('a[href^="http://"],area[href^="http://"]').not('[href*='+tgDomain+']').click(function(){window.open(this.href,'');return false;});$('a[href^="https://"],area[href^="https://"]').not('[href*='+tgDomain+']').click(function(){window.open(this.href,'');return false;});$('a[href$=".pdf"],area[href$=".pdf"]').click(function(){window.open(this.href,'');return false;});});function winOpen(url,winName,width,height){var features='location=no,menubar=no,status=yes,scrollbars=yes,resizable=yes,toolbar=no';features+=',width='+width;features+=',height='+height;window.open(url,winName,features);}function winClose(){window.close();return false;}