function randomHeart() { hearts = new Array( 'Ajami', 'Avatar', 'The Blind Side', 'Bright Star', 'Burma VJ', 'Coco Avant Channel', 'Coraline', 'The Cove', 'District 9', 'An Education', 'El Secreto de Sus Ojos ', 'Fantastic Mr. Fox', 'Food Inc.', 'Harry Potter 6', 'The Hurt Locker', 'Il Divo', 'The Imaginarium of Doctor Parnassus', 'In the Loop', 'Inglourious Basterds', 'Julie and Julia', 'The Lovely Bones', 'The Messenger', 'Milk of Sorrow', 'Most Dangerous Person in America', 'Nine', 'Paris 36', 'Precious', 'The Prophet', 'The Secret of Kells', 'A Serious Man', 'Sherlock Holmes', 'A Single Man', 'Star Trek', 'Transformers 2', 'Up', 'Up in the Air', 'Which Way Home', 'The White Ribbon', 'The Young Victoria' ); return hearts[Math.floor(Math.random()*hearts.length)]; } document.write(randomHeart());