<!-- hide from old browsers

	bName = navigator.appName;
	bVer = parseInt(navigator.appVersion);

	if (bName == "Netscape" && bVer >= 3)
		version = "n3";

	else if (bName == "Microsoft Internet Explorer" && bVer >= 4.0)
 		version = "n3";
	else version = "n2";
	if (version == "n3") {

             i1on = new Image();
             i1on.src = "images/b2_students.jpg";
             i2on = new Image();
             i2on.src = "images/b2_alumni.jpg";
             i3on = new Image();
             i3on.src = "images/b2_employers.jpg";
             i4on = new Image();
             i4on.src = "images/b2_parents.jpg";
             i5on = new Image();
             i5on.src = "images/b2_faculty_staff.jpg";
             i6on = new Image();
             i6on.src = "images/b2_about_us.jpg";
             i7on = new Image();
             i7on.src = "images/b2_resources.jpg";
			 i8on = new Image();
             i8on.src = "images/logo2_career_services.jpg";

             i1off = new Image();
             i1off.src = "images/b_students.jpg";
             i2off = new Image();
             i2off.src = "images/b_alumni.jpg";
             i3off = new Image();
             i3off.src = "images/b_employers.jpg";
             i4off = new Image();
             i4off.src = "images/b_parents.jpg";
             i5off = new Image();
             i5off.src = "images/b_faculty_staff.jpg";
             i6off = new Image();
             i6off.src = "images/b_about_us.jpg";
             i7off = new Image();
             i7off.src = "images/b_resources.jpg";
			 i8off = new Image();
             i8off.src = "images/logo_career_services.jpg";
     }


     function imgAct(imgName) {
             if (version == "n3") {
             imgOn = eval(imgName + "on.src");
             document [imgName].src = imgOn;

             }

     }

     function imgInact(imgName) {
             if (version == "n3") {
             imgOff = eval(imgName + "off.src");
             document [imgName].src = imgOff;

             }

     }

//-->