function randomHeart() {
	hearts = new Array(
		'<img src="/2011/images/adventurestintin_image-s.jpg" alt="Adventures of Tintin" width="370" height="200">',
		'<img src="/2011/images/albertnobbs_image-s.jpg" alt="Albert Nobbs" width="370" height="200">',
		'<img src="/2011/images/anonymous_image-s.jpg" alt="Anonymous" width="370" height="200">',
		'<img src="/2011/images/artist_image-s.jpg" alt="The Artist" width="370" height="200">',
		'<img src="/2011/images/beginners_image-s.jpg" alt="Beginners" width="370" height="200">',
		'<img src="/2011/images/descendants_image-s.jpg" alt="The Descendants" width="370" height="200">',
		'<img src="/2011/images/betterlife_image-s.jpg" alt="A Better Life" width="370" height="200">',
		'<img src="/2011/images/bridesmaids_image-s.jpg" alt="Bridesmaids" width="370" height="200">',
		'<img src="/2011/images/catinparis_image-s.jpg" alt="A Cat in Paris" width="370" height="200">',
		'<img src="/2011/images/chicorita_image-s.jpg" alt="Chico and Rita" width="370" height="200">',
		'<img src="/2011/images/drive_image-s.jpg" alt="Drive" width="370" height="200">',
		'<img src="/2011/images/extremelyloud_image-s.jpg" alt="Extremely Loud and Incredibly Close" width="370" height="200">',
		'<img src="/2011/images/girlwiththedragon_image-s.jpg" alt="The Girl with the Dragon Tattoo" width="370" height="200">',
		'<img src="/2011/images/help_image-s.jpg" alt="The Help" width="370" height="200">',
		'<img src="/2011/images/hp72_image-s.jpg" alt="Harry Potter and teh Deathly Hallows part 2" width="370" height="200">',
		'<img src="/2011/images/hugo_image-s.jpg" alt="Hugo" width="370" height="200">',
		'<img src="/2011/images/idesofmarch_image-s.jpg" alt="The Ides of March" width="370" height="200">',
		'<img src="/2011/images/ironlady_image-s.jpg" alt="The Iron Lady" width="370" height="200">',
		'<img src="/2011/images/janeeyre_image-s.jpg" alt="Jane Eyre" width="370" height="200">',
		'<img src="/2011/images/kungfupanda2_image-s.jpg" alt="Kung Fu Panda 2" width="370" height="200">',
		'<img src="/2011/images/margincall_image-s.jpg" alt="Margin Call" width="370" height="200">',
		'<img src="/2011/images/midnightinparis_image-s.jpg" alt="Midnight in Paris" width="370" height="200">',
		'<img src="/2011/images/moneyball_image-s.jpg" alt="Moneyball" width="370" height="200">',
		'<img src="/2011/images/muppets_image-s.jpg" alt="The Muppets" width="370" height="200">',
		'<img src="/2011/images/myweekwithmarilyn_image-s.jpg" alt="My Week with Marilyn" width="370" height="200">',
		'<img src="/2011/images/pussinboots_image-s.jpg" alt="Puss in Boots" width="370" height="200">',
		'<img src="/2011/images/rango_image-s.jpg" alt="Rango" width="370" height="200">',
		'<img src="/2011/images/realsteel_image-s.jpg" alt="Real Steel" width="370" height="200">',
		'<img src="/2011/images/rio_image-s.jpg" alt="Rio" width="370" height="200">',
		'<img src="/2011/images/riseplanetapes_image-s.jpg" alt="Rise of the Planet of the Apes" width="370" height="200">',
		'<img src="/2011/images/separation_image-s.jpg" alt="A Separation" width="370" height="200">',
		'<img src="/2011/images/tinkertailor_image-s.jpg" alt="Tinker Tailor Soldier Spy" width="370" height="200">',
		'<img src="/2011/images/transformers3_image-s.jpg" alt="Transformers Dark of the Moon" width="370" height="200">',
		'<img src="/2011/images/treeoflife_image-s.jpg" alt="Tree of Life" width="370" height="200">',
		'<img src="/2011/images/warhorse_image-s.jpg" alt="War Horse" width="370" height="200">',
		'<img src="/2011/images/warrior_image-s.jpg" alt="Warrior" width="370" height="200">',
		'<img src="/2011/images/we_image-s.jpg" alt="WE" width="370" height="200">'
	);
	
	return hearts[Math.floor(Math.random()*hearts.length)];
}

document.write(randomHeart());

