	$(window).load(function(){
				$('#etalage').etalage({
					thumb_image_width: 300,
					thumb_image_height: 400,
					source_image_width: 900,
					source_image_height: 1200,
					small_thumbs: 5,
					smallthumb_inactive_opacity: 0.7,
					show_icon: false,
					autoplay: false,
					keyboard: false
				});
				
			$(".press-lightbox").fancybox({
			'titleShow'     : false,
			'autoScale'     	: true
			});
			
			$('.single-product ').hover(function() {
   				var hoverBtnIdPrefix = 'hover';
    			var hoverBtnNum = $(this).attr('id').substring((hoverBtnIdPrefix.length));
    			$('.single-product:not(#hover' + hoverBtnNum + ')').stop().animate({
        			"opacity": .9
    			}), 800;
			}, function() {
    			$('.single-product').stop().animate({
        			"opacity": 1
    			}), 800;
			});
			

			$(".one-third-column:last, .delivery-clone > p:last").addClass("end");
			$("#menu-primary li:last").addClass("menu-primaryend");
			$("ul.confirm li:last, ul.errors li:last").addClass("noborder");
       		$("tbody tr:first-child").addClass("noborder");
			
			
			$("a.tab").click(function(e) {
    e.preventDefault();
    $("div#lookafterme").html($('div.lookafterme').html());   
    $("div#product-size").html($('div.size').html());   
    $("div#delivery_and_returns").html($('div.delivery').html());   
});

	});
		
		
		
