<!--
var iImgSufix = 0;
iImgSufix = 0 + Math.round(Math.random()*(5));

if (document.getElementById){
	document.getElementById("cl_photo").src = "images/cl_photo_"+iImgSufix+".jpg";

}
else if (document.all){
	document.all["cl_photo"].src = "images/cl_photo_"+iImgSufix+".jpg";
}
else if (document.layers){
	document.layers["cl_photo"].src = "images/cl_photo_"+iImgSufix+".jpg";
}
//-->
