$(document).ready(function(){
	
	$("#footer .Nav .sub").click(function(){
		$("#footer .Nav .subNav").hide();
		$(this).next().css("left",$(this).offset().left+"px").toggle();
	});
	
});
