window.onload = function ()
{
	
}

$(document).ready(function()
{

	// setup the footer and content
	$('#content').css( {marginTop: $(window).height()} );
	// $('#archive').hide().css({ height: 0, opacity: 0 });
	$('footer').css({ bottom: -1 * $('footer').height()});
	$('footer').animate({ opacity: 1.0 },300);
	
	// animate in the elements	
	if(!$.cookie('beenHere'))
	{	
		slideUpmenu();
		$.cookie('beenHere', true, { expires: 1 });
	}
	else
	{
		slideUpmenu();
	}
	
	
	
});

function slideUpmenu () {
		$('footer').show().animate (
		{ 
			bottom: "0"
		}, 300, "swing", function()
						{
							// alert ($('#content').height());
							// alert ( $('#meat').height() +$('#tagline').height() +  $('footer').height() +$('title').height()+ 100);
							$('#content').show().animate(
							{
								marginTop:  $(window).height() - $('footer').height() - $('#title').height(),
								height:  $('#meat').height() +$('#tagline').height() +  $('footer').height() +$('title').height()+ 200
							}, 500 );
						}
		);	
}