jQuery(document).ready(function(){
	jQuery(".free-shipping A.shipping-link").hover(function(){jQuery(".shipping-detail").slideDown("fast");},function(){});
	jQuery(".free-shipping").hover(function(){},function(){jQuery(".shipping-detail").slideUp("fast");});

        var current =  jQuery(location).attr('href').split("/");
        if(current[4] == 'gift-vouchers'){
            jQuery(".qty").addClass("qty-gift");
            jQuery(".qty-gift").removeClass("qty");
            jQuery(".add-button").addClass("add-button-gift");
            jQuery(".add-button-gift").removeClass("add-button");
        }        
});
