/* Hide the quick link "Go" button
   Only browsers WITH javascript enabled will run this, and therefore those
   browsers will be able to use the single-click quick links */
var output = "";
output = output + "<style type=\"text\/css\">";
output = output + "#quicklinks form input.submit { display: none; }";
output = output + "<\/style>";
document.write(output);

/* Random Banner Image
   This will load a random banner image when the page loads */
var numImages = 5;	// the number of random images available
var rndImage = "header_" + Math.floor( Math.random() * numImages + 1 ) + ".jpg";
var output = "";
output = output + "<style type=\"text\/css\">";
output = output + "#banner {";
output = output + "  background-image: url('/BS_COMMON/banner_images/" + rndImage + "');";
output = output + "  background-repeat: no-repeat;";
output = output + "  background-position: 160px 0px; }";
output = output + "<\/style>";
document.write(output);

/* Preload Images
   This helps Internet Explorer, which doesn't preload mouse-over images */
function newImage(arg) {
   if (document.images) {
      rslt = new Image();
      rslt.src = arg;
      return rslt;
   }
}
dept1 = newImage("/BS_COMMON/dept_menu_on/item_1.jpg");
dept2 = newImage("/BS_COMMON/dept_menu_on/item_2.jpg");
dept3 = newImage("/BS_COMMON/dept_menu_on/item_3.jpg");
dept4 = newImage("/BS_COMMON/dept_menu_on/item_4.jpg");
dept5 = newImage("/BS_COMMON/dept_menu_on/item_5.jpg");
dept6 = newImage("/BS_COMMON/dept_menu_on/item_6.jpg");
bs = newImage("/BS_COMMON/dept_menu_on/bs_over.gif");
ooa = newImage("/BS_COMMON/dept_menu_on/ooa_over.gif");