jQuery(function($){
	$('.conteudo-select').accordion({
		header: 'div.bt-select',
		active: false,
		alwaysOpen: false,
		animated: "bounceslide",
		autoheight: false
	});
		
	$(".listagem-select a").click(function(){
		$(".listagem-select").slideUp("fast");
		$(this.parentNode).prev().prev().html($(this).html());
		$(".conteudo-select").accordion('activate', false);
		window.location = "representantes.php?uf="+$(this).html();
	});
});
