$(document).ready(function() {

$('.mlink').click(function(e) {
	$('.mainlinks .sublinks').hide('slow', function() {
	 });
	if($(this).next()){
		e.preventDefault();
		$(this).next().toggle('slow', function() {
		 });
	}

});

$('.slink').click(function(e) {
	
	$('.mainlinks .sublinks .subsublinks').hide('slow', function() {
	 });
	
	if($(this).next()){
		e.preventDefault();
		$(this).next().toggle('slow', function() {
		 });
	}
});


});
