$(document).ready(function() {
  $("#ingredients ul li a").hoverIntent(
      function () {
        $(this).children(".cat").animate({bottom:'0px', opacity:100},300);        
        $(this).children(".cat").animate({bottom:'0px', opacity:100},300);        		
      }, 
      function () {
        $(this).children(".cat").animate({bottom:'-33px', opacity:0});
      }
    );

// products image switch
  $("#products ul li a").hoverIntent(
      function () {
        $(".images img").removeClass("active").fadeOut(200); 		  
		$("#products ul li a").removeClass("active");
        $(this).addClass("active");      
		var index = $("#products ul li a").index(this);
        $(".images img").eq(index).addClass("active").fadeIn(500);        		
      }, 
      function () {
      }
    );


//slideshow
   $('#slideshow').s3Slider({
      timeOut: 10000
   });	
   
   var leftHeight = $("#container #left-col").outerHeight();
   $("#container #right-col").height(leftHeight+75);

});