$(document).ready(function() { 

//  Preload images
	
	jQuery.preloadImg = function(){
		for(var i = 0; i<arguments.length; i++){
			jQuery("<img>").attr("src", arguments[i]);
		}
	}

});
