jQuery.preload_images = function(){

	for(i = 0; i < arguments.length; i++){
		
		$("<img>").attr("src", arguments[i]);
		
	}

}

