<!--
// images get loaded when page is loaded
if (document.images)
{
	PreLoad();
	var CurrentImage = "nothing";
}

function PreLoad()
{
		hnav1off = new Image();
		hnav1on = new Image();
		hnav1off.src = "http://www.lightly.com/images/hcoach.gif";
		hnav1on.src = "http://www.lightly.com/images/hcoachon.gif";
		
		hnav2off = new Image();
		hnav2on = new Image();
		hnav2off.src = "http://www.lightly.com/images/hcourse.gif";
		hnav2on.src = "http://www.lightly.com/images/hcourseon.gif";
		
		hnav3off = new Image();
		hnav3on = new Image();
		hnav3off.src = "http://www.lightly.com/images/href.gif";
		hnav3on.src = "http://www.lightly.com/images/hrefon.gif";
		
		hnav4off = new Image();
		hnav4on = new Image();
		hnav4off.src = "http://www.lightly.com/images/hcalen.gif";
		hnav4on.src = "http://www.lightly.com/images/hcalenon.gif";
		
		hnav5off = new Image();
		hnav5on = new Image();
		hnav5off.src = "http://www.lightly.com/images/hcont.gif";
		hnav5on.src = "http://www.lightly.com/images/hconton.gif";
		
		hnav6off = new Image();
		hnav6on = new Image();
		hnav6off.src = "http://www.lightly.com/images/habout.gif";
		hnav6on.src = "http://www.lightly.com/images/habouton.gif";

		cnav1off = new Image();
		cnav1on = new Image();
		cnav1off.src = "http://www.lightly.com/images/cbus.gif";
		cnav1on.src = "http://www.lightly.com/images/cbuson.gif";
		
		cnav2off = new Image();
		cnav2on = new Image();
		cnav2off.src = "http://www.lightly.com/images/ceth.gif";
		cnav2on.src = "http://www.lightly.com/images/cethon.gif";
		
		cnav3off = new Image();
		cnav3on = new Image();
		cnav3off.src = "http://www.lightly.com/images/csch.gif";
		cnav3on.src = "http://www.lightly.com/images/cschon.gif";
		
		cnav4off = new Image();
		cnav4on = new Image();
		cnav4off.src = "http://www.lightly.com/images/coneev2.gif";
		cnav4on.src = "http://www.lightly.com/images/coneevon2.gif";
		
		cnav5off = new Image();
		cnav5on = new Image();
		cnav5off.src = "http://www.lightly.com/images/clight.gif";
		cnav5on.src = "http://www.lightly.com/images/clighton.gif";
		
		cnav6off = new Image();
		cnav6on = new Image();
		cnav6off.src = "http://www.lightly.com/images/cperso.gif";
		cnav6on.src = "http://www.lightly.com/images/cpersoon.gif";
		
		cnav7off = new Image();
		cnav7on = new Image();
		cnav7off.src = "http://www.lightly.com/images/cpers.gif";
		cnav7on.src = "http://www.lightly.com/images/cperson.gif";
}

function rollover(img, status)
{
	var newImage;
	CurrentImage = "nothing";
        if (document.images)
        {
                if(img != CurrentImage)
                {
                        if(status == 1)        
                                newImage = eval(img + "on.src");
                        if(status == 0)
                                newImage = eval(img + "off.src");
                        CurrentImage = img;
                        document [CurrentImage].src = newImage;
                }
        }
}
//-->