 ///////////////////////////////////////////
 //NAVIGATION: rolls
 ///////////////////////////////////////////
 /*
 Author: Michele
 Date: 12/5/2005 
 Description: navigation rollovers
 */
 if (document.images) {

 	var cor1off = new Image();
 	cor1off.src = "images/coral/Ainsley_off.jpg";
 	var cor2off = new Image();
 	cor2off.src = "images/coral/Aurelian_off.jpg";
 	var cor3off = new Image();
 	cor3off.src = "images/coral/Bloomfield_off.jpg";
 	var cor4off = new Image();
 	cor4off.src = "images/coral/Grammercy_off.jpg";
 	var cor5off = new Image();
 	cor5off.src = "images/coral/Granada_off.jpg";
 	var cor6off = new Image();
 	cor6off.src = "images/coral/Hollis_off.jpg";
 	var cor7off = new Image();
 	cor7off.src = "images/coral/Leavenworth_off.jpg";
 	var cor8off = new Image();
 	cor8off.src = "images/coral/Loire_off.jpg";
 	var cor9off = new Image();
 	cor9off.src = "images/coral/Maybeck_off.jpg";
 	var cor10off = new Image();
 	cor10off.src = "images/coral/Primula_off.jpg";
 	var cor11off = new Image();
 	cor11off.src = "images/coral/Vizcaya_off.jpg";
 	var cor12off = new Image();
 	cor12off.src = "images/coral/Volusia_off.jpg";

 	var cor1on = new Image();
 	cor1on.src = "images/coral/Ainsley_on.jpg";
 	var cor2on = new Image();
 	cor2on.src = "images/coral/Aurelian_on.jpg";
 	var cor3on = new Image();
 	cor3on.src = "images/coral/Bloomfield_on.jpg";
 	var cor4on = new Image();
 	cor4on.src = "images/coral/Grammercy_on.jpg";
 	var cor5on = new Image();
 	cor5on.src = "images/coral/Granada_on.jpg";
 	var cor6on = new Image();
 	cor6on.src = "images/coral/Hollis_on.jpg";
 	var cor7on = new Image();
 	cor7on.src = "images/coral/Leavenworth_on.jpg";
 	var cor8on = new Image();
 	cor8on.src = "images/coral/Loire_on.jpg";
 	var cor9on = new Image();
 	cor9on.src = "images/coral/Maybeck_on.jpg";
 	var cor10on = new Image();
 	cor10on.src = "images/coral/Primula_on.jpg";
 	var cor11on = new Image();
 	cor11on.src = "images/coral/Vizcaya_on.jpg";
 	var cor12on = new Image();
 	cor12on.src = "images/coral/Volusia_on.jpg";
	

 function img_act(imgName) {
 	if (document.images) {
 		document.images[imgName].src = eval(imgName + "on.src");
 	}
 }
 
 function img_inact(imgName) {
 	if (document.images) {
 		document.images[imgName].src = eval(imgName + "off.src");
 	}
 }
 
 }
