$(document).ready(function() 
{  	
	$('#infoBox').hide();	
	
	//make call when link is clicked to get content
	$('#navigation a').click(
		function() { getContent(this.id) }
	);  
	           
}); 
	
	function showContentBox (action)
	{
		$('#infoBox').html("<iframe src ='includes/" + action + ".html' allowTransparency='yes' scrolling='auto' frameborder='0'><p>Your browser does not support iframes.</p></iframe>"); 
	}
	
	function getContent (action) 
	{	
		var className = $('#checker').attr('class');
		
		//only do animations when on home page
		if(className == 'home')
		{			
			$('#infoBox').slideDown('0', function () { $('#topBar').show(); showContentBox(action) } );
		}
	
		else
		{
			showContentBox(action);
		}

	}

	function fbFakeout(url, type)
	{
		$("#sample").fancybox(
		{
			'width'				: '70%',
			'height'			: '50%',
			'transitionIn'		: 'fade',
			'transitionOut'		: 'elastic',
			'type'				: type,
			'href'				: url,
			'autoScale'			: true,
			'onStart'			: function(){$("body").css({'overflow':'hidden'});},
			'onClosed'			: function(){$("body").css({"overflow":"visible"});}
		});
		
		$("a#sample").trigger("click");
	}
