// JavaScript Document

<!---
function choices()
{
this[0] = 4;
this[1] = "<img src=\"http://www.dirtyacefreeride.com/images/1.jpg\" border=0 alt=\"freeride downhill mtb dirty ace vicenza freeride\">";
this[2] = "<img src=\"http://www.dirtyacefreeride.com/images/1_font.jpg\" border=0 alt=\"freeride downhill mtb dirty ace vicenza freeride\">";
this[3] = "<img src=\"http://www.dirtyacefreeride.com/images/1_zar.jpg\" border=0 alt=\"freeride downhill mtb dirty ace vicenza freeride\">";
this[4] = "<img src=\"http://www.dirtyacefreeride.com/images/home1.jpg\" border=0 alt=\"freeride downhill mtb dirty ace vicenza freeride\">";
}
function popUpBanner(list)
{
var today = new Date();
var choiceInstance = new choices();
var Banner = choiceInstance[(today.getSeconds() % choiceInstance[0]) + 1];
}
function grabBanner()
{
var today = new Date();
var choiceInstance = new choices();
var Banner = choiceInstance[(today.getSeconds() % choiceInstance[0]) + 1];
return Banner;
}
document.writeln(grabBanner());
// FINE --->