var $x = jQuery.noConflict();
$x(document).ready(function(){

/* In Memory of Eloi  */
/*
	$x("#menu-foot").hide();
	$x(".sub").click(function(){
		if(document.getElementById('menu-foot').style.display == "none"){
			$x("#menu-foot").slideToggle(function(){
				$x.scrollTo(
				$x('#menu-foot'),{
				speed: 1000
				});
			});
			$x(".sub").html("More");
		}else{
			$x("#menu-foot").fadeOut(function(){
			});
			$x(".sub").html("More");
		}
    });	*/
}); 

