$(function () {
		$('#mural').hide();//hide the main container
	});
	$(document).ready(function(){//The load event will only fire if the entire page or document is fully loaded
		var int = setInterval("alphaLoader(i)",2000);//2000 is the fade in speed in milliseconds
	});

function alphaLoader() {
		$('#mural').eq(0).fadeIn(2000);//fades in the main container
}
