timerRun=false;
$jq("#pointer").hover(
	function(){
		if(timerRun==true) {
			clearTimeout(timer);
			timerRun=false;
		}
		else {
			$jq("#leftMenu").show("slide", { }, 1000);
			$jq("#rightMenu").show("slide", {direction:"right"}, 1000);
			$jq("div.flashSunContainer").animate({opacity:"show"}, 1000, function() {
				$jq("#leftFlashSunTd").css("background-image", "url('/img/welcome/welcome_page_left_sun_on.jpg')");
				$jq("#rightFlashSunTd").css("background-image", "url('/img/welcome/welcome_page_right_sun_on.jpg')");
                	});
		}
	},
	function(){
		timer=setTimeout("hideMenu()", 2000);
		timerRun=true;
	}
);
function hideMenu(){
	$jq("#leftMenu").hide("slide", { direction: "left" }, 1000);
	$jq("#rightMenu").hide("slide", { direction: "right" }, 1000);
	$jq("div.flashSunContainer").animate({opacity:"hide"}, 1000);
	$jq("#leftFlashSunTd").css("background-image", "url('/img/welcome/welcome_page_left_sun_off.jpg')");
	$jq("#rightFlashSunTd").css("background-image", "url('/img/welcome/welcome_page_right_sun_off.jpg')");
	timerRun=false;
};
$jq(".rollMenu").hover(
	function(){
		if(timerRun==true){
			clearTimeout(timer);
			timerRun=false;
		}
	},
	function(){
		timer=setTimeout("hideMenu()", 2000);
		timerRun=true;
	}
);
$jq(".menuItem").hover(
		function(){
			$jq(this).css("background", "url('/img/"+this.id+"_on.png') center no-repeat");
		},
		function(){
			$jq(this).css("background", "url('/img/"+this.id+".png') center no-repeat");
		}
);

