// JavaScript Document
$(document).ready(function(){
	
	
	$("#slidebtn").click(function(){
		$("#slide-panel").slideToggle("slow");
		$("a#slidebtn").toggleClass('up');
		$(this).text($(this).text() == 'Show Everything' ? 'Hide Everything' : 'Show Everything');
		return false;
	});
	$("a#slidebtn").text('Show Everything');
	$('#adrotate').cycle({ 
		speed:  1000, 
		timeout: 8000,
		random: 1
	}); 
	 $('#couponrotate').cycle({ 
		speed:  1000, 
		next:   '#couponnext', 
   		prev:   '#couponprev' 
	});
	
	
	$("a.video").fancybox({
			'padding'		: 0,
			'transitionIn'	:	'elastic',
			'transitionOut'	:	'elastic',
			'speedIn'		:	600, 
			'speedOut'		:	200,
			'autoScale'		: false,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'title'			: this.title,
			'width'			: 700,
			'height'		: 400,
			'type'			: 'iframe',
			'swf'			: {
		   	 'wmode'		: 'transparent',
			'allowfullscreen'	: 'true'}
	});		


 $("#carousel").featureCarousel({
         carouselSpeed: 700,
		 autoPlay: 4000,
		 trackerSummation: false,
		 trackerIndividual: false
        });
});
