function Banners() {
	banner = new Array();

	banner[0] = '<img src="app/public/imgs/banners/1.jpg"  style="width:611px;height:203px;">';
	banner[1] = '<img src="app/public/imgs/banners/2.jpg"  style="width:611px;height:203px;">';
	banner[2] = '<img src="app/public/imgs/banners/3.jpg"  style="width:611px;height:203px;">';
	banner[3] = '<img src="app/public/imgs/banners/4.jpg"  style="width:611px;height:203px;">';
	banner[4] = '<img src="app/public/imgs/banners/5.jpg"  style="width:611px;height:203px;">';
	banner[5] = '<img src="app/public/imgs/banners/6.jpg"  style="width:611px;height:203px;">';
        
	randomNumber = Math.floor(Math.random()*5);
	document.write(banner[randomNumber]);
}
