function fadeDiv(obj){

	if(eval(obj + "state") == true){		if($("#imgArea div:last-child").attr("id") != obj){			if($("#imgArea div").length >= 2){				$("#imgArea div:first-child").remove();			}			$("#imgArea").append("<div id='" + obj + "'></div>");			$("#" + obj).fadeIn("fast",function(){});		}	}else{	}}


function btnOver(idnama){	samp = setTimeout("fadeDiv('" + idnama + "')",200);}



$(document).ready(function(){					if ($.browser.msie && $.browser.version <= 6){		}else{		$("#img7").fadeIn("fast",function(){});		$("#mnBtn01 a").hover(		function(){			img1state = true;			btnOver("img1");				},function(){			test1state = false;	});		$("#mnBtn02 a").hover(		function(){			img2state = true;			btnOver("img2");				},function(){			test2state = false;	});		$("#mnBtn03 a").hover(		function(){			img3state = true;			btnOver("img3");				},function(){			img3state = false;	});		$("#mnBtn04 a").hover(		function(){			img4state = true;			btnOver("img4");				},function(){			img4state = false;	});		$("#mnBtn05 a").hover(		function(){			img5state = true;			btnOver("img5");				},function(){			img5state = false;	});		$("#mnBtn06 a").hover(		function(){			img6state = true;			btnOver("img6");				},function(){			img6state = false;	});			$("#mainNavi").hover(		function(){			img7state = false;		},function(){			img7state = true;			btnOver("img7");				});		}	});

