// JavaScript Document
	$(document).ready(function(){
		//alert(len)
		//$(".ad").hide();
		
		$(".ctrl").bind("mouseover",function(){
			//$(".ad").hide();
			var n=$(this).parent().prevAll().length;
			//alert(n)
			//$("div.ad:eq("+n+")").fadeIn("slow");
			$(".imagesbg:eq("+n+")").addClass("menubg_X")
		
		})
		$(".ctrl").mouseout(function(){
			var n=$(this).parent().prevAll().length;
			$(".imagesbg:eq("+n+")").removeClass("menubg_X")
		
		})
		//$(".jqueryctrl1,.jqueryctrl2").mouseover(function(){
			//$("div.ad").hide("fast");
		//});
		
		//setTimeout($(".ctrl").mouseout(function(){
		
			//$(".ad").hide("fast")
		
		//}),10000)
		
		
	})