/****************************************
* Banner changer- 
* created by Daniel (webmaster@free-bingo-games.co.uk)
* This contains all the banners for the tops of the pages in this site
* a banner is chosen at random from the list each time a user goes to the page
*****************************************/
function f_banner(){
	banner_ads = new Array();
	banner_ads.push('<a http://media.ccsaint.net/clicknoimp/00000289/61" title="Online Games at Getminted.com - Win up to £25,000"><img src="http://www.barbaryonline.com/getminted/banners/golfball_nl.gif" width="468" height="60" border="0" alt="Online Games at Getminted.com - Win up to £25,000"></a>');
	banner_ads.push('<a href="http://www.interbingo.com/index.html?1884349|07442"><img src="http://ads.intercasino.com/partnerlogic/banners/07442.gif" width="468" height="60" border="0" alt="InterBingo"></a>');
	banner_ads.push('<a href="http://www.luckydevils.co.uk/?afid=1005" target="_blank"><img src="images/ad_lucky_devils_468x60.gif" alt="Lucky Devils" name="ad_banner" width="468" height="60" border="0" id="ad_banner"></a>');

	//banner_ads.push('ADD EXTRA BANNERS HERE');
	/*Simply paste the banner code from referback etc into a new banner_ads.push('<code here>') 
	* (remember single quotes) and it will be included in the list of banners shown on the site! */

	//pick random banner from array
	var random_number=Math.floor(Math.random()*banner_ads.length);
	document.write(banner_ads[random_number]); //return banner to page
}