function image() { };
		image = new Array();
		number = 0;
		// imageArray
		image[number++] = {img:"<img src='/ophthalmology/images/home_1a.jpg' width='200' height='160'>", cap:'The NYU Department of Ophthalmology provides leadership in research, <a href="residency/">education,</a> and patient care.'};
		image[number++] = {img:"<img src='/ophthalmology/images/home_1b.jpg' width='200' height='160'>", cap:'The NYU Department of Ophthalmology is an international center for <a href="/ophthalmology/research/">study of vision, visual neuroscience, and the eye.</a>'};
		image[number++] = {img:"<img src='/ophthalmology/images/home_1c.jpg' width='200' height='160'>", cap:'<a href="residency/">Residents of the ophthalmology program</a> perform clinics and surgeries at Bellevue Hospital with attending supervision.'};
		image[number++] = {img:"<img src='/ophthalmology/images/home_1d.jpg' width='200' height='160'>", cap:'Bellevue&#146;s Ambulatory Care Center features a fully equipped, <a href="/ophthalmology/residency/facilities.html#bellevue">state-of-the-art eye clinic.</a>'};
		increment = Math.floor(Math.random() * number); 
		txt = '<div id="image">' + image[increment].img + '</div> <div id="caption"><font class="caption">' + image[increment].cap + '</font></div>';
		document.write(txt);
		