function abrirShadow(num)
{	
	var tit='';
	var cont='';
	
	switch (num)
	{
		case 1:
			tit='URBANIZACIONES';
			cont='listado1.html';
			break;
		case 2:
			tit='CARRETERAS';
			cont='listado2.html';
			break;
		case 3:
			tit='AEROPUERTOS';
			cont='listado3.html';
			break;
		case 4:
			tit='INSTALACIONES DEPORTIVAS';
			cont='listado4.html';
			break;
		case 5:
			tit='VIAS PUBLICAS';
			cont='listado5.html';
			break;
		case 6:
			tit='CONSERVACIONES';
			cont='listado6.html';
			break;
		case 7:
			tit='EDIFICACIÓN Y OBRAS SINGULARES';
			cont='listado7.html';
			break;
		case 23:
			tit='EN CIFRAS';
			cont='cifras.html';
			break;
	}
	
	Shadowbox.open({
		player:     'iframe',
        content:    cont,
		height:     700,
        width:      550, 
		title: tit

    });
}

$(document).ready(function() {
var options = {
viewportPadding: 20 ,
	overlayColor: "#FF9F00", 
	overlayOpacity: 0.5,
	players:  ["html"]
}

Shadowbox.init(options);





});
