$(document).ready(function() {

    $("#stretch-bg").ezBgResize();

    $(".sub-menu li").hover(
      function() {
          $(this).addClass("hover");
      },
      function() {
          $(this).removeClass("hover");
      }
    );

    $(".product-list a, .recipe-list a").bigTarget({
      hoverClass: 'hover', // CSS class applied to the click zone onHover
      clickZone: 'li:eq(0)' // jQuery parent selector
    });
    
}); 

$(window).bind("resize", function() {
    $("#stretch-bg").ezBgResize();
});
