<!-- Begin
// This rollover script is slightly different from rolloverIndex.js because it does not 
// include the disjointed text rollover.

// Some variables
var btnQuickQuoteIndex = 0;
var btnSitemapIndex = 1;
var btnFreqConvIndex = 2;
var btnContactIndex = 3;
var btnProductsIndex = 4;
var btnWorldPowerIndex = 5;
var btnAboutUsIndex = 6;
var btnHomeIndex = 7;

var base = 'images/Tier2/';
var BtnsOffRA = new Array();
var BtnsOverRA = new Array();
var BtnsTxtRA = new Array();
var BtnsRA = new Array('btnQuickQuote',
												'btnSitemap', 
												'btnFreqConv', 
												'btnContact', 
												'btnProducts', 
												'btnWorldPower', 
												'btnAboutUs',
												'btnHome');


// Pre-load part.
if (document.images)
{
	for (i=0;i<BtnsRA.length;i++)
	{
		// Set the source for the mouse over
		BtnsOffRA[i] = new Image();
		BtnsOffRA[i].src = base + BtnsRA[i] + ".gif";
		// set the source for the mouse out
		BtnsOverRA[i] = new Image();
		BtnsOverRA[i].src = base + BtnsRA[i] + "_over.gif";
		// set the source for the text swap if this is not the contact button
		if (BtnsRA[i] != 'btnContact')
		{
			BtnsTxtRA[i] = new Image();
		}
	}
}

// mouseover swap
function overSwap(I)
{
	if (document.images)
	{
		document.images[BtnsRA[I]].src = BtnsOverRA[I].src
	}
}

// mouseout swap
function outSwap(I)
{
	if (document.images)
	{
		document.images[BtnsRA[I]].src = BtnsOffRA[I].src
	}
}
//  End -->