/*********************************************
Copyright (c) 2008-2009 Nippon Art Printing Co.,Ltd.
http://www.nipponart-p.co.jp/
last update 2009/11/26
*********************************************/
var artRolloverImages=new Array();
$(function(){
	$('img[src*="_off."] , input[src*="_off."]').each(function(i){
	   if($(this).parent().parent().attr("class")=="on"){
		currentPage(this,"_off.","_on.");
	   }else{
	   	artRollover(this,"_off.","_on.");
	   }
	});
});
function artRollover(thisObj,before,after){
	var off=thisObj.src;
	var on=thisObj.src.replace(before,after);
	var imageObjTemp=new Image();
	imageObjTemp.src=on;
	artRolloverImages.push(imageObjTemp);
	$(thisObj).mouseover(function(){thisObj.setAttribute("src",on);});
	$(thisObj).mouseout (function() {thisObj.setAttribute("src",off);});
	$(thisObj).error(function() {thisObj.setAttribute("src",off);thisObj.onmouseover=function(){};});
}
function currentPage(thisObj,before,after){
	var off=thisObj.src;
	var on=thisObj.src.replace(before,after);
	var imageObjTemp=new Image();
	imageObjTemp.src=on;
	artRolloverImages.push(imageObjTemp);
	$(function(){thisObj.setAttribute("src",on);});
	$(thisObj).error(function() {thisObj.setAttribute("src",off);});
}

