function irSeccion(v){
	var pagina="poceros-madrid-"+v+".php";
	document.location.href=pagina;
}

var centralita={
		pag:'',
		posNumTlf:0,
		numTlf: new Array('91 464 03 99','914 64 03 99','91 464 03 99','914 64 03 99','91 464 03 99','914 64 03 99','91 464 03 99','914 64 03 99','91 464 03 99','914 64 03 99','91 464 03 99','914 64 03 99','91 464 03 99','914 64 03 99'),
		conex:function(v){
			$.post('plantillas/pag/centralita.php',{name:v},function(data){
				centralita.pag=data;
				centralita.show();
			});
		},
		msgOut:function(){
			$('#centralita-texto').fadeOut(600,centralita.changeMsg);
		},
		changeMsg:function(){
			centralita.posNumTlf=(centralita.posNumTlf>centralita.numTlf.length)?0:centralita.posNumTlf;
			$('#centralita-texto').html('<span style="font-size:16px;"><br />Contacte con nuestra Central de Avisos<br />para notificar averías, solicitar presupuestos,...<br /><strong>Central de Avisos 24 horas</strong><br />(6 líneas a su disposición)</span><br /><br /><img src="images/tlf.gif" width="126" height="86" style="vertical-align:middle;" /> <span style="font-size:45px;color:#ed1c24;">'+centralita.numTlf[centralita.posNumTlf]+'</span>');
			++centralita.posNumTlf;
			$('#centralita-texto').fadeIn(800);
		},
		show:function(){
			Shadowbox.open({content:centralita.pag,player:'html',title:'',width:450, height:350});
			$('#sb-nav-close').css('visibility','hidden');
			setTimeout(function(){$("#centralita-texto").fadeOut(900).fadeIn(900).fadeOut(600).fadeIn(600);},1500); 
		  	setTimeout(this.msgOut,3500);
		}	
}
