$(document).ready(function(){
	
	$("div.drop_down").hide();
	
	$("a.main_menu_link").mouseover(function() {
		var fullId = $(this).attr("id");
		
                id = fullId.replace(/a_/g, "");
		//alert(id);
		$("#drop_down_" + id).show(700);
		
                

	});
	


/*$("a.main_menu_link").mouseout(function() {
		var fullId = $(this).attr("id");
		
                id = fullId.replace(/a_/g, "");//fullId.replace(/a_/g, "");
		//alert(id);
		$("#drop_down_" + id).hide(500);
		$("#menu_image_" + id).fadeOut(200);
                

	});*/



	$("#main_menu > *").hover(
	  function () {}, 
	  function () {
		var fullId = $(this).attr("id");
		//alert(fullId);
                id = fullId.replace(/menu_container_/g, "");
                //id_a = fullId.replace(/a_/g, "");//fullId.replace(/a_/g, "");
      //          alert("div id = "+id);
                //alert("menu id "+id_a);


		$("#drop_down_" + id).hide(500);
		

		MM_swapImgRestore();

        //$(id).hide(500);
		//$(id).fadeOut(200);
	  }
	);

});