// department managers can change these values to control the moving status messages

//
// The top scroll bar
//
var TOP_BANNER_MESSAGE = "Welcome to Bighorn ACE Materials ... Time For Spring Planting ... Fertilizer, Weed Control, Yard Tools, Top Soil & More ... ";
var TOP_BANNER_SPEED=2; // speed of movement
var TOP_BANNER_PAUSE = 2; // delay between each movement
var TOP_BANNER_POSITION=0; // amount of right-indent 

//
// The bottom (status) scroll bar
//
var BOTTOM_BANNER_MESSAGE = "  Welcome to Colorado Homestore Online ... " +
             " this site is still Under Construction ... please visit again sometime soon ..." +
"                                                      " +
"                                                      " +
"                                                      ";
var BOTTOM_BANNER_DELAY = 70; // make this larger for slower; smaller for faster 

//
// Define Scrolling banners at the top of each page
//

NUMBER_OF_BANNERS = 2;  // the number of banners

banner1= new Image();
banner1.src = "./images/banner-1.gif";  // first image to show

banner2 = new Image();
banner2.src = "./images/halfway-banner.gif"; // second image to show
//
// Rich .. these are commented out. You can put a different
// image here and uncomment. Don't forget to set the number
// of images you have to the correct numer.
//
// banner3 = new Image();
// banner3.src = "./images/myace.gif"; // third image to show

// banner4 = new Image();
// banner4.src = "./images/memsale.gif"; // fourth image to show

links = new Array
links[1] = "http://www.bighornhardware.com";  // link for first banner
links[2] = "http://www.halfwayhandy.com"; // link for second banner
//
// uncomment these to turn on the links for new banners 
// you might add.
// links[3] = "http://www.acehardware.com"; 
// link for third banner
// links[4] = "http://www.acehardware.com"; 
// link for fourth banner