function preload_redirect(image,url){
	var img = new Image();
	$(img).load(function(){
		$(this).hide();
		location.href=url;
	}).attr('src', image);
}
