// JavaScript Document

BannerCount = 1;

BannerBilder = new Array(
 "banner/banner_fpvcommunity.png"), 


BannerLinks = new Array(
 "http://www.fpv-community.de/");

function randomBanner()
{
 BannerIndex = Math.floor(Math.random()*BannerCount);
 
 window.document.getElementById("banner_link").href=BannerLinks[BannerIndex];
 window.document.getElementById("banner_img").src = BannerBilder[BannerIndex];
}