// JavaScript Document
$(function(){   
    $.fn.supersized.options = {   
        startwidth: 1200,   
        startheight: 806,   
        minsize: .5,   
        slideshow: 1,
		transition: 1,
		navigation: 0,
        slide_interval: 10000   
    };   
    $('#supersize').supersized();
	
	 $('#supersize a').click(function(){
		return false;
	});
	 
	 var isContactOpened= new Boolean(false);
	 
	 $('#contactcontainer #contactButtonImg').click(function(){
		if(isContactOpened){
			$('#contactcontainer').animate({ top: "0px" }, 500);
			isContactOpened = false;
		}else{
			$('#contactcontainer').animate({ top: "-125px" }, 500);
			isContactOpened = true;
		}
	});
}); 

$(document).ready(function() {	
	$("a#bookonlinelink").fancybox({
		'overlayShow'	:	true,
		'padding'		:	2,
		'overlayOpacity':	0.8,
		'overlayColor'	:	'#000000',
		'height'		:	550,
		'width'			:	550
	});	
});

