$(function(){
	$('a.new').click(function(){
		window.open($(this).attr('href'));
		return false;
	});
	$('#quickbooking').attr("target", "_blank");
	$(".datepicker").datepicker({
		showOn: 'both',
		buttonImage: '/images/layout/calendar.gif',
		buttonImageOnly: true
	});
	$('a.fancybox').fancybox({
		zoomSpeedIn: 500,
		zoomSpeedOut: 500,
		width: 640,
		height: 480,
		transitionIn	: 'elastic',
		transitionOut	: 'elastic',
		onStart: function(){
			$('#anim2').hide();		
		},
		onClosed: function(){
			$('#anim2').show();
		}
	});
	if (swfobject.hasFlashPlayerVersion("9.0.18")) {
		swfobject.embedSWF("/images/layout/home-animation.swf", "anim", "650", "200", "9.0.18", "/images/expressInstall.swf", null, null, null, function(){$('#anim').addClass('loaded');});
		swfobject.embedSWF("/images/layout/reservation-animation.swf", "anim2", "650", "200", "9.0.18", "/images/expressInstall.swf", null, null, null, function(){$('#anim').addClass('loaded');});
	}
});