$ = $j;

$(function() {	
	$('#banner').nivoSlider({
		pauseTime:5000	
	});
	jQuery.validator.messages.required = "";
});

function initMenu() {
  $('#menup ul').hide();
  $('#menup ul.ativo').show();
  $('#menup li a').click(
    function() {
      var checkElement = $(this).next();
      if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
        return false;
        }
      if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
        $('#menup ul:visible').slideUp('normal');
        checkElement.slideDown('normal');
        return false;
        }
      }
    );
  }
$(document).ready(function(){
	initMenu();
	
	//Zoom Produtos
	$('.jqzoom').jqzoom({
        zoomType: 'standard',
        lens:true,
        preloadImages: false,
        alwaysOn:false
    });
});
