var a = new Array(5);
//build the array for the rollover text
		
		
a[0] ="<strong><span class=head></span></strong><br /><br />";
		
a[1] ="<strong><span class=head>Selling with Barter</span></strong><br /><br />We want your business to succeed. That is why ATX The Barter Company has tailored a complete marketing program around the success of its clients. Get your products and services in front of qualified buyers with ATX’s comprehensive selling strategies.";
		
a[2] ="<strong><span class=head>Buying with Barter</span></strong><br /><br />You work hard to earn your money. Let ATX help you SAVE CASH by trading for the things you need. Make a qualified buying decision when you spend your ATX Trade Dollars with these buying opportunities.  ";
		
a[3] ="<strong><span class=head>Networking with Barter</span></strong><br /><br />ATX - a tightly knit group or network of businesses, who have agreed to do business with each other whenever possible. Barter works with your bottom line in mind.";
		
a[4] ="<strong><span class=head>National Marketing</span></strong><br /><br />With ATX The Barter Company's global marketing contacts, members can expand their customer potential and increase the scope of their barter purchases.";
		
//this will put the text in the array into the div tag when the appropriate link is rolled over
function showRolloverText(x)
{
document.getElementById('rollovertext').innerHTML = a[x];
}
			
function showDefaultRolloverText()
{
document.getElementById('rollovertext').innerHTML = a[0];
}
