$(document).ready(function(){
	$('ul.sub a').click(function(){
		if ($(this).parent().children('ul').length) {
			$(this).parent().children('ul').slideToggle(300);
			$(this).parent().toggleClass('active');
			return false;
		}
	});
	
});
