$(document).ready( function() { 

  // apply to all png images
  $('.png').ifixpng(); 
  $('.main_front').ifixpng(); 
  $('div#competition').ifixpng(); 
  $('.top').ifixpng(); 
  $('.main').ifixpng(); 
  $('.bottom').ifixpng(); 
  
  // hover effects on small flags
  $('.hover').hoverimage({  
    suffix: "-active"  
  });  

  $("#main-nav ul").css("display", "none");
  $("table:not(.searchresult) tr:first").addClass("first");
  $("#main-nav li").mouseover(function(){
    $(this).children("ul").css("display", "block");
  }).mouseout(function(){
    $(this).children("ul").css("display", "none");
  })

  // open external links in new windows
  $("a[href^='http:']").not("[href*='euph-temp.it.volvo.com']").attr({
    target: "_blank",
    title: "Opens in a new window"
  });
 
  // open external links in new windows
  $("a[href^='http:']").not("[href*='www.superecodriver.com']").attr({
    target: "_blank",
    title: "Opens in a new window"
  });
 
  // opens all links with class="external" in new window
  $('a.external').click( function() {
    window.open(this.href);
    return false;
  }); 
 
  
})