$(document).ready(function() {
	$("#rts").each(function() {
		m = 30 + $("#strumentiBft ul").height();
		$(this).css("margin-top",m+"px");	
	});


	$(".prodCategoriesList2 li").hover(function() {
		$(".prodCategoriesList2 li").css("position","static");
		$(this).css("position","relative");
		$(this).find("img").show();
	}, function() {		
		$(this).find("img").hide();
		$(this).css("position","static");
	});
});
