/* Navigation Bar Scripts - nav_bar.js
	Author: Robert Cooper
	Company: AB Components Ltd
	Created: 09/10/2008
	
	Last modified by: Robert Cooper
	Last modified on: 09/10/2008
*/

if (document.images) {
	home_on = new Image();
	home_on.src = "images/header/home_bttn_clck.jpg";
	about_us_on = new Image();
	about_us_on.src = "images/header/about_us_bttn_clck.jpg";
	products_on = new Image();
	products_on.src = "images/header/products_bttn_clck.jpg";
	specials_on = new Image();
	specials_on.src = "images/header/specials_bttn_clck.jpg";
	downloads_on = new Image();
	downloads_on.src = "images/header/downloads_bttn_clck.jpg";
	contact_us_on = new Image();
	contact_us_on.src = "images/header/contact_us_bttn_clck.jpg";
}

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