/*
 * Cervejaria Nacional 
 * by Fernando Arroyo
 * fernando.arroyo@dialeto.net
 */
 
$(document).ready(function(){
	f = 79;
	last = $('#cardapio h3').attr('title');
	$('.btnDirta a').live('click', function(){
		current = $('#CardapioLista').attr('title');
		if(current == '')
		{
			current = undefined;
		}
		if(current != undefined)
		{
			f = current;
		}
		
		if(f != undefined)
		{
			$.post("http://www.cervejarianacional.com.br/busca-sugestao", { id: f },function(data) {
				$('#CardapioLista').replaceWith(data);
				if(f == last)
				{
					f = 79;
				} else {
					f = f +2;
				}
			});
		}
		return false;
	});
	$('.btnEsqud a').live('click', function(){
		current = $('#CardapioLista').attr('title');
		if(current == '')
		{
			current = undefined;
		}
		if(current != undefined)
		{
			f = current;
		}

		if(f != undefined)
		{
			$.post("http://www.cervejarianacional.com.br/busca-sugestao", { id: f },function(data) {
				$('#CardapioLista').replaceWith(data);
				if(f == 79)
				{
					f = last;
				} else {	
					f = f -2;
				}
			});
		}
		return false;
	});
  if ( $("body").hasClass("home")){
  
 /* if ( typeof( document.getElementById("cardapio") ) != null ) {

    //_- Iniciar Cardápio -
      objCardapio = new Interativo.Cardapio.CriarLista({
          objPai  : ( typeof( document.getElementById("cardapio") ) != null ? document.getElementById("cardapio") : null ) 
         ,urlItens  : "cardapio.php"
         ,limItens  : 4
         ,altLista  : "450px"
         ,objBotao  : [ document.getElementById("cardapio").getElementsByTagName("span").item(0).getElementsByTagName("a").item(0) , document.getElementById("cardapio").getElementsByTagName("span").item(1).getElementsByTagName("a").item(0) ]
      });
      Interativo.Lendas.Exibe(0);
    
  }*/
}});

