/* 
  ------------------------------------
  Nav Rollovers
  ------------------------------------
*/


    if (document.images)         {
       

        nav1on = new Image();
        nav1on.src = "images/newnav/nav_01_on.gif";
        nav1off = new Image();
        nav1off.src = "images/newnav/nav_01_off.gif";


        nav2on = new Image();
        nav2on.src = "images/newnav/nav_02_on.gif";
        nav2off = new Image();
        nav2off.src = "images/newnav/nav_02_off.gif";


        nav3on = new Image();
        nav3on.src = "images/newnav/nav_03_on.gif";
        nav3off = new Image();
        nav3off.src = "images/newnav/nav_03_off.gif";


        nav4on = new Image();
        nav4on.src = "images/newnav/nav_04_on.gif";
        nav4off = new Image();
        nav4off.src = "images/newnav/nav_04_off.gif";


        nav5on = new Image();
        nav5on.src = "images/newnav/nav_05_on.gif";
        nav5off = new Image();
        nav5off.src = "images/newnav/nav_05_off.gif";


        nav6on = new Image();
        nav6on.src = "images/newnav/nav_06_on.gif";
        nav6off = new Image();
        nav6off.src = "images/newnav/nav_06_off.gif";
        
        nav7on = new Image();
        nav7on.src = "images/newnav/nav_07_on.gif";
        nav7off = new Image();
        nav7off.src = "images/newnav/nav_07_off.gif";
                
        testimonialson = new Image();
        testimonialson.src = "images/newnav/snav_testimonials_on.gif";
        testimonialsoff = new Image();
        testimonialsoff.src = "images/newnav/snav_testimonials_off.gif";
                
        class_testimonialson = new Image();
        class_testimonialson.src = "images/newnav/snav_class_testimonials_on.gif";
        class_testimonialsoff = new Image();
        class_testimonialsoff.src = "images/newnav/snav_class_testimonials_off.gif";

        classeson = new Image();
        classeson.src = "images/newnav/snav_classes_on.gif";
        classesoff = new Image();
        classesoff.src = "images/newnav/snav_classes_off.gif";

        partnerson = new Image();
        partnerson.src = "images/newnav/snav_partners_on.gif";
        partnersoff = new Image();
        partnersoff.src = "images/newnav/snav_partners_off.gif";


/* 
  ------------------------------------
  Home Rollovers
  ------------------------------------
*/



        btn1on = new Image();
        btn1on.src = "images/new/home_btn1_on.gif";
        btn1off = new Image();
        btn1off.src = "images/new/home_btn1_off.gif";
        
        
        btn2on = new Image();
        btn2on.src = "images/new/home_btn2_on.gif";
        btn2off = new Image();
        btn2off.src = "images/new/home_btn2_off.gif";



        btn11on = new Image();
        btn11on.src = "images/home/home_btn11_on.gif";
        btn11off = new Image();
        btn11off.src = "images/home/home_btn11_off.gif";
        
        
        btn22on = new Image();
        btn22on.src = "images/home/home_btn22_on.gif";
        btn22off = new Image();
        btn22off.src = "images/home/home_btn22_off.gif";


        
        
    }
        
function img_act(imgName) {
        if (document.images) {
	        document [imgName].src = eval(imgName + "on.src");;
        }
}

function img_inact(imgName) {
        if (document.images) {
	        document [imgName].src = eval(imgName + "off.src");;
        }
}



/* 
  ------------------------------------
  Pop Up
  ------------------------------------
*/


function openWin(url,width,height,name) {
	window.open(url,"terms" + name,"toolbar=0,location=0,status=0,menubar=0,scrollbars=1,width=" + width + ",height=" + height + ",resizable=0");
}

/* 
  ------------------------------------
  Change Image
  ------------------------------------
*/



		function changeImage(imagePathAndName, imageToChange) {
			anImage = document.getElementById(imageToChange);
			anImage.src = imagePathAndName;

			return true;
		}

