	
	
	function calcBanner()
	{
     randBanner = (Math.round(Math.random()*banner.length));
	}

    banner = new Array(16);
	
	/* insert the bannerUrls + bannerImages here */
	banner[1] = "<a href=\"http://www.deco-vision.de/feautures/oscillating_rhythm/index.html\" target=_top><img src=\"../../banner/oscillator.gif\" width=\"468\" height=\"60\" border=\"0\"></a>";
	banner[2] = "<a href=\"http://www.deco-vision.de/feautures/makeushappy/index.html\" target=_top><img src=\"../../banner/makemehappy.gif\" width=\"468\" height=\"60\" border=\"0\"></a>";
	banner[3] = "<a href=\"http://www.deco-vision.de/feautures/magnifier/index.html\" target=_top><img src=\"../../banner/magnifier.gif\" width=\"468\" height=\"60\" border=\"0\"></a>";
	banner[4] = "<a href=\"http://www.deco-vision.de/feautures/exhibition/index.html\" target=_top><img src=\"../../banner/exhibition.gif\" width=\"468\" height=\"60\" border=\"0\"></a>";
	banner[5] = "<a href=\"http://www.deco-vision.de/feautures/area73/index.html\" target=_top><img src=\"../../banner/area73.gif\" width=\"468\" height=\"60\" border=\"0\"></a>";
	banner[6] = "<a href=\"http://www.deco-vision.de/feautures/starfield-fire/index.html\" target=_top><img src=\"../../banner/starfield-fire.gif\" width=\"468\" height=\"60\" border=\"0\"></a>";
	banner[7] = "<a href=\"http://www.deco-vision.de/feautures/screen-savers/index.html\" target=_top><img src=\"../../banner/screen-savers.gif\" width=\"468\" height=\"60\" border=\"0\"></a>";
	banner[8] = "<a href=\"http://www.deco-vision.de/feautures/akustikmemo/index.html\" target=_top><img src=\"../../banner/akustikmemo.gif\" width=\"468\" height=\"60\" border=\"0\"></a>";
	banner[9] = "<a href=\"http://www.deco-vision.de/feautures/trailblazer/index.html\" target=_top><img src=\"../../banner/trailblazer-banner.gif\" width=\"468\" height=\"60\" border=\"0\"></a>";
	banner[10] = "<a href=\"http://www.deco-vision.de/feautures/output64/index.html\" target=_top><img src=\"../../banner/output64-banner.gif\" width=\"468\" height=\"60\" border=\"0\"></a>";
	banner[11] = "<a href=\"http://www.deco-vision.de/feautures/curvy-traces/index.html\" target=_top><img src=\"../../banner/curvy-banner.gif\" width=\"468\" height=\"60\" border=\"0\"></a>";
	banner[12] = "<a href=\"http://www.deco-vision.de/feautures/wire-work/index.html\" target=_top><img src=\"../../banner/wire-work-banner.gif\" width=\"468\" height=\"60\" border=\"0\"></a>";
	banner[13] = "<a href=\"http://www.deco-vision.de/feautures/etienne/index.html\" target=_top><img src=\"../../banner/chez_vickie.gif\" width=\"468\" height=\"60\" border=\"0\"></a>";
	banner[14] = "<a href=\"http://www.deco-vision.de/feautures/self-movies/index.html\" target=_top><img src=\"../../banner/self-movie_banner.gif\" width=\"468\" height=\"60\" border=\"0\"></a>";
	banner[15] = "<a href=\"http://www.deco-vision.de/feautures/hide-n-collide/index.html\" target=_top><img src=\"../../banner/hide-n-collide.gif\" width=\"468\" height=\"60\" border=\"0\"></a>";
	banner[16] = "<a href=\"http://www.deco-vision.de/feautures/wallpapers/index.html\" target=_top><img src=\"../../banner/wallpapers.gif\" width=\"468\" height=\"60\" border=\"0\"></a>";
	
	/* make sure that there is no shit happening */
	do {  calcBanner(); }
    while(randBanner<1 || randBanner == dontLoad || randBanner >= banner.length);
 
   
    /* write out the banner */
    document.write(banner[randBanner]);
	
