$(function($) {

	$('div#intro').onImagesLoaded(function(_this){

		$('#loading').css('display', 'none');
		
		$('#intro').fadeIn(5000, function () {
		
			$(this).fadeTo(2000, 0.15, function () {
				location.href = '?page=GALLERY';
			});
			
		});
	
	});
	
});

