// JavaScript ロールオーバー
$(function(){
	$("img.roll").mouseover(function(){
		$(this).attr("src",$(this).attr("src").replace(/^(.+)(\.[a-z]+)$/, "$1_on$2"))
	}).mouseout(function(){
		$(this).attr("src",$(this).attr("src").replace(/^(.+)_on(\.[a-z]+)$/, "$1$2"));
	}).each(function(){
		$("<img>").attr("src",$(this).attr("src").replace(/^(.+)(\.[a-z]+)$/, "$1_on$2"))
	})
})


//別ウィンドウ
//function open_win(){
//	window.open("http://www.ivue.jp/niimi/img/contp/kiji.jpg","","width=450,height=330")
//}
