$(document).ready(function(){
	$('div.elemCat').hide();
	$('div.elemCat:eq(0)').show();
	$("ul.menuProd li:last-child").css("border-bottom","1px solid #999999");
	$("ul.menuProd li a").hover(function(){
			$("ul.menuProd li").removeClass("selected");
			$(this).parent().addClass("selected");
			$('div.elemCat').hide();
			idx = $(this).attr('rel');
			$('div.elem_'+idx).show();
			return true;
		},
		function(){
			//$('div.elemCat').hide();
			return true;
		});
});
