 ///////////////////////////////////////////
 //NAVIGATION: rolls
 ///////////////////////////////////////////
 /*
 Author: Michele
 Date: 12/5/2005 
 Description: navigation rollovers
 */
 if (document.images) {

 	var soc1off = new Image();
 	soc1off.src = "images/thumbs1/bellaoff.jpg";
 	var soc2off = new Image();
 	soc2off.src = "images/thumbs1/lifeofthepartyoff.jpg";
 	var soc3off = new Image();
 	soc3off.src = "images/thumbs1/newyearsoff.jpg";
 	var soc4off = new Image();
 	soc4off.src = "images/thumbs1/holidayoff.jpg";
 	var soc5off = new Image();
 	soc5off.src = "images/thumbs1/nestoff.jpg";
 	var soc6off = new Image();
 	soc6off.src = "images/thumbs1/peaceoff.jpg";
 	var soc7off = new Image();
 	soc7off.src = "images/thumbs1/bubblyoff.jpg";
 	var soc8off = new Image();
 	soc8off.src = "images/thumbs1/snowflakeoff.jpg";
 	var soc9off = new Image();
 	soc9off.src = "images/thumbs1/rococooff.jpg";
 	var soc10off = new Image();
 	soc10off.src = "images/thumbs1/vintagekeyoff.jpg";
 	var soc11off = new Image();
 	soc11off.src = "images/thumbs1/beaulieuinvoff.jpg";
 	var soc12off = new Image();
 	soc12off.src = "images/thumbs1/beaulieustdoff.jpg";
 	var soc13off = new Image();
 	soc13off.src = "images/thumbs1/acanthusinvitoff.jpg";
 	var soc14off = new Image();
 	soc14off.src = "images/thumbs1/holidayfoldoff.jpg";
 	var soc15off = new Image();
 	soc15off.src = "images/thumbs1/trunkoff.jpg";
 	var soc16off = new Image();
 	soc16off.src = "images/thumbs1/maisonoff.jpg";
 	var soc17off = new Image();
 	soc17off.src = "images/thumbs1/vintagereleaseoff.jpg";

 	var soc1on = new Image();
 	soc1on.src = "images/thumbs1/bellaon.gif";
 	var soc2on = new Image();
 	soc2on.src = "images/thumbs1/lifeofthepartyon.gif";
 	var soc3on = new Image();
 	soc3on.src = "images/thumbs1/newyearson.gif";
 	var soc4on = new Image();
 	soc4on.src = "images/thumbs1/holidayon.gif";
 	var soc5on = new Image();
 	soc5on.src = "images/thumbs1/neston.gif";
 	var soc6on = new Image();
 	soc6on.src = "images/thumbs1/peaceon.gif";
 	var soc7on = new Image();
 	soc7on.src = "images/thumbs1/bubblyon.gif";
 	var soc8on = new Image();
 	soc8on.src = "images/thumbs1/snowflakeon.gif";
 	var soc9on = new Image();
 	soc9on.src = "images/thumbs1/rococoon.gif";
 	var soc10on = new Image();
 	soc10on.src = "images/thumbs1/vintagekeyon.gif";
 	var soc11on = new Image();
 	soc11on.src = "images/thumbs1/beaulieuinvon.gif";
 	var soc12on = new Image();
 	soc12on.src = "images/thumbs1/beaulieustdon.gif";
 	var soc13on = new Image();
 	soc13on.src = "images/thumbs1/acanthusinviton.gif";
 	var soc14on = new Image();
 	soc14on.src = "images/thumbs1/holidayfoldon.gif";
 	var soc15on = new Image();
 	soc15on.src = "images/thumbs1/trunkon.gif";
 	var soc16on = new Image();
 	soc16on.src = "images/thumbs1/maisonon.gif";
 	var soc17on = new Image();
 	soc17on.src = "images/thumbs1/vintagereleaseon.gif"; 	
 
 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");
 	}
 }
 
 }
