$(document).ready(function() {
	
	// Home Page Promo Box Effects
	$('.box').hover(function () {
			$('.box-ribbon', this).animate({'bottom': '-5px'}, 100);
		}, function () {
			$('.box-ribbon', this).animate({'bottom': '-10px'}, 100);
	});
	
	// Reservation Ribbon Effects
	$('#reservation').hover(function () {
			$(this).animate({'top': '-5px'}, 100);
		}, function () {
			$(this).animate({'top': '-10px'}, 100);
	});
	
	// Promo Boxes
	if (document.getElementById('boxes')) {
		$('#carousel').jcarousel({
	        wrap: 'circular',
	        scroll: 1
	    });
	}
	
	// Lightbox
	$(".iframe").fancybox({
		'hideOnContentClick': false,
		'titleShow': false,
		'height': 600,
		'width': 640
	});
	
	$("#reservation").fancybox({
		'hideOnContentClick': false,
		'titleShow': false,
		'type': 'iframe',
		'height': 480,
		'width': 800
	});
	
	$(".fancybox").fancybox({
		'hideOnContentClick': true,
		'titleShow': false
	});
	
});
