	hs.addSlideshow({
		// slideshowGroup: 'group1',
		interval: 5000,
		repeat: false,
		useControls: true,
		fixedControls: true,
		overlayOptions: {
			opacity: .8,
			position: 'bottom center',
			hideOnMouseOut: false
		}
	});

	var fckGalleryOptions = { 
	 	slideshowGroup: 'fckgallery',
	 	wrapperClassName: 'white',
		// outlineType: 'glossy-dark', 
	 	dimmingOpacity: 0.6,
		align: 'center',
		transitions: ['expand', 'crossfade'], 
		fadeInOut: true,
		wrapperClassName: 'borderless floating-caption',
		marginLeft: 100,
		marginBottom: 80,
		
		overlayOptions: {
			opacity: .6, 
			position: 'bottom center',
			hideOnMouseOut: false
		} 
	};
	
	var pageGalleryOptions = {
		wrapperClassName: 'white',
		// outlineType: 'glossy-dark', 
	 	dimmingOpacity: 0.6,
		align: 'center',
		transitions: ['expand'], 
		fadeInOut: true,
		wrapperClassName: 'borderless floating-caption',
		marginLeft: 100,
		marginBottom: 80,
		
		overlayOptions: {
			opacity: .6, 
			position: 'bottom center',
			hideOnMouseOut: false
		} 
	}
	
	function slideSwitch() {
			if ($('#top-slideshow IMG').length > 1){
			var $active = $('#top-slideshow IMG.active');

			if ( $active.length == 0 ) $active = $('#top-slideshow IMG:last');

			var $next =  $active.next().length ? $active.next()
				: $('#top-slideshow IMG:first');

			$active.addClass('last-active');

			$next.css({opacity: 0.0})
				.addClass('active')
				.animate({opacity: 1.0}, 1000, function() {
					$active.removeClass('active last-active');
				});
			}
		}
		
	$(document).ready(function(){
		   setInterval( "slideSwitch()", 5000 );
		   		
		$("#product-color-nav img").hide();
		$("#product-color-nav li").bind('mouseover',function() {
															 $(this).css('width',14);
															 $('img',this).show();
															 });
		$("#product-color-nav li").bind('mouseout',function() {
															 $(this).css('width',9);
															 $('img',this).hide();
															 });
		   
	});
