var $ = jQuery.noConflict();
$(function(){
	$('#menu-bot').hide();
	$(".trig").click(function(){
		$('#menu-bot').slideToggle(function(){
			if( $('#menu-bot').css('display') == "block"){
				$(".trig").html("Hide Info");
			} else {
				$(".trig").html("Info");
			}
				$.scrollTo(
				$('#menu-bot'),{
				speed: 1000
				}
				);
		});
	});
	
	$('.close span').click(function(){
		$('#menu-bot').hide();
		$(".trig").html("Info");
	});
	
});