$(document).ready(function(){
    
    $(window).resize(function(){
        setBg();
	});
    
    //setBg();

    // BOOKING BUTTONS
    $('#bookingButtons .bookingButton').click(function(){

       var link = $(this).attr('rel');
       window.location = link; return false;

    });
    

});

function setBg(){
	var ratio = 1280/750;
    //var ratio = 800/553;
    //alert(($(window).width() / $(window).height())+ ' - ' +ratio);
	if( $(window).width() / $(window).height() > ratio){
	    $('#bg img').css({height: 'auto', width: '100%'});
	}else{
	    $('#bg img').css({width: 'auto', height: '100%'});
	}
	$('#bg img').css({'display':'block'});
}