


$(function()
{ 
// 		mostraFoto()
})

  
function mostraFoto(fotoID){
	$('#verFoto').dialog('destroy').remove();

	$('<div id="verFoto">').show('slide').html('<img src="../temas/abertura/fotos/'+fotoID+'">').dialog({
  	draggable: true,
 		maximize: false,
 		position: 'top',
    modal: true,
		title: "Marques - Cidadão Honorário - MG",
    overlay:{background:'#000000', opacity:0.8} ,
	 	closable: true,
    width: 770,
    height: 530,
		buttons: {
    	'Fechar': function(){
    		$(this).dialog('close')
			}
		}
	});

}
