function iniAccordeon() {
	$(".toggler").each(function(){
		$(this).next().slideToggle();
		$(this).click(function(){
			$(this).next().slideToggle('slow');
		});
	 });
}

$(document).ready(function() {
	iniMenu();
	iniAccordeon();	
	iniRoundCorners();
});

