$(document).ready(function() {
	$("#mainlinks li.has_sub ul:not(.opened)").hide();
	$("#mainlinks li.has_sub ul.opened").prev().children('span').toggle();
	
	$(".has_sub a").click(function() {
		$(this).next().slideToggle('fast');
		$(this).children('span').toggle();
	});
});
