function setCarousel(){
	var strVar="";
	strVar += "";
	strVar += "<ul id=\"mycarousel\" class=\"jcarousel-skin-tango\">";
	strVar += "					<li><img src=\"images\/carousel\/Beefeater.jpg\" alt=\"Beefeater: Who goes there?\" width=\"167\" height=\"167\" class=\"grey_border\"\/>";
	strVar += "					<div class=\"white capture\">Who goes there?<\/div>";
	strVar += "					<\/li>";
	strVar += "					<li><img src=\"images\/carousel\/Captain%20Hook.jpg\" alt=\"Captain Hook: Belay there, Peter Pan!\" width=\"167\" height=\"167\" class=\"blue_border\"\/>";
	strVar += "					<div class=\"blue capture small\">Belay there, Peter Pan!<\/div>";
	strVar += "					<\/li>";
	strVar += "					<li><img src=\"images\/carousel\/Controller.jpg\" alt=\"Fat Controller: All aboard!\" width=\"167\" height=\"167\"  class=\"grey_border\"\/>";
	strVar += "					<div class=\"white capture\">All aboard!<\/div>";
	strVar += "					<\/li>";
	strVar += "					<li><img src=\"images\/carousel\/Egghead.jpg\" alt=\"Egghead: You probably think I’m cracked!\" width=\"167\" height=\"167\"  class=\"blue_border\"\/>";
	strVar += "					<div class=\"blue capture small\">You probably think I'm cracked!<\/div>";
	strVar += "					<\/li>";
	strVar += "					<li><img src=\"images\/carousel\/Father%20Christmas.jpg\" alt=\"Father Christmas: Ho, ho, ho...\" width=\"167\" height=\"167\" class=\"grey_border\"\/>";
	strVar += "					<div class=\"white capture\">Ho, ho, ho...<\/div>";
	strVar += "					<\/li>";
	strVar += "					<li><img src=\"images\/carousel\/MC.jpg\" alt=\"MC: My Lords, Ladies, Gentlemen...\" width=\"167\" height=\"167\"  class=\"blue_border\"\/>";
	strVar += "					<div class=\"blue capture small\">My Lords, Ladies, Gentlemen...<\/div>";
	strVar += "					<\/li>";
	strVar += "					<li><img src=\"images\/carousel\/Napoleon.jpg\" alt=\"Napoleon: Kiss me, Hardy!\" width=\"167\" height=\"167\"  class=\"grey_border\"\/>";
	strVar += "					<div class=\"white capture\">Kiss me, Hardy!<\/div>";
	strVar += "					<\/li> ";
	strVar += "					<li><img src=\"images\/carousel\/Penguin.jpg\" alt=\"Penguin: Where’s that caped crusader?\" width=\"167\" height=\"167\"  class=\"blue_border\"\/>";
	strVar += "					<div class=\"blue capture small\">Where's that caped crusader?<\/div>";
	strVar += "					<\/li>";
	strVar += "					<li><img src=\"images\/carousel\/Policeman.jpg\" alt=\"Policeman: ‘elllo, ‘ello, ‘ello...\" width=\"167\" height=\"167\"  class=\"grey_border\"\/>";
	strVar += "					<div class=\"white capture\">'elllo, 'ello, 'ello...<\/div>";
	strVar += "					<\/li> ";
	strVar += "					<li><img src=\"images\/carousel\/Shrek.jpg\" alt=\"Shrek: Hello donkey!\" width=\"167\" height=\"167\"  class=\"blue_border\"\/>";
	strVar += "					<div class=\"blue capture\">Hello donkey!<\/div>";
	strVar += "					<\/li> ";
	strVar += "					<li><img src=\"images\/carousel\/CaptainM.jpg\" alt=\"Gather round, gather round...\" width=\"167\" height=\"167\"  class=\"grey_border\"\/>";
	strVar += "					<div class=\"white capture small\">Gather round, gather round...<\/div>";
	strVar += "					<\/li> ";
	strVar += "					<li><img src=\"images\/carousel\/JohnBull.jpg\" alt=\"Rule Britannia\" width=\"167\" height=\"167\"  class=\"blue_border\"\/>";
	strVar += "					<div class=\"blue capture\">Rule Britannia<\/div>";
	strVar += "					<\/li> ";
	strVar += "					<li><img src=\"images\/carousel\/SeasideSid.jpg\" alt=\"Watch the birdie!\" width=\"167\" height=\"167\"  class=\"grey_border\"\/>";
	strVar += "					<div class=\"white capture\">Watch the birdie!<\/div>";
	strVar += "					<\/li> ";
	strVar += "					<li><img src=\"images\/carousel\/StGeorge.jpg\" alt=\"Have you seen a dragon?\" width=\"167\" height=\"167\"  class=\"blue_border\"\/>";
	strVar += "					<div class=\"blue capture small\">Have you seen a dragon?<\/div>";
	strVar += "					<\/li> ";
	strVar += "					<li><img src=\"images\/carousel\/Jester.jpg\" alt=\"Hey, nonny nonny...\" width=\"167\" height=\"167\"  class=\"grey_border\"\/>";
	strVar += "					<div class=\"white capture\">Hey, nonny nonny...<\/div>";
	strVar += "					<\/li> ";
	strVar += "					<li><img src=\"images\/carousel\/Cupid.jpg\" alt=\"Love is in the air!\" width=\"167\" height=\"167\"  class=\"blue_border\"\/>";
	strVar += "					<div class=\"blue capture small\">Love is in the air!<\/div>";
	strVar += "					<\/li> ";
	strVar += "					<li><img src=\"images\/carousel\/DoctorW.jpg\" alt=\"My dear Holmes...\" width=\"167\" height=\"167\"  class=\"grey_border\"\/>";
	strVar += "					<div class=\"white capture\">My dear Holmes...<\/div>";
	strVar += "					<\/li> ";
	strVar += "					<li><img src=\"images\/carousel\/Zidler.jpg\" alt=\"Welcome to Moulin Rouge!\" width=\"167\" height=\"167\"  class=\"blue_border\"\/>";
	strVar += "					<div class=\"blue capture small\">Welcome to Moulin Rouge!<\/div>";
	strVar += "					<\/li> ";
	strVar += "					<li><img src=\"images\/carousel\/Bunny.jpg\" alt=\"I'm late, I'm late...\" width=\"167\" height=\"167\"  class=\"grey_border\"\/>";
	strVar += "					<div class=\"white capture\">I'm late, I'm late...<\/div>";
	strVar += "					<\/li> ";
	strVar += "					<li><img src=\"images\/carousel\/Hagrid.jpg\" alt=\"Now then young 'arry...\" width=\"167\" height=\"167\"  class=\"blue_border\"\/>";
	strVar += "					<div class=\"blue capture small\">Now then young 'arry...<\/div>";
	strVar += "					<\/li> ";
	strVar += "					<li><img src=\"images\/carousel\/Henry.jpg\" alt=\"Off with their heads!\" width=\"167\" height=\"167\"  class=\"grey_border\"\/>";
	strVar += "					<div class=\"white capture\">Off with their heads!<\/div>";
	strVar += "					<\/li> ";
	strVar += "				<\/ul>";
	strVar += "";
	document.getElementById('carousel').innerHTML=strVar;
	jQuery(document).ready(function() {
    jQuery('#mycarousel').jcarousel({
									auto:3, 
									wrap: 'last',
        							initCallback: mycarousel_initCallback
									});
});
}

