
//Back to top slider

jQuery(document).ready(function() {
   
    jQuery('a[href=#totop]').click(function(){
        jQuery('html, body').animate({scrollTop:0}, 600);
        return false;
    });


// FancyBox jQuery
	
			jQuery("#delivery_options_link").fancybox({
				'frameWidth'			:	800,
				'frameHeight'			:	600,
				'hideOnContentClick' : false
			});
	

		
jQuery("a.group").fancybox({'zoomSpeedIn': 300, 'zoomSpeedOut': 300, 'overlayShow': true}); 


// Slider Homepage
	jQuery("#slider").easySlider({
		auto: true,
		continuous: true,
		controlsShow: true
});

//link to Cart
jQuery('div..cart-top').click(function(){
	location.replace('/checkout/cart/');
})

	
});
