var $j = jQuery.noConflict();
$j(function(){
		$j('#menu_wrap').hide();
		$j('.more').click(function(){
			$j('#menu_wrap').slideToggle(function(){
				if(document.getElementById('menu_wrap').style.display == "block"){
					$j('.more').text("Hide More");
					$j.scrollTo(
						$j('#menu_wrap'),{
						speed: 1000
						}
					);
				} else {
					$j('.more').text("More");
				}
			});

		});

});
