jQuery(document).ready(function() {
    jQuery('#mycarousel').jcarousel();
});


//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(document).ready(function() {
		
			 jQuery("a.group").fancybox({ 'zoomSpeedIn': 300, 'zoomSpeedOut': 300, 'overlayShow': true }); 
		});