
textlink = new Array(100);

textlink[0] = 'frank lloyd wright';
textlink[1] = 'wasmuth drawings';
textlink[2] = 'prairie style';
textlink[3] = 'prairie concept';
textlink[4] = 'wright in japan';
textlink[5] = 'wright in ohio';
textlink[6] = 'westcott foundation';
textlink[7] = 'letter from chairman';
textlink[8] = 'board members';
textlink[9] = 'staff members';
textlink[10] = 'job openings';
textlink[11] = 'internships';
textlink[12] = 'contact us';
textlink[13] = 'press releases';
textlink[14] = 'about westcott';
textlink[15] = 'family';
textlink[16] = 'restoration';
textlink[17] = 'tour description';
textlink[18] = 'tour schedule and fees';
textlink[19] = 'tour reservation';
textlink[20] = 'special needs access';
textlink[21] = 'hotels/travel offers';
textlink[22] = 'directions';
textlink[23] = 'current events';
textlink[24] = 'education programs';
textlink[25] = 'facility rental';
textlink[26] = 'archives';
textlink[27] = 'store information';
textlink[28] = 'gift certificate';
textlink[29] = 'sign up for mailing';
textlink[30] = 'get involved';
textlink[31] = 'volunteer';
textlink[32] = 'join';
textlink[33] = 'donate';
textlink[34] = '35';


var titlediv = document.getElementById("linkTitle");

var alinks = document.getElementById('motionImages').getElementsByTagName("a");
for (var i=0; i<alinks.length; i++) {		

	alinks[i].onmouseover=function(e) {			
		document.getElementById("linkTitle").innerHTML = textlink[this.id.substr(4)-1];
		this.firstChild.width=50;
		this.firstChild.height=50;
		
	}	
	
	alinks[i].onmouseout=function() {
		document.getElementById("linkTitle").innerHTML = '&nbsp;';
		this.firstChild.width=36;
		this.firstChild.height=36;
	}
}

