$(document).ready(function(){
	// hide the boxes first
	$('.callout-box').hide();
	
	// show the boxes on hover, hide the others
	$('.tab-reservations').mouseover(function(){
		$('#directions-box').slideUp("slow");
		$('#news-box').slideUp("slow");
		$('#reservations-box').slideDown('slow');
	});
	
	$('.tab-directions').mouseover(function(){
		$('#news-box').slideUp("slow");
		$('#reservations-box').slideUp("slow");
		$('#directions-box').slideDown('slow');
	});
	
	$('.tab-news').mouseover(function(){
		$('#reservations-box').slideUp("slow");
		$('#directions-box').slideUp("slow");
		$('#news-box').slideDown('slow');
	});
	
	// hide the boxes when we leave the main content area
	$('#util-nav').mouseleave(function(){
		$('.callout-box').slideUp('slow');
	});
});