$(document).ready(function() {
	$("#outgoing-bar-wrapper").outgoingBar({
		containerWidth: 1008,
		siteName: 'Summer Break',
		dropShadowOpacity: 0.4
	});

	$('.slider').nivoSlider({
		effect: 'fade',
		pauseTime: 5000
	});

	var currentyear = new Date().getFullYear();
	var target_date = new cdtime("countdown", "June 10, "+currentyear+" 12:00:00");
	target_date.displaycountdown("days", formatresults);   

	$('.tabs').tabs();

	$('#caravan-video-lb').dialog({
		autoOpen: false,
		show: "blind",
		hide: "blind",
		modal: true,
		width: 716,
		zIndex: 10000,
		resizable: false,
		draggable: false
	});
						
	$('#btn-caravanvideo').click(function() {
		$('#caravan-video-lb').dialog('open');
		return false;
	});

	var image_width = 600;
	/* remember to change this if special offer poster changes */
	var image_height = 851;
	var viewport_height = $(window).height();

	$('#offer-poster').dialog({
		autoOpen: false,
		show: "blind",
		hide: "blind",
		modal: true,
		width: 630,
		zIndex: 10000,
		resizable: false,
		draggable: false
	});
						
	$('#btn-specialoffers').click(function() {
		$('#offer-poster').dialog('open');
		return false;
	});

	// resize image if it doesn't fit in browser viewport
	if (viewport_height - 100 < image_height)
	{
		$('#offer-poster-image').height(viewport_height - 100);
	}
			
	$('footer.fluid-wrapper').addClass('fluid');
	var doc_height = $(document).height();
	var footer_height = $('.footer.wrapper').outerHeight();
			
	$('footer.wrapper').waypoint(function(event, direction) {
		$('footer.fluid-wrapper').toggleClass('fluid');
	}, {
		offset: '100%'
	});
});
