	jQuery(function(){
		jQuery('ul.sf-menu').supersubs({ 
           minWidth:    10,   // minimum width of sub-menus in em units 
           maxWidth:    20,   // maximum width of sub-menus in em units 
           extraWidth:  1     // extra width can ensure lines don't sometimes turn over 
                              // due to slight rounding differences and font-family 
       }).superfish();
	});
	
	$(document).ready(function() {
	  $("#product_range a").hover(function(){
	    var imgHref = $(this).attr('href'); 
		$("#product_range a").removeClass("selected");
		$(this).addClass("selected");
		$(".big").stop();
		$(".big").stop().fadeTo(700, 0, function() { // fade image out
		  $('.big').attr('src', imgHref);
		}).fadeTo("slow", 1); // fade the image in
	  }/*,function(){    //for onmouseout not used here
	  }*/);
	});
	
	    $(document).ready(function() { 
        $('ul.sf-menu').superfish(); 
    }); 