/**
 * @author matius
 */
$(document).ready (function () {

	$("#menu_categories .menuTitle").click(function() {
		$(this).next().toggle("slow");
	}).next().hide();
	
});


