$(document).ready(function(){
	$('.tituloCat').toggle(function(){
		$('.tituloCat').siblings('ul').slideUp('fast');
		$(this).parent('span').siblings('ul').slideDown('fast')
		if ($(this).html() == '+' || $(this).html() == '-' ) {
			$(this).html('-');
		}
		window.location = $(this).attr('href');
	}, function(){
		$(this).parent('span').siblings('ul').slideUp('fast')
		if ($(this).html() == '+' || $(this).html() == '-') {
			$(this).html('+');
		}
		window.location = $(this).attr('href');
	})
	
	var url = window.location.href;
	$("#menuSuperior li ul a[href='"+url+"']").addClass('ativoInterno');
	$("#menuSuperior li span a[href='"+url+"']").parent('span').siblings('ul').children('li:first').children('a').addClass('ativoInterno');
	
	$("#menuSuperior li ul a[href='"+url+"']").parent('li').parent('ul').show()
	$("#menuSuperior li ul a[href='"+url+"']").parent('li').parent('ul').prev('span').children('em').html('-')
})

function galeria(img, elem){
	$('#ima').attr({'src' : 'http://pino.tc/wp-content/uploads/'+img+'.jpg'})
	$('.cinzaclaro').removeClass('cinzaclaro');
	$(elem).addClass('cinzaclaro');
}