 $(document).ready(function () {
      var htm  = "<table border='0' width='100%' height='100%'>\n";
          htm += "<tr><td align='center'>\n";
          htm += "<img src='imagens/iCarregando.gif'>\n";
          htm += "</td></tr>\n";
          htm += "</table>\n";
      $('#menu a img').mouseover(function () { $(this).fadeTo('fast', 0.33); });
      $('#menu a img').mouseout(function ()  { $(this).fadeTo('slow', 1); });
      $('#menu a').click(function () {
      });

      $('#destaque a img').fadeTo('fast', 0.70);
      $('#destaque a img').mouseover(function () { $(this).fadeTo('normal', 1); });
      $('#destaque a img').mouseout(function ()  { $(this).fadeTo('slow', 0.70); });

    $(function() {
        $('#pInicial .abrir').lightBox();
    });

    $('#pInicial ul img').fadeTo('fast', 0.70);
    $('#pInicial ul img').mouseover(function () {
       $(this).fadeTo('normal', 1);
    });
    $('#pInicial ul img').mouseout(function ()  {
       $(this).fadeTo('slow', 0.70);
    });

    $('#avancar').click(function () {
        var left = $('#pInicial ul').css('margin-left');
        if(parseInt(left.replace('px', '')) > -7300)
           $('#pInicial ul').animate({marginLeft: '-=561px'}, 300);
        else
           $('#pInicial ul').animate({marginLeft: '0px'}, 250);
        return false;
    });
    $('#voltar').click(function () {
        var left = $('#pInicial ul').css('margin-left');
        if(parseInt(left.replace('px', '')) < 0)
           $('#pInicial ul').animate({marginLeft: '+=561px'}, 300);
        else
           $('#pInicial ul').animate({marginLeft: '-7850'}, 250);
        return false;
    })

 });

