jQuery(document).ready(function(jQuery) {
	
	if(jQuery.trim(jQuery("#content").text()) == "")
		jQuery("#right").css("display","none");
  
	jQuery("#navigation ul li a").click(function() {
	
		jQuery.post(jQuery(this).attr("href"), "ajax=yes", function(data) {
			showContent(data);
		});		return false;
	});
	
	function showContent(content)
	{
		jQuery("#right").fadeOut(500,function () {
			jQuery("#right").html(content);
			jQuery("#right").fadeIn(500,function(){
				bindContact();
			});
		});
		
		

		
	}

	jQuery("#logo, h1 a").click( function() {
		jQuery("#right").fadeOut(500,function () {
			jQuery("#right").html("");
		});
		return false;
	});

	bindContact();
});

