wedding_on = new Image();  wedding_on.src = "images/photos/wedding_hover.png";
wedding_off = new Image();  wedding_off.src = "images/photos/wedding_normal.png";

reception_on = new Image();  reception_on.src = "images/photos/reception_hover.png";
reception_off = new Image();  reception_off.src = "images/photos/reception_normal.png";

theater_on = new Image();  theater_on.src = "images/photos/theater_hover.png";
theater_off = new Image();  theater_off.src = "images/photos/theater_normal.png";

function weddingOver()
{
	document.wedding.src = wedding_on.src;
}
function weddingOut()
{
	document.wedding.src = wedding_off.src;
}

function receptionOver()
{
	document.reception.src = reception_on.src;
}
function receptionOut()
{
	document.reception.src = reception_off.src;
}

function theaterOver()
{
	document.theater.src = theater_on.src;
}
function theaterOut()
{
	document.theater.src = theater_off.src;
}
