jQuery(document).ready(function(){  
jQuery('.photogalbutton a').click(function() {
jQuery(".firstimage img").click();});
});  

jQuery.fn.contentfade = (function(content,location,speed){ //create function
location ="#absolutetext";
speed='slow';
jQuery(this).click(function () {
jQuery("#menu li").stop().animate({height:'43px'},{queue:false, duration:400, easing: 'linear'})      ;  
jQuery(location).fadeOut(speed, function() {
jQuery(location).html(content).fadeIn(speed)});

if(jQuery(this).hasClass('homebutton')) 
{jQuery('#booking').delay(600).fadeIn(600);}
else 
{jQuery('#booking').fadeOut(600);}

if(jQuery(this).hasClass('eventsbutton')) 
{jQuery('#eventspage').delay(600).fadeIn(600);}
else 
{jQuery('#eventspage').fadeOut(600);}

if(jQuery(this).hasClass('roomsbutton')) 
{jQuery('#floorplanaspenclick,#floorplanponderosaclick,#floorplanlodgepoleclick').fadeIn(1);}
else 
{jQuery('#floorplanaspenclick,#floorplanponderosaclick,#floorplanlodgepoleclick').fadeOut(1);}

});
});
