$(document).ready(function() {

	if ($(".carousel").length > 0) {
	
	var pause_duration = $(".carousel").attr("data-pause");
	

	$(".carousel").carouFredSel({
	    circular: true,
	    infinite: true,
	    scroll: {
	    	items: 1,
	    	duration: 750,
	    	fx: "scroll",
	    	easing: 'easeOutCubic'    
	    },
	    auto: {
	    	play: true,
	    	pauseDuration: parseInt(pause_duration)   
	    },
	    prev : {   
	        button  : ".prev-promo-btn",
	        key     : "left"
	    },
	    next : {
	        button  : ".next-promo-btn",
	        key     : "right"
	    }
	});
	}
	
	//$(".datepicker").datepicker();

	$("header nav > a").click(function() {
		$("header nav a.active").removeClass("active");
		$(this).addClass("active");		
		
	});
	
	$("a.largeBtn").click(function() {
	
		$(this).addClass("active");
	
	});

	$("a.smallBtn").click(function() {
	
		$(this).addClass("active");
	
	});


	$("a.iframe").click(function() {
	
		
		$.fancybox({"type": "iframe",
					"href": $(this).attr("href"),
					"width": 1000,
					"height": 600,
					"scrolling": "yes" });
		
		return false;	
	
	});

	


	$("a.fancy").fancybox();

});



