  $(document).ready(function(){
    
    $("li#products-hover a").hover(
      function () {
        $("#product-nav").toggle();
        
      }
    );


  // thumbs  
  
   $("a#business").hover(function () {
   	  $("#thumbs img").addClass("hidden");	
      $("#thumbs img#business-img").removeClass('hidden');
    });
    $("a#private").hover(function () {
   	  $("#thumbs img").addClass("hidden");
      $("#thumbs img#private-img").removeClass('hidden');
    });
    $("a#restoration").hover(function () {
   	  $("#thumbs img").addClass("hidden");
      $("#thumbs img#restoration-img").removeClass('hidden	');
    });

  
 });
