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

		});

});

