/************************************************************************
 * Load images to cache
 ************************************************************************/
function load_images_to_cache() {
	$(document).find("img").each(function(i) {
		var temp = new Image();
		temp.src = "../"+$(this).attr("src");
   });
}

