$(document).ready(function() {
  
  $("#menu_table td").mouseover(function() {
    $(this).css({"background" : "url('gfx/button_on.png') center 0 no-repeat"});
  });
  
   $("#menu_table td").mouseout(function() {
    $(this).css({"background" : "url('gfx/button.gif') center 0 no-repeat"});
  });
  
  $(".navigation_buttons").mouseover(function() {
    $(this).css({"background-position" : "0px 30px"});
  });
  
  $(".navigation_buttons").mouseout(function() {
    $(this).css({"background-position" : "0px 0px"});
  });
  
  $(".menu_button").mouseover(function() {
    $(this).css({"background-position" : "0px 45px"});
  });
  
  $(".menu_button").mouseout(function() {
    $(this).css({"background-position" : "0px 0px"});
  });
  
   // FUNZIONAMENTO DEI 3 BOTTONI DETTAGLI PRODOTTO
  $(".product_details").mouseover(function() {
    $(this).css({"background-position" : "0px 36px"});
    var id = $(this).attr("id");
    $("#"+id+"_name").fadeIn();
  });
  $(".product_details").mouseout(function() {
    $(this).css({"background-position" : "0px 0px"});
    var id = $(this).attr("id");
    $("#"+id+"_name").fadeOut();
  });
  
  $("#product_accessori").click(function() {
    $("#product_accessori a").colorbox({width: "800", height: "600", iframe: true});
  });
  $("#product_sample_audio").click(function() {
    $("#product_sample_audio a").colorbox({width: "800", height: "600", iframe: true});
  });
  $("#product_video").click(function() {
    $("#product_video a").colorbox({width: "600", height: "400", iframe: true});
  });
  
   $("#distlink").live('click', function() {
     $(this).colorbox({width: "1050", height: "90%", iframe: true});
   });
  
  $("#formSubmit").mouseover(function() {
    $(this).css({"background-position" : "0px 45px"});
  });
  $("#formSubmit").mouseout(function() {
    $(this).css({"background-position" : "0px 0px"});
  });
  
});
