// Parameter festlegen

oldID=1;


// Seitenfunktionen

function activatePhoto(id)
{
	if(id==oldID) return;
	
	document.getElementById(oldID).style.margin="1px";
	document.getElementById(oldID).style.border="1px solid #B0B0B0";
	
	document.getElementById(id).style.margin="0";
	document.getElementById(id).style.border="2px solid #C6495A";
	
	document.getElementById("photos").style.background="url(images/"+id+".jpg)";

	oldID=id;
}
