var $n = jQuery.noConflict();

$n(document).ready(function() {
	$n('li:has(> ul) > a').click(function() {
   		$n(this).parent().children('.sub-menu').slideToggle('medium');
   		return false;
 	});
 });
