function abrirPopup(url){
window.open(url, "nomedopopup","scrollbars=no ,width=750, height=400 , top=0 , left=0");
}

/*function abrirCardapio(){
	if ($("#cardapio").is(":hidden")){
		$("#cardapio").slideDown('slow');
	}
	else{
		$("#cardapio").slideUp('slow');
	}	
}*/

jQuery.fn.toggleText = function(a,b) {
return   this.html(this.html().replace(new RegExp("("+a+"|"+b+")"),function(x){return(x==a)?b:a;}));
}

$(document).ready(function(){
	$("#conteudo").fadeIn('slow');
						   
	$('.tgl').before('<div id="ver_cardapio">Ver o card&aacute;pio</div>');
	$('.tgl').css('display', 'none')
	$('div', '#box-toggle').click(function() {
		$(this).next().slideToggle('slow')
		.siblings('.tgl:visible').slideToggle('fast');
	
		$(this).toggleText('Ver','Ocultar')
		.siblings('div').next('.tgl:visible').prev()
		.toggleText('Ver','Ocultar')
	});
});

$(function() {
        $('#fotos_restaurante a').lightBox();
		$('#galeria_pesqueiro a').lightBox();
		$('#fotos_diversas a').lightBox();
});


