var i; //this holds slide position for the auto-slide
$(function() {
		$('#slideshow img').css({position:'absolute',left:0,top:0}); 
		$('#HomeFeatNav li.One').click(function() {
				$('#slideshow img:eq(0)').fadeIn('slow');
				fadeout(1,2); 
				clearInterval(anim); 
		}); 
		$('#HomeFeatNav li.Two').click(function() {
				fadeout(0,2); 
				$('#slideshow img:eq(1)').fadeIn('slow');
				clearInterval(anim); 
		}); 
		$('#HomeFeatNav li.Three').click(function() {
				fadeout(0,1); 
				$('#slideshow img:eq(2)').fadeIn('slow');
				clearInterval(anim); 
		}); 
		i = 1; 
		var anim = setInterval('slide()', 10000);
});

function slide(){
		if (i == 0) { 
			fadeout(1,2);
			$('#slideshow img:eq(0)').fadeIn('slow');
			i = 1; 
		}	else if (i == 1) { 
			fadeout(0,2); 
			$('#slideshow img:eq(1)').fadeIn('slow');
			i = 2;
		} else if (i == 2) { 
			fadeout(0,1); 
			$('#slideshow img:eq(2)').fadeIn('slow');
			i = 0;
		}		
}
 
function fadeout(num1, num2){
	$('#slideshow img:eq('+ num1 + ')').fadeOut();
	$('#slideshow img:eq('+ num2 + ')').fadeOut();
}
