
$(function(){
	//$("#topprodmenu_mo").css("background","url(templates/default//images/topprod_mo1.jpg) no-repeat");
	
	$("#topprodmenu_mo1-1").click(function(){
		$.cookie('prodmenu_selected',1);
	});
	$("#topprodmenu_mo2-1").click(function(){
		$.cookie('prodmenu_selected',2);
	});
	$("#topprodmenu_mo3-1").click(function(){
		$.cookie('prodmenu_selected',3);
	});
	
	$("#topprodmenu_mo1-1").mouseenter(function(){
		$(".topprodmenu_in li[id^=prod_topprodmenu_mo]").css("z-index","40");
		$("#prod_topprodmenu_mo1").css("z-index","50");
	});
	
	$("#topprodmenu_mo2-1").mouseenter(function(){
		$(".topprodmenu_in li[id^=prod_topprodmenu_mo]").css("z-index","40");
		$("#prod_topprodmenu_mo2").css("z-index","50");
	});
	
	$("#topprodmenu_mo3-1").mouseenter(function(){
		$(".topprodmenu_in li[id^=prod_topprodmenu_mo]").css("z-index","40");
		$("#prod_topprodmenu_mo3").css("z-index","50");
	});
	
	$("#topprodmenu_mo"+$.cookie('prodmenu_selected')+'-1').trigger('mouseenter');
	
});

