jQuery(document).ready(function(){	
	//Back to top slider
    jQuery('a[href=#totop]').click(function(){
        jQuery('html, body').animate({scrollTop:0}, 600);
        return false;
    });
	// Product Slider
    jQuery('#featured-products').jcarousel();
	jQuery('#featured-products2').jcarousel();

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

	// Slider Homepage
	jQuery("#slider").easySlider({
		auto: true,
		continuous: true,
		numeric: true,
		onBeforeSeek: function() {
			this.getItems().fadeTo(300, 0.2);
		},
		
		// when seek ends resume items to full transparency
		onSeek: function() {
			this.getItems().fadeTo(300, 1);
		} 
	});
});

function toggleMenu(){
	// do nothing
}
