// JavaScript Document

var bannersAccount = new Array();
var bannerAccountHTML = '<a href="$url$"><img src="$img$" class="$cls$" border=0></a>';
addBannerAccount('img/fluff/account1.gif','acc_create.php','css');
addBannerAccount('img/fluff/account2.gif','acc_create.php','css');
addBannerAccount('img/fluff/account3.gif','acc_create.php','css');
addBannerAccount('img/fluff/account4.gif','acc_create.php','css');


function addBannerAccount(img, url, cls){
	bannersAccount[bannersAccount.length] = new Array(img, url, cls);
}
function showBannerAccount(){
	bannerAccount=Math.floor(Math.random()*bannersAccount.length);
	showbannerAccount=bannersAccount[bannerAccount];
	var newBannersAccount=new Array();
	for(var i=0; i<bannersAccount.length; i++){
		if(i!=bannerAccount){
			newBannersAccount[newBannersAccount.length]=bannersAccount[i];
		}
	}
	bannersAccount=newBannersAccount;
	bannerAccountText=bannerAccountHTML.split('$img$').join(showbannerAccount[0]);
	bannerAccountText=bannerAccountText.split('$url$').join(showbannerAccount[1]);
	bannerAccountText=bannerAccountText.split('$cls$').join(showbannerAccount[2]);
	document.write(bannerAccountText);
}
