$(document).ready(function(){
	$('#footer-nav').hide();
	$(".guides").click(function(){
		if(document.getElementById('footer-nav').style.display == "none"){
			$('#footer-nav').fadeIn();
		}else{
			$('#footer-nav').fadeOut();
		}
    });	
});