﻿$(document).ready(function(){
	m_prod_catalog();

	

});

function m_prod_catalog(){
	var self = "";
	var self_top = "";
	var pos_nav_offsetTop = "";
	var ser=document.getElementById("headsearch");
	$("#m-prod-catalog li").hover(
		function(){
			self = $(this);
			
			self.addClass("hover").children("div").show();
			ser.className="search2";
		},
		function(){
			self = $(this);
			self.children("div").hide();
			self.removeClass("hover");
			ser.className="search";
		}
	);
};

