/**
 * Inicia o acordion na cve.
 */
function accordion(){
   $('.accordion li h3').click(function(){if($(this).next().is('.aberto')){return false;}else{$('.accordion li h3').next().hide('slow').removeAttr('class');$(this).next().toggle('slow').attr('class','aberto');}
   return false;}).next().hide();
}

var _gaq = _gaq || [];
	_gaq.push(['_setAccount', 'UA-7469931-41']);
	_gaq.push(['_trackPageview']);
	
	(function() {
	var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
	ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
	var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();

$(document).ready(function(){
   accordion();
});
