// DOM ready 
$(document).ready(function() {
	$('body').prepend('<div id="page-loader"></div>');
	$('#wrapper').css('visibility', 'hidden');
	// page is fully loaded including graphics
	$(window).load(function () {
		$('#page-loader').remove();
		$('#wrapper').css('visibility', 'visible');
	});
});



/*
// hide page while loading header images
$('#wrapper').css('visibility', 'hidden');

// preload images
var indexLast = $('#kool-headergallery img').length - 1;
$('#kool-headergallery img').each(function(index) {
	var img = new Image();
    $(img).load(function () {
		// show content when all images are loaded
        if (indexLast == index) {
        	$('#wrapper').css('visibility', 'visible');
        	
        	/*
        	// remove preloader
			$("#kool-contentpane .preloader").remove();
			// fade in content
        	$('#kool-contentpane').children(':first-child').fadeIn();
        	// resize content
			$.koolContentPaneResizeContent();
			
        }
    }).error(function () {
        // notify the user that the image could not be loaded
    }).attr('src', $(this).attr('src'));
});
*/
