			var index=0;
			var htmlcode = new Array();

			htmlcode[0] = "<div id='slider' style='cursor: pointer; background: url(images/slider/cim.jpg);'><div id='slider-img'><div id='img-fcs' onclick='changenumber(0);'style='cursor: pointer; background: url(images/slider/cim-thm.jpg) no-repeat;'></div><div id='img' onclick='changenumber(1);'style='cursor: pointer; background: url(images/slider/f1-thm.jpg) no-repeat;'></div><div id='img' onclick='changenumber(2);'style='cursor: pointer; background: url(images/slider/lhp-thm.jpg) no-repeat;'></div><div id='img' onclick='changenumber(3);'style='cursor: pointer; background: url(images/slider/rdr-thm.jpg) no-repeat;'></div></div><div id='slider-trans'><div id='slider-headline'><a href='/features/2010/12/22/cities-in-motion-preview/' class='slider-headline'><b>Preview: Cities in Motion</b></a></div><div id='slider-text'><b>Preview: </b>Sean gets hands-on with Paradox Interactive's new, creative take on the well known and often over-used city simuation.<br><br>How does Cities in Motion fair?</div></div></div>";
			htmlcode[1] = "<div id='slider' style='cursor: pointer; background: url(images/slider/f12010.jpg);'><div id='slider-img'><div id='img' onclick='changenumber(0);'style='cursor: pointer; background: url(images/slider/cim-thm.jpg) no-repeat;'></div><div id='img-fcs' onclick='changenumber(1);'style='cursor: pointer; background: url(images/slider/f1-thm.jpg) no-repeat;'></div><div id='img' onclick='changenumber(2);'style='cursor: pointer; background: url(images/slider/lhp-thm.jpg) no-repeat;'></div><div id='img' onclick='changenumber(3);'style='cursor: pointer; background: url(images/slider/rdr-thm.jpg) no-repeat;'></div></div><div id='slider-trans'><div id='slider-headline'><a href='/reviews/xbox/f1-2010/' class='slider-headline'><b>Review: F1 2010</b></a></div><div id='slider-text'><b>Review: </b>Codemasters have taken over from Sony CEE to develop the Formula One games. With this being their first major instalment, has the game met the expectations that were set for it, or has it come up short?</div></div></div>";
			htmlcode[2] = "<div id='slider' style='cursor: pointer; background: url(images/slider/lhp.jpg);'><div id='slider-img'><div id='img' onclick='changenumber(0);'style='cursor: pointer; background: url(images/slider/cim-thm.jpg) no-repeat;'></div><div id='img' onclick='changenumber(1);'style='cursor: pointer; background: url(images/slider/f1-thm.jpg) no-repeat;'></div><div id='img-fcs' onclick='changenumber(2);'style='cursor: pointer; background: url(images/slider/lhp-thm.jpg) no-repeat;'></div><div id='img' onclick='changenumber(3);'style='cursor: pointer; background: url(images/slider/rdr-thm.jpg) no-repeat;'></div></div><div id='slider-trans'><div id='slider-headline'><a href='/reviews/ps3/lego-harry-potter/' class='slider-headline'><b>Review: Lego Harry Potter: Years 1-4</b></a></div><div id='slider-text'><b>Review: </b>Sean reviews the latest instalment in the Lego franchise, and investigates whether the series is going stale or not.</div></div></div>";
			htmlcode[3] = "<div id='slider' style='cursor: pointer; background: url(images/slider/rdr.jpg);'><div id='slider-img'><div id='img' onclick='changenumber(0);'style='cursor: pointer; background: url(images/slider/cim-thm.jpg) no-repeat;'></div><div id='img' onclick='changenumber(1);'style='cursor: pointer; background: url(images/slider/f1-thm.jpg) no-repeat;'></div><div id='img' onclick='changenumber(2);'style='cursor: pointer; background: url(images/slider/lhp-thm.jpg) no-repeat;'></div><div id='img-fcs' onclick='changenumber(3);'style='cursor: pointer; background: url(images/slider/rdr-thm.jpg) no-repeat;'></div></div><div id='slider-trans'><div id='slider-headline'><a href='/reviews/xbox/red-dead-redemption/' class='slider-headline'><b>Review: Red Dead Redemption</b></a></div><div id='slider-text'><b>Review: </b>Rob reviews Rockstar's Wild West game, Red Dead Redemption. Sit down, settle in, and prepare yourself for a lot of flower-picking.</div></div></div>";

			function img1() {
				$('div.slider-holder').fadeOut('fast');
				$('div.slider-holder').fadeIn('fast');
				setTimeout('changecontent()',200);
			}

			function changecontent() {
				$('div.slider-holder').html(function() {
					return htmlcode[index];
				});
				index++;
				if (index==4) {
					index=0;
				}
				setTimeout('img1()',10000);
			}

			function changenumber(a) {
				index = a;
				img1();
			}

			img1();
