var change = 1;

if(change == 1)
{
	function slideShow(speed)
	{
		//append a LI item to the UL list for displaying caption
		$('ul.slideshow').append('<li id="slideshow-caption" class="caption"><div class="slideshow-caption-container"><h3></h3><p></p></div></li>');
		$('ul.slideshow li').css({opacity: 0.0});
		$('ul.slideshow li:first').css({opacity: 1.0});
		/*$('#slideshow-caption').css({opacity: 0.9, bottom:0});

		$('#slideshow-caption h3').html($('ul.slideshow a:first').find('img').attr('title'));
		$('#slideshow-caption p').html($('ul.slideshow a:first').find('img').attr('alt'));*/

		setTimeout(function()
		{
			timer = setInterval('gallery()', speed);

			/*$('ul.slideshow').hover(
				function ()
				{
					clearInterval(timer);
				},
				function ()
				{
					timer = setInterval('gallery()', speed);
				}
			);*/
		}, 500);
	}

	function gallery()
	{
		var current = ($('ul.slideshow li.show')?  $('ul.slideshow li.show') : $('#ul.slideshow li:first'));
		var next = ((current.next().length) ? ((current.next().attr('id') == 'slideshow-caption')? $('ul.slideshow li:first') :current.next()) : $('ul.slideshow li:first'));
		//var title = next.find('img').attr('title');	
		//var desc = next.find('img').attr('alt');	

		next.css({opacity: 0.0}).addClass('show').animate({opacity: 1.0}, 500);

		/*$('#slideshow-caption').animate({bottom:-70}, 300, function ()
		{
				//Display the content
				$('#slideshow-caption h3').html(title);
				$('#slideshow-caption p').html(desc);				
				$('#slideshow-caption').animate({bottom:0}, 500);	
		});*/		

		current.animate({opacity: 0.0}, 500).removeClass('show');
	}

	el = null;
	el = $("div.rightMainStatement").find("object");

	if(typeof(el) == "object")
	{
		// We haz object. Replace it with slideshow.
		el.replaceWith('<div id="replace-object">&nbsp;</div>');
		$('#replace-object').replaceWith('<div class="slideshow_container"><ul class="slideshow"><li class="show"><img src="http://jdpipes.net/cdn/slides/slide_1.gif" title="" alt="" /></li><li title="Click here to find out more about our House Building Products and Services"><a href="http://www.jdpipes.co.uk/market-sectors/house-building.html" title="Click here to find out more about our House Building Products and Services"><img src="http://jdpipes.net/cdn/slides/slide_2.jpg" title="" alt="" /></a></li><li title="Click here to find out more about our Commercial, Public and Industrial Building Products and Services"><a href="http://www.jdpipes.co.uk/market-sectors/commercial-public-and-industrial.html" title="Click here to find out more about our Commercial, Public and Industrial Building Products and Services"><img src="http://jdpipes.net/cdn/slides/slide_3.jpg" title="" alt="" /></a></li><li title="Click here to find out more about our Civil Engineering and Utilities Products and Services"><a href="http://www.jdpipes.co.uk/market-sectors/civil-engineering-and-utilities.html" title="Click here to find out more about our Civil Engineering and Utilities Products and Services"><img src="http://jdpipes.net/cdn/slides/slide_4.jpg" title="" alt="" /></a></li><li title="Click here to find out more about our Sports and Recreation Parks Products and Services"><a href="http://www.jdpipes.co.uk/market-sectors/sports-and-recreation-parks.html" title="Click here to find out more about our Sports and Recreation Parks Products and Services"><img src="http://jdpipes.net/cdn/slides/slide_5.jpg" title="" alt="" /></a></li><li title="Click here to find out more about our Agriculture, Horticulture and Aquaculture Products and Services"><a href="http://www.jdpipes.co.uk/market-sectors/agriculture-horticulture-and-aquaculture.html" title="Click here to find out more about our Agriculture, Horticulture and Aquaculture Products and Services"><img src="http://jdpipes.net/cdn/slides/slide_6.jpg" title="" alt="" /></a></li><li><img src="http://jdpipes.net/cdn/slides/slide_7.jpg" title="" alt="" /></li></ul></div>');

		slideShow(10000);
	}
}
