browser = 0;
bName = navigator.appName;
bVer = parseInt(navigator.appVersion);
if (bName == "Netscape" && bVer >=3) browser = 1;
else if (bName == "Microsoft Internet Explorer" && bVer >= 3) browser = 1;

if (browser) {
swap_button1 = new Image();
rest_button1 = new Image();
swap_button2 = new Image();
rest_button2 = new Image();
swap_button3 = new Image();
rest_button3 = new Image();
swap_button4 = new Image();
rest_button4 = new Image();
swap_button5 = new Image();
rest_button5 = new Image();
swap_button6 = new Image();
rest_button6 = new Image();
swap_button7 = new Image();
rest_button7 = new Image();

swap_button1.src="http://www.theforceonline.com/product2/images/force/about_green.jpg";
rest_button1.src="http://www.theforceonline.com/product2/images/force/about_white.jpg";
swap_button2.src="http://www.theforceonline.com/product2/images/force/contact_green.jpg";
rest_button2.src="http://www.theforceonline.com/product2/images/force/contact_white.jpg";
swap_button3.src="http://www.theforceonline.com/product2/images/force/news_green.jpg";
rest_button3.src="http://www.theforceonline.com/product2/images/force/news_white.jpg";
swap_button4.src="http://www.theforceonline.com/product2/images/force/dealer_green.jpg";
rest_button4.src="http://www.theforceonline.com/product2/images/force/dealer_white.jpg";
swap_button5.src="http://www.theforceonline.com/product2/images/force/locator_green.jpg";
rest_button5.src="http://www.theforceonline.com/product2/images/force/locator_white.jpg";
swap_button6.src="http://www.theforceonline.com/product2/images/force/positive_green.jpg";
rest_button6.src="http://www.theforceonline.com/product2/images/force/positive_white.jpg";


}
function swap(name)
{
var obj
var indx
if (browser)
{
indx = name.indexOf(".")
if (indx > 0)
obj = name.substring(0,indx)
else
{
indx = name.indexOf("_")
if (indx > 0)
{
obj = name
name = name.substring(0,indx)
}
else
obj = name
}
document [name].src = eval("swap_" + obj + ".src");
}
}
function restore(name)
{
var obj
var indx
if (browser)
{
indx = name.indexOf(".")
if (indx > 0)
obj = name.substring(0,indx)
else
{
indx = name.indexOf("_")
if (indx > 0)
{
name = name.substring(0,indx)
obj = name
}
else
obj = name
}
document [name].src = eval("rest_" + obj + ".src");
}
}