var count = 0;
var slideCount = 0;

$(document).ready(function () {
	slideCount = $('#slideshow li').length;
	//show the first title on page load...
	$($('#slideshow h2')[count]).fadeIn(1000);
	if(slideCount > 1) setTimeout('featureSlide()',1000);
});

featureSlide = function() {
	$($('#slideshow h2')[count]).fadeOut(1000,function() {
		$($('#slideshow li')[count]).fadeOut(1000);
		count++;
		if(count>=slideCount) count = 0;
		$($('#slideshow li')[count]).fadeIn(1000, function() {
			$($('#slideshow h2')[count]).fadeIn(1000, function() {
				setTimeout('featureSlide()',3000);
			});
		});
	});

}

