function iniAccordeon() {
	
	// Parse the current page's querystring
	var qs = new Querystring();	
	var doc = qs.get("doc");
	
	$(".toggler").each(function(){
		if ($(this).attr('id') != doc) $(this).next().slideToggle();
		$(this).click(function(){
			$(this).next().slideToggle('slow');
		});
	 });
}

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

