$(document).ready(function() {
	$ativo = null;
	$(".marcas li a").click(function() {
		if($ativo == $(this))
			return false;
		else 
			$ativo = $(this);
		$(".marcas li").removeClass('selecionado');
		$(this).blur().parent().addClass('selecionado');
		var $text = $(this).attr('href');
		$(".interno.products").attr('class', 'interno products carregando ' + $text);
		$(".produtos").html('');
		$.post('/products/getcategories', {brand_id: $(this).attr('rev')}, function(data) {
			$(".interno.products").removeClass('carregando');
			var $a = $(data).superfish({ 
			    animation: {height: 'show'},
			    delay: 1200
			}).fadeTo(0, 0.90);
			$(".produtos").html($a);
		});
		return false;
	});
	if($.url.attr('anchor')) {
		$(".marcas li a[href=" + $.url.attr('anchor') + "]").trigger('click');
	} else {
		$(".marcas li a").eq(0).trigger('click');
	}
	
});