//var $x = jQuery.noConflict();
$(document).ready(function(){
	$("#menu-foot").hide();
	$(".sub").click(function(){
		if(document.getElementById('menu-foot').style.display == "none"){
			$("#menu-foot").slideToggle(function(){
				$.scrollTo(
				$('#menu-foot'),{
				speed: 1000
				}
				);
			});
			
		}else{
			$("#menu-foot").hide(function(){
			});
		}
    });	
}); 

