// JavaScript Document
function onMouseOverPhoto(n)
{
	var i;
	i=n;
	document.getElementById("img"+i).src = "homeImg/left_0"+i+".jpg";
}
function onMouseOutPhoto(n)
{
	var i;
	i=n;
	document.getElementById("img"+i).src = "homeImg/left_"+i+".jpg";
}
