$(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;
		});
	$('#cont_ext_link').html('<a href="http://www.progettobagno.com" target="_blank"><img src="../imm/btn_progettobagno.gif" alt="Progetto Bagno" width="172" height="80" border="0" /></a>');
	$('#cont_ext_link_en').html('<a href="http://www.progettobagno.com" target="_blank"><img src="../imm/btn_progettobagno_en.gif" alt="Progetto Bagno" width="172" height="80" border="0" /></a>');
});

