<!-- Free JavaScript Rollover Buttons from -->
<!-- http://www.wilsoninfo.com -->
<!-- Begin

function changeImages() {
	if (document.images) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = eval
			(changeImages.arguments[i+1] + ".src");
		}
	}
}

welcome = new Image(75,22);
welcome.src = "/~pmcc/xo/_img/about.gif";
news = new Image(45,22);
news.src = "/~pmcc/xo/_img/news.gif";
science = new Image(57,22);
science.src = "/~pmcc/xo/_img/science.gif";
equipment = new Image(76,22);
equipment.src = "/~pmcc/xo/_img/equipment.gif";
equipment = new Image(85,22);
equipment.src = "/~pmcc/xo/_img/publications.gif";
gallery = new Image(55,22);
gallery.src = "/~pmcc/xo/_img/gallery.gif";
files = new Image(42,22);
files.src = "/~pmcc/xo/_img/files.gif";
about = new Image(50,22);
about.src = "/~pmcc/xo/_img/about.gif";

function doPreload()
{

	 var the_images = new Array('/~pmcc/xo/_img/welcome_on.gif','/~pmcc/xo/_img/news_on.gif','/~pmcc/xo/_img/science_on.gif','/~pmcc/xo/_img/equipment_on.gif','/~pmcc/xo/_img/publications_on.gif','/~pmcc/xo/_img/gallery_on.gif','/~pmcc/xo/_img/files_on.gif','/~pmcc/xo/_img/about_on.gif');
	 preloadImages(the_images);
}

function preloadImages(the_images_array) {

	 for(var loop = 0; loop < the_images_array.length; loop++)
	 {
				var an_image = new Image();
				an_image.src = the_images_array[loop];
	 }
}

// Stop Hiding script --->
