$(document).ready(function() {
	
$("#globalWrap").centerScreen();
	
$("#gallery").cycle({
	timeout: 5000,
   	speed: 2000, 
    sync: 1
});
    
$("#gallery").append("<div id=\"loadOverlay\"><\/div>");
	
$("#loadOverlay").css({
	'width':'100%',
	'height':'468px',
	'background': '#E0DED8 url(img/glo/loader.gif) center center no-repeat',
	'position':'absolute',
	'z-index':'101'
});

$(window).bind("load", function() {//The load event will only fire if the entire page or document is fully loaded
		
	$("#loadOverlay").fadeOut(2000, function() {
		$(this).remove();
	});
});

});// END JQUERY