// Generate a Random Number
var randomnumber = Math.round(Math.random()*5);
// Select a movie and execute the corresponding function
if (randomnumber == 0)
{movie1();}
else if (randomnumber == 1)
{movie2();}
else if (randomnumber == 2)
{movie3();}
else if (randomnumber == 3)
{movie4();}
else if (randomnumber == 4)
{movie5();}
else if (randomnumber == 5)
{movie6();}

//Functions to write out the correct flash movie resource.
function movie1(){
document.write("<img src='/animatingdemocracy/images/home/main_image_umbrellas.jpg' width='572' height='180' alt='Fostering Civic Engagement through Arts and Culture' border='0' />")
}
function movie2(){
document.write("<img src='/animatingdemocracy/images/home/main_image_dancers.jpg' width='572' height='180' alt='Fostering Civic Engagement through Arts and Culture' border='0' />")
}
function movie3(){
document.write("<img src='/animatingdemocracy/images/home/main_image_mcees.jpg' width='572' height='180' alt='Fostering Civic Engagement through Arts and Culture' border='0' />")
}
function movie4() {
document.write("<img src='/animatingdemocracy/images/home/main_image_chart.jpg' width='572' height='180' alt='Fostering Civic Engagement through Arts and Culture' border='0' />")
}
function movie5() {
document.write("<img src='/animatingdemocracy/images/home/main_image_statue.jpg' width='572' height='180' alt='Fostering Civic Engagement through Arts and Culture' border='0' />")
}
function movie6() {
document.write("<img src='/animatingdemocracy/images/home/main_image_original.jpg' width='572' height='180' alt='Fostering Civic Engagement through Arts and Culture' border='0' />")
}