function calloutNavBehavior ()
{
	$('#calloutNav a:not(.down)')
	.unbind('mouseenter')
	.mouseenter(function(){
		$(this).addClass('over');
	})
	.unbind('mouseleave')
	.mouseleave(function(){
		$(this).removeClass('over');
	})
	.unbind('click')
	.click(function(){
		$('#calloutNav a:not(this)').removeClass('down');

		$(this)
		.addClass('down')
		.click(function(){
			return false;
		});
		var block = $(this).attr('href');
		
		$('#callout .block').hide();
		$(block).show();
		
		calloutNavBehavior();
		
		return false;
	});
}

$(document).ready(function(){
	$('.down')
	.click(function(){
		return false;
	});
	calloutNavBehavior();
});
