$(function(){	
	var imgpag=0;
	$("#banner a").first().show();
	function ad()
	{
		if(imgpag>6){
			imgpag=0;
		}else{
			imgpag++;
		}
		if($("#banner a").eq(imgpag)==null)
		{
			imgpag=0;
		}
		$("#banner a").eq(imgpag).siblings().hide();
		$("#banner a").eq(imgpag).fadeIn("slow");
	};
	setInterval(ad,4000);
})
