var $x = jQuery.noConflict();
$x(document).ready(function(){
	$x("#footer-menu").hide();
	$x(".sub").click(function(){
		if(document.getElementById('footer-menu').style.display == "none"){
			$x("#footer-menu").fadeIn(function(){
			});
			
		}else{
			$x("#footer-menu").fadeOut(function(){
			});
			
		}
    });	
}); 

