$(document).ready(function(){
	 /*$("#foto").click(function(event){
	  	event.preventDefault();
	  	$(this).fadeOut(2000,loaded); 
	   
	 });*/
	 setTimeout(start,3000);
 });
 function start(){
	  	//event.preventDefault();
	  	$("#foto").fadeOut(2000,loaded); 
	   
 }
 function loaded() {
 	//document.getElementById("container").style.backgroundColor = "#cbcab2";
 	//setTimeout(redirect, seconds);
	$("#cell").append('<img id="jan" src="janreyniers2.png"/>');
	$("#jan").fadeIn(2000, redirect); 
 }
 function redirect() {
  setTimeout(goToGallery,1000);
}
 function goToGallery() {
  window.location.href="imagevue.php#/content/portfolio/Eastern%20Fields/1.jpg/";
}

