//image precache
$(document).ready(function () {
	$("#slideshow img").each(function () {
	 var image= new Image(); image.src=this.src;
	});
}