$(function () {

		$('#container').hide();//hide the main container

		$('#footer').hide();//hide the footer

	});



	$(document).ready(function(){//The load event will only fire if the entire page or document is fully loaded

		var int = setInterval("alphaLoader(i)",300);//300 is the fade in speed in milliseconds

	});



function alphaLoader() {

		$('#container').eq(0).fadeIn(300);//fades in the main container

		$('#footer').eq(0).fadeIn(300);//fades in the footer

}
