// JavaScript Document


jQuery(document).ready(function($)
{


	
	/* AJAX Post Load
	-------------------*/
	var $content = '.posts';
	var $nav_wrap = '.paging';
	var $anchor = '.paging .alignleft a';
	var $text = 'Ladda fler inlÃ¤gg';
	var $next_href = $($anchor).attr('href'); // Get URL for the next set of posts
	

	
	/* Custom functions
	---------------------*/
	
	// Page in
	jQuery('#webpage').fadeIn(function()
	{
		//jQuery('#header').css('opacity', 0.4);
		
		jQuery('#header').animate(
			{top: 0}, {duration: 500, easing: "easeOutCubic", complete: function()
			{
				letsLoadTheContent();
			}
		});
		jQuery('#footer').animate({bottom: -2}, {duration: 500, easing: "easeOutCubic"});
	});
	
	
	
});

// Center content
var shouldWeCenterTheContent = false;
jQuery(window).bind("resize", centerContent);
function centerContent()
{
	if (shouldWeCenterTheContent)
	{ 
		var contentMargin = ((jQuery(window).height()-jQuery('#content').height()+60)/6);
		if (contentMargin < 120) contentMargin = 120;
		jQuery('#content').css('margin-top', contentMargin);
	}
}




