/*
----------------------------
website by:
Inward Eleven
http://www.inwardeleven.com/
----------------------------
*/

// poster randomizer

var ic = 12;

var poster = new Array(ic);
poster[0] = "<a href=filmography.html><img src=images/posters/27_dresses.jpg width=176 height=260 /></a><p>27 Dresses</p>"
poster[1] = "<a href=filmography.html><img src=images/posters/black_swan.jpg width=176 height=260 /></a><p>Black Swan</p>"
poster[2] = "<a href=filmography.html><img src=images/posters/eclipse.jpg width=176 height=260 /></a><p>Eclipse</p>"
poster[3] = "<a href=filmography.html><img src=images/posters/in_the_valley_of_elah.jpg width=176 height=260 /></a><p>In the Valley of Elah</p>"
poster[4] = "<a href=filmography.html><img src=images/posters/letters_to_juliet.jpg width=176 height=260 /></a><p>Letters to Juliet</p>"
poster[5] = "<a href=filmography.html><img src=images/posters/more_than_a_game.jpg width=176 height=260 /></a><p>More than a Game</p>"
poster[6] = "<a href=filmography.html><img src=images/posters/red.jpg width=176 height=260 /></a><p>Red</p>"
poster[7] = "<a href=filmography.html><img src=images/posters/thank_you_for_smoking.jpg width=176 height=260 /></a><p>Thank You for Smoking</p>"
poster[8] = "<a href=filmography.html><img src=images/posters/the_brothers_bloom.jpg width=176 height=260 /></a><p>The Brothers Bloom</p>"
poster[9] = "<a href=filmography.html><img src=images/posters/the_lookout.jpg width=176 height=260 /></a><p>The Lookout</p>"
poster[10] = "<a href=filmography.html><img src=images/posters/twilight.jpg width=176 height=260 /></a><p>Twilight</p>"
poster[11] = "<a href=filmography.html><img src=images/posters/under_the_same_moon.jpg width=176 height=260 /></a><p>Under the Same Moon</p>"

function pickRandom(range) {
if (Math.random)
return Math.round(Math.random() * (range-1));
else {
var now = new Date();
return (now.getTime() / 1000) % range;
}
}
var choice = pickRandom(ic);
