function changePetPhoto(id)
{
	document.getElementById('petPhoto').src = pets[id];
	document.getElementById('petPhotoSrc').src = pets[id];
}

function mOverMenu(elmnt)
{
	elmnt.style.backgroundImage = 'url(images/menu.jpg)';
	elmnt.style.color = '#eee';
	elmnt.style.cursor = 'pointer';
	elmnt.style.borderLeft = '7px solid #eee';
	elmnt.style.borderTop = '1px solid #eee';
	elmnt.style.borderBottom = '1px solid #eee';
	elmnt.style.borderRight = '1px solid #eee';
}

function mOutMenu(elmnt)
{
	elmnt.style.background = '#eee';
	elmnt.style.color = '#559';
	elmnt.style.borderLeft = '7px solid #559';
	elmnt.style.borderTop = '1px solid #559';
	elmnt.style.borderBottom = '1px solid #559';
	elmnt.style.borderRight = '1px solid #559';
}