			var a = new Array(6);
			//build the array for the rollover text
		
		
			a[0] ="<strong><span class=head></span></strong><br /><br />";
		
			a[1] ="<strong><span class=head>Start Your Own Trade Exchange</span></strong><br /><br />Be your own boss. If you're like most people, that thought brings to mind a tempting ring of independence, calling your own shots and making money. Owning your own barter exchange offers you all of that and more . . . <br /><em>if you know what you are doing.</em>";
		
			a[2] ="<strong><span class=head>Account Executive</span></strong><br /><br />The lifeblood of the barter industry is new members. The ATX Account Executive is responsible for just that.";
		
			a[3] ="<strong><span class=head>Trade Broker</span></strong><br /><br />Do you enjoy rapport-building sales? Is making business happen something you thrive on? Imagine - a diverse industry with virtually no competition, where everyday is a new opportunity to sell.";
		
			a[4] ="<strong><span class=head>Customer Service</span></strong><br /><br />Do you possess great organizational skills & a flair for sales? Have you always made the sales department look good, but never got the credit? We have the ideal opportunity for you.";
		
			a[5] ="<strong><span class=head>Apply</span></strong><br /><br />ATX The Barter Company is always on the lookout for top performers interested in pursuing a career in the trade industry. This growing, highly innovative industry offers many rewards for driven, self-starting individuals. If you would like to be a part of The ATX Team, apply today!";
		
			//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];
			}
