$(document).ready(function(){
	// font for top menu
	Cufon.replace('#top-menu li a');
	
	// --- Keep the height 100% for the Content div --- //
	// store the height of the content
	var origheight = $('#content').height();
	// set the initial height (never going smaller than the original height)
	if ($(window).height()-252 > origheight) {
		$('#content').css({'height':(($(window).height())-252)+'px'});
	}
	// set the height on window resize
	$(window).resize(function(){
		if ($(window).height()-252 > origheight) {
		  $('#content').css({'height':(($(window).height())-252)+'px'});
		 }
	});
	
	// Overlay box for images
	$('#col2').ceebox({html:false,video:false,titles:false,boxColor:"#000",padding:0,borderWidth:"0"});
	
	// remove background hover for images
	$('#col2 a > img').parent().addClass("nohover");
	
	// rotating quotes
	$('#quotecontainer .quote').quovolver(500, 8000);
	
	// rollover for locations
    $("#locations .location").hover(function() {
		$(this).find("img").fadeIn('100');
	}, function() {
		$(this).find("img").stop(true, true).fadeOut('100');
	});

});
