<!-- JQuery Header -->

jQuery(document).ready(function() {
	jQuery('.pic-cycle').cycle({
		fx: 'fade',
		speed:  4500  
	});
});

<!-- JQuery Carousel -->

jQuery(function() {
    jQuery(".carousel-gallery").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev", 
		circular:false,
		visible: 3,
		start: 0
    });
});



<!-- jQuery sub-product gallery -->
jQuery(document).ready(function() {
    
    // init and stop the inner slideshows
    
    var slideshow = jQuery('.inner-slideshow').cycle({
        fx: 'scrollHorz',
        speed: 300,
        timeout: 0,
        prev: '#prev',
        next: '#next'
    });
    
});

<!-- Tab Switching -->
jQuery(function () {
	var tabContainers = jQuery('div#tab-switching > div');
	tabContainers.hide().filter(':first').show();
							
		jQuery('div#tab-switching ul.tabNavigation a').click(function () {
			tabContainers.hide();
			tabContainers.filter(this.hash).show();
				jQuery('div#tab-switching ul.tabNavigation a').removeClass('selected');
				jQuery(this).addClass('selected');
			return false;
		}).filter(':first').click();
});


