$(document).ready(function() {	
	/* HACKS IE */
	if($.browser.msie) {		
		$("#footer").css("margin-top","30px");
		$("#homeMidContents").css("margin-top","-30px");
		$(".heading").height(30);
		
		if($.browser.version=="6.0" | $.browser.version=="5.5") {
			/* PNG FIX */
			$("#logo").css({"cursor" : "pointer", "background-repeat" : "no-repeat", "background-image" : "none", "filter" : " progid:DXImageTransform.Microsoft.AlphaImageLoader (src=\"../../../images/logo.png\", sizingMethod=\"image"});					
			$("#subCategoriesAccordion h3, h3.toggler").css("background-image", "url(../../../images/ar3.gif)");							
		}					
	}	
	/* **************************************** */	
	
	/* HACKS SAFARI */
	if($.browser.safari) {
		$("#headerMainMenu ul").find("#mmNewseventi").css("width","auto");			
		$("#headerMainMenu.en ul li").css("margin-right","26px");	
		$("#mmNewseventi").css("margin-right","0px");				
		
		$(".element table").after("&nbsp;");						
		$(".heading").height(29);			
	}
	/* **************************************** */	
		
		
	/* MENU */
	$("#headerMainMenu ul").find("li").hover(function() {
		$(this).addClass("currentHover");
	}, function() {
		$(this).removeClass("currentHover");
	});			
	
	$("#headerMainMenu ul").find("li").click(function() {
		link = $(this).find("a").attr("href");
		document.location.href=link;
	});
	/* **************************************** */	
	
	/* ACCORDIONS */
	$("#subCategoriesAccordion h3").hover(function() {
		$(this).addClass("currentHover");
	}, function() {
		$(this).removeClass("currentHover");
	});
	
	$("#subCategoriesAccordion h3").click(function() {
		$("#subCategoriesAccordion h3").removeClass("currentHoverStable");
		$(this).addClass("currentHoverStable");		
	});	
	/* **************************************** */	
	
	/* TOOLTIPS */
	ext = "png";	
	if($.browser.msie && ($.browser.version=="6.0" | $.browser.version=="5.5")) ext="gif";
	$(".toolTip").css("background-image","url(../../../images/toolTipSf."+ext+")");
	$(".toolTip").prepend("<img class=\"imgTop\" src=\"../../../images/toolTipTop."+ext+"\" alt=\"\" />");
	$(".toolTip").append("<img class=\"imgBottom\" src=\"../../../images/toolTipBottom."+ext+"\" alt=\"\" />");
	/* **************************************** */	
	
	/* TABLES */
	$("table").attr("cellspacing","1");
	$("table").attr("cellpadding","0");		
	/* **************************************** */	
	
	/* SEARCHBOX E SEARCH RESULTS*/
	$(".searchBox .button, #searchFilter #searchButton a").click(function() {		
		if($("#searchBoxApp").val()!="" | $("#searchBoxBrand").val()!="") {
			location.href = "../search/brand_"+$("#searchBoxBrand").val()+"_app_"+$("#searchBoxApp").val()+".jsp";
		}
	});
	/* **************************************** */	
	
	/* PAGINAZIONE */
	$(".footPaging").html($(".headPaging").html());
	/* **************************************** */	
		
});
			
function MM_openBrWindow(theURL,winName,features) { //v2.0
	window.open(theURL,winName,features);
}