function gE(name){
return document.getElementById(name);
}

function rollover(elm,chng) { 
gE(elm).src="/graphics/"+chng;
}

function handleOut() {
	var aboutus_on="/graphics/about-us-selected.jpg"; 
	var aboutus_off="/graphics/about-us.jpg";

	var photos_on="/graphics/photos-selected.jpg"; 
	var photos_off="/graphics/photos.jpg"; 

	var engagment_on="/graphics/the-engagement-selected.jpg"; 
	var engagement_off="/graphics/the-engagement.jpg"; 

	var wedding_on="/graphics/the-wedding-selected.jpg"; 
	var wedding_off="/graphics/the-wedding.jpg"; 

	var registry_on="/graphics/registry-selected.jpg"; 
	var registry_off="/graphics/registry.jpg";  

	var contact_on="/graphics/contact-us-selected.jpg"; 
	var contact_off="/graphics/contact-us.jpg";

 gE("aboutus").src=aboutus_off;
 gE("photos").src=photos_off;
 gE("engagement").src=engagement_off;
 gE("wedding").src=wedding_off;
 gE("registry").src=registry_off;
 gE("contact").src=contact_off;
}