<!--Author: Paul Timney-->

function writeList(clickedElement)
{
var object = document.getElementById('favouriteList');
var book = '<ol><li>01. Mobile Web Design - Cameron Moll</li><li>02. Making Money - Terry Pratchett</li><li>03. V for Vendetta - Alan Moore</li><li>04. JavaScript: The definitie guide - David Flannagan</li><li>05. Captain America - Ed Brubaker</li></ol><p class=\"note\"><span class=\"largeText\">more favourites</span><br>A Clockwork Orange/net magazine/The Goon/Bone/The Watchmen/<span class=\"largeText">From Hell</span>/Bill\'s Open Kitchen/Junky/<span class=\"largeText">The Electric Kool Aid Acid Test/</span>A design for dying/Fight and kick and bite - the life and works of Dennis Potter/Brilliant Flash/<span class=\"largeText">CSS Zen Garden/</span>The bonfire of the vanities/<span class=\"largeText">FWA.com</span>/Naked Lunch/The Intimates/The Punnisher/<span class=\"largeText">Dan Dare/</span>One flew over the cuckoo\'s nest/Guards! Guards!/Closing Time/Catch 22/The picture of Dorain Gray/<span class=\"largeText">The league of Extraordinary Gentlemen (Series 1)/</span>Three men in a boat/The Tell Tale Heart/<span class=\"largeText">House of Leaves/</span>DHTML and CSS for the world wide web/New Avengers/Fables/Stark/Interaction Design/Danny the champion of the world</p>';
var ipod = '<ol><li>01. You can close your eyes - James Taylor</li><li>02. A favour house Atlantic - Coheed &amp; Cambria</li><li>03. The Pot - Tool</li><li>04. Saturday Superhouse - Biffy Clyro</li><li>05. Nightswimming - R.E.M</li></ol><p class=\"note\"><span class=\"largeText">more favourites</span><br>Anthrax/The Beatles/Janis Joplin/Led Zepplin/Jimi Hendrix/<span class=\"largeText\">Billy Talent/</span>Rage against the machine/<span class=\"largeText\">Pearl Jam/</span>Ministry/Soundgarden/Sam Cooke/Faith No More/<span class=\"largeText\">Kyuss/</span>Clutch/Queens of the Stone Age/Alkaline Trio/<span class=\"largeText\">The Misfits/</span>Rocket from the Crypt/Public Enemy/Simon and Garfunkel/Foo Fighters/Jimmy Eat World/<span class=\"largeText\">System of a down/</span>Human waste project/Refused/Boomtown Rats/Black Flag/Dead Kennedys/UK Subs/John Denver/Alison Krauss/<span class=\"largeText\">Bad Brains/</span>Fishbone/The Descendents/Stevie Wonder/Lionel Ritchie/Rollins Band/<span class=\"largeText\">Fleetwood Mac/</span>The Who/Fall Out Boy/Reel Big Fish/Bush/Levellers/Primus/<span class=\"largeText\">Kate Nash</span>';
var tv = '<ol><li>01. Heroes</li><li>02. The Prisoner</li><li>03. Family Guy</li><li>04. The Wire</li><li>05. Scrubs</li></ol><p class=\"note\"><span class=\"largeText\">more favourites</span><br>The Royal Tennenbaums/Phoenix Nights/The Simpsons/<span class=\"largeText\">O bother where art thou/</span>40 year old virgin/No country for old men/<span class=\"largeText\">A Clockwork Orange/</span>Dogma/South Park/The Brotherhood/Ali/Joe Dirt/So I married an axe murderer/Last exit to Brooklyn/Dinnerladies/<span class=\"largeText\">Garden State/</span>Superbad/American history X/Freaks/Rocky Horror Picture Show/Boys from the blackstuff/Blue remembered hills/Lipstick on your collar/<span class=\"largeText\">Black books/</span>Goodfellas/The Goonies/Pulp Fiction/Rushmore/Sideways/The league of gentlemen/Chasing Amy/Baseketball/Rocky III/<span class=\"largeText\">Slap shot/</span>Shearer\'s 206 goals/The adventures of Buckaroo Banzai across the eigth dimension/Big Trouble in Little Chins/The Thing/<span class=\"largeText\">I am Sam</span>';
var clicked = clickedElement;
var textToWrite = tv;
var imageToWrite = "favouriteWatch.png";

if(clicked == "ipod")
{
textToWrite = ipod;
imageToWrite = "favouriteHear.png";
}
else{
if (clicked =="book")
{
textToWrite = book;
imageToWrite = "favouriteRead.png";
}
}

object.innerHTML = textToWrite;
document.images.favouriteImage.src = imageToWrite;

}
