//Categorias na pagina de lojas
jQuery("document").ready(function () {
	jQuery('#categorias').click(function(){
		jQuery('.categories').toggle();
	});
});
$(document).ready(function(){
	//Animate
	$('.menurel li').mouseover(function(){
		$(this).stop();
		$(this).animate({
			height: 150 + 'px'
		}, 700);
	});
	$('.menurel li').mouseout(function(){
		$('.menurel li').stop();
		$('.menurel li').animate({
			height: 11 + 'px'
		}, 700);
	});
});

			
 

