// JavaScript Document

// DIV swapper
// Use this to hide and/or show DIVs
function HideDIV(d)
		{ document.getElementById(d).style.display = "none"; }
function DisplayDIV(d)
		{ document.getElementById(d).style.display = "block"; }

// Image Preloader
// Add the bottom line to the body tag so that it will preload an image if you are using image switching
// onLoad="PreLoad('','image/.gif');"
// Place in the image name in the first '', and then the image location in the second ''
function PreLoad(obj,val) {
    var img = obj;
    document.img = new Image();
    document.img.src = val;
	}
