//javascript document

function mouseOver(imageName)
{
document.getElementById("weddings").src="grfx/" +imageName;
}
function mouseOut()
{
document.getElementById("weddings").src="grfx/banner.jpg";
}