// Set up arrays and variables to use with buttons.

// Path the pages are in.
path = "http://www.ncat.edu/events/homecoming/2004/";

// Alt text associated with buttons.
var links_text = new Array ("Homecoming 2004", "Contest Results", "Guest Book", "A&T's Home Page");

// Name of page button will link to.  For pages in main folder on homecoming site, do not include file extension.
// Pages not on this site should include file extension.
var links = new Array ("index", "contest_results", "guestbook", "index.html");

// Complete path of pages that will be linked to.
var links_url = new Array (path + "index.html", path + "contest_results.html", path + "guestbook.html", "http://www.ncat.edu/index.html");

// Name of each button as referenced in img tag.
var button_names = new Array ("home", "contest", "guestbook", "athome");

// Location of images to be displayed when the cursor is over a button.
var over_images = new Array ("http://www.ncat.edu/events/homecoming/2004/images/buttons/homeover.jpg", "http://www.ncat.edu/events/homecoming/2004/images/buttons/contest_over.jpg", "http://www.ncat.edu/events/homecoming/2004/images/buttons/guestbookover.jpg", "http://www.ncat.edu/events/homecoming/2004/images/buttons/athomeover.jpg");

// Location of images to be displayed with the cursor is not over a button.
var out_images = new Array ("http://www.ncat.edu/events/homecoming/2004/images/buttons/homeout.jpg", "http://www.ncat.edu/events/homecoming/2004/images/buttons/contest_out.jpg",
"http://www.ncat.edu/events/homecoming/2004/images/buttons/guestbookout.jpg",
"http://www.ncat.edu/events/homecoming/2004/images/buttons/athomeout.jpg");

// Image numbers referenced in code.
var home_img_num = 0;
var contest_img_num =1;
var guestbook_img_num = 2;
var athome_img_num = 3;

// Image attributes;
var img_width = 97;
var img_height = 45;
var img_border_size =0;