$(function() {
	$('.linea').hide();
	$('.linkBanner').click(function(){
			$texto = $(this).text();
			if($texto=='[ Cerrar ]'){
				$('.publica').hide('slow');
				//$('.Banner').hide('slow');
				$(this).text('[ Abrir ]').attr('title','Abrir publicidad');
				$('.linea').show('slow');
			}else{
				$('.publica').show('slow');	
				$('.linea').hide();
				$(this).text('[ Cerrar ]').attr('title','Ocultar publicidad');;
			}			
	});	
	//$('.publica').fadeOut(10000).hide('slow');//.fadeIn(800).fadeOut(500).fadeIn(500).fadeOut(300);}, 3000);	
});

