$(function(){
	var totalBanner=$('#content a').length;
	var banner=1;
	next();
	var timer=setInterval(next,5000);

	function next(){
		$("#content a[id!='"+banner+"']").fadeOut("slow");
		$("#content a[id='"+banner+"']").fadeIn("slow");
		banner=banner==totalBanner?1:banner+1;
	}
	
	$("#content li").click(function(){
		banner=parseInt($(this).html());
		clearInterval(timer);
		timer=setInterval(next,5000);
		next();
	});
	/*$("#content").hover(
		function(){
			$("#content ul").show();
		},
		function(){
			$("#content ul").hide();
		}
	);*/
});
