 function GetRandomPhoto(){
	var i =  Math.round(Math.random()*18,0);
	if( i > 18){
	   i = 1;   
	}
	document.getElementById("photo").className = "photo"+i;
 }

