// JavaScript Document

$(document).ready(function() {
 	 
	/* Load Event fires when the whole page is loaded, included all images */
	$(window).load(function() {
					
		//FADE OUT THE LOADING MASK AND FADE IN PAGE
		$("#mask").fadeOut();
		$("#page_container").fadeIn();
	 
		});
});

