window.onload = function(){
	var links = [ 'home', 'brochure', 'residentInfo', 'gallery', 'statementOfPurpose', 'contactUs' ],
		i = 0,
		link,
		
		IMG_PATH = '/i/links/';
		
	while( ( link = links[ i++ ] ) ){
		
		(function( id ){
			
			var linkElem = document.getElementById( id ),
			overImg = IMG_PATH + id + '_over.gif',
			outImg = IMG_PATH + id + '.gif';

			linkElem.onmouseover = function(){ this.src = overImg };
			linkElem.onmouseout = function(){ this.src = outImg }
			
		}( link ));
		
	}
};
