flag = new Array("BR", "LAM", "US", "CA", "AU", "DE", "ZA" );
country = new Array("Brasil", "Latin America", "USA", "Canada", "Australia", "Deutschland", "South Africa");
url = new Array("http://www.barney.com/br","http://www.barney.com/la","http://www.barney.com/usa","http://www.barney.com/ca", "http://www.barney.com/au/", "http://www.hitentertainment.com/barney/flash_mx/sites/index.asp?c=de", "http://www.hitentertainment.com/barney/za/");
/*url = new Array("http://www.bobthebuilder.com/usa/index.html","http://www.bobthebuilder.com/uk/index.html","http://www.bobthebuilder.com/bob_the_builder_online_website_canada_flag_page.html","http://www.bobthebuilder.com/au/main.html","http://www.bobthebuilder.com/nl/main.html","http://www.bobthebuilder.com/de/main.html","http://www.bobthebuilder.com/fr/index.html","http://www.bobthebuilder.com/es/main.html", "http://www.bobthebuilder.com/it/main.html", "http://www.bobthebuilder.com/jp/main.html", "http://www.bobthebuilder.com/row/main.html");*/
output = '<p align="center">';
output += '<img src="visit.gif" border="0" alt="Visit Barney in other countries">'
output += '<table cellpadding="4" cellspacing="0" align="center"><tr>';
for ( i = 0; i < flag.length; i++ ) {
	output += '<td><a href="' + url[i] + '"><img id="flagImg" src="http://www.hitentertainment.com/flags/flag' + flag[i] + '.gif" border="0" title="'+country[i]+'" alt="'+country[i]+'"/></a></td>';
}
output += '	</tr></table></p>';
document.write(output);

