google.load("jquery","1.3.2");

google.setOnLoadCallback(function(){
	
	$.ajaxSetup({async: false});
	$.getScript("inc/jquery.colorbox.js");
	$.ajaxSetup({async: true});
	
	$("#topNav ul a").hover(function(){
	
		$(this).stop().animate({ height: "100px" });	
								  
	},
	function(){
		
		$(this).stop().animate({ height: "33px" });
		
	});
	
	$("#topPhoto a").colorbox();
	$(".popup").colorbox();
	
	$("#footer").append("<div id=\"resRanger\"><a href=\"concierge.html\"><img src=\"images/resranger.png\"></a></div>").append("<div class=\"blueFiller\"></div>");
	
	$(".currentPage").stop().animate({ height: "100px" });
	
});