//////////////////////////////////////////////////
//ポップアップ

//('url','width','height')と記述。
function openWin(url,win,myWidth,myHeight){
    win = window.open(url,win,'toolbar=0,location=0,status=0,menubar=0,scrollbars=yes,resizable=1,width='+myWidth+',height='+myHeight);
    win.focus();
}

//メニューバー表示対応
function openWinM(url,win,myWidth,myHeight){
    win = window.open(url,win,'toolbar=1,location=1,status=1,menubar=1,scrollbars=yes,resizable=1,width='+myWidth+',height='+myHeight);
    win.focus();
}



//////////////////////////////////////////////////
//ロールオーバー
function initRollOverImages() { 
	var image_cache = new Object();
	$("img.hover").not("[src*='_o.']").each(function(i) {
		var imgsrc = this.src;  
		var dot = this.src.lastIndexOf('.');  
		var imgsrc_on = this.src.substr(0, dot) + '_o' + this.src.substr(dot, 4);  
		image_cache[this.src] = new Image();  
		image_cache[this.src].src = imgsrc_on;  
		$(this).hover(  
			function() { this.src = imgsrc_on; },  
			function() { this.src = imgsrc; }  
		);  
	});  
}  
$(document).ready(initRollOverImages);
