// JavaScript Document
	Shadowbox.init({
		enableKeys : true,
		language:   "en",
		players:    ["img","html","iframe","swf","flv"]
	});

	function abrir(img){
		
	Shadowbox.open({
			content:    img,/*
			title:		"titulo",
			width :		"500",
			height:		"500",*/
			player:     "img"
		});
	
	}

	function abrir3(img){
		
	Shadowbox.open({
			content:    img,
			title:		"",
			width :		"520",
			height:		"1000",
			player:     "iframe"
		});
	
	}
	
	function abrirURL(url){
		
	Shadowbox.open({
			content:    url,
			player:     "iframe",
			width:		"800"/*,
			height:		"700"*/
		});
	
	}
	
	function mapa(){
		
	Shadowbox.open({
			content:    "mapa.php",
			player:     "iframe",
			width:		"858",
			height:		"307"
		});
	
	}
	
	function abrirSWF(swf){
		
	Shadowbox.open({
			content:    swf,
			player:     "swf",
			width:		"700",
			height:		"600"
		});
	
	}
	
	function abrirFLV(img){
		
	Shadowbox.open({
			content:    img,
			player:     "flv",
			handleUnsupported: "link"
		});
	
	}

	Shadowbox.init();

