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

// Slider Homepage

	jQuery("#slider").easySlider({
		auto: true,
		continuous: true,
		numeric: true
	});

        jQuery(".layeredNavShowMore").click(function (){
           jQuery(this).parent().children("ol").css("height","auto");
           jQuery(this).parent().children(".layeredNavShowLess").css("display","block");
           jQuery(this).css("display","none");
        });

        jQuery(".layeredNavShowLess").click(function (){
           jQuery(this).parent().children("ol").css("height","0");
           jQuery(this).parent().children(".layeredNavShowMore").css("display","block");
           jQuery(this).css("display","none");
        });

});
