$(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=\"/m/img/logo.png\", sizingMethod=\"image"});          
      $("#subCategoriesAccordion h3, h3.toggler").css("background-image", "url(/m/img/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(/m/img/toolTipSf."+ext+")");
  $(".toolTip").prepend("<img class=\"imgTop\" src=\"/m/img/toolTipTop."+ext+"\" alt=\"\" />");
  $(".toolTip").append("<img class=\"imgBottom\" src=\"/m/img/toolTipBottom."+ext+"\" alt=\"\" />");
  $(".toolTipNoBg").css("background-image","none");
  /* **************************************** */  
  
  /* TABLES */
  $("table").attr("cellspacing","1");
  $("table").attr("cellpadding","0");   
  /* **************************************** */  
  
  /* SEARCHBOX E SEARCH RESULTS*/
  
  /*
  $("#searchBoxBrand").change(function() {
    location.href = '/' + $("#searchBoxBrand").val();
  });
  $("#searchBoxField").change(function() {
    location.href = '/search/search?s=' + $("#searchBoxField").val();
  });
  */
  /* SEARCHBOX E SEARCH RESULTS*/
  $(".searchBox .button, #searchFilter #searchButton a").click(function() {
      if($("#searchBoxField").val()!="" | $("#searchBoxBrand").val()!="") {
      location.href = "/search/search?page=" + $("#searchBoxBrand").val() + "&field="+$("#searchBoxField").val();
    }
  }); 
  
  
  /* **************************************** */

  /* NEWS AND EVENTS YEAR SELECT */
  $("#newsYearSelect").change(function() {
    var locations = window.location.toString().split('/');
    location.href = '/' + locations[3] + '/d/' + $("#newsYearSelect").val();
  });
  /* **************************************** */  
  
  /* PAGINAZIONE */
  $(".footPaging").html($(".headPaging").html());
  /* **************************************** */  
    
});
      
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}