$(document).ready(function(){				
				
				// PRODUCT GALLERY
				$("#product-gallery-slides")
					.cycle({
						next:   '#gallery-next', 
						prev:   '#gallery-prev',
						pause:   1,
						timeout: 5000,
						pager:  '#product-gallery-nav' 	
					});
					$('#gallery-pause').toggle(						
						function () {
						$('#product-gallery-slides').cycle('pause');
					  },
					  function () {
						$('#product-gallery-slides').cycle('resume');
					  }
					);
				
				// LEFT TABS
				$(".tab_content").hide();
				$("ul.tabs_left li:first").addClass("active").show();
				$(".tab_content:first").show();
				$("ul.tabs_left li").click(function() {
				$("ul.tabs_left li").removeClass("active");
				$(this).addClass("active");
				$(".tab_content").hide();
				var activeTab = $(this).find("a").attr("href");
				$(activeTab).fadeIn();
				return false;
				});
			
				
				// TOGGLERS			
				$(".toggle_container").hide();
    
				$("h5.toggler").click(function(){
				 $(this).next(".toggle_container").slideToggle("slow");
				 if ($(this).hasClass('toggler_active')) {
				  $(this).removeClass("toggler_active");
				 }
				 else {
				  $(this).addClass("toggler_active"); 
				 }
				});
				
				$("h5.h5_open_onload").addClass("toggler_active"); 
				$(".open_onload").show();
							
				
				
					
				$('#bottomSliderMask, #newslets2 UL:first-child').cycle({ 
					fx: 'fade', 
					speed: 4000
				});
				
				$('#newslets2 UL:nth-child(2)').cycle({ 
					fx: 'fade', 
					speed: 4900
				});
				
				$('#newslets2 UL:nth-child(3)').cycle({ 
					fx: 'fade', 
					speed: 5600
				});
				
				$('#newslets2 UL:nth-child(4)').cycle({ 
					fx: 'fade', 
					speed: 6400
				});
				
				$('#newsItems').cycle({ 
				    cleartypeNoBg: 'false',
				    fx: 'fade', 
				    speed: 100, 
				    timeout: 3000,
				    next: '#rightArrow', 
				    prev: '#leftArrow', 
					containerResize: false,
				    pause: 1 
				});
				$('#rightbox UL').cycle({ 
				    fx: 'fade', 
				    speed: 300, 
				    timeout: 7000,
				    next: '#rightArrow', 
				    prev: '#leftArrow', 
				    pause: 1 
				});
				$('#centerbox UL').cycle({ 
				    fx: 'fade', 
				    speed: 300, 
				    timeout: 6000,
				    next: '#rightArrow', 
				    prev: '#leftArrow', 
				    pause: 1 
				});
				$("a.iframe").fancybox({
					'hideOnContentClick '	:	false,
					'type'				: 'iframe',
					'titleShow':false,
					'width'				: 680,
					'height'			: 650
				});
				$("#product-gallery-slides a").fancybox({
					'overlayOpacity': 0.85,
					'overlayColor': '#000',	
					'onStart': function() { $("#slideshow").cycle("pause"); },
					'onClosed': function() { $("#slideshow").cycle("resume"); }	
				});
		});