// once the DOM is loaded
$(document).ready(function(){

    // when the 'listen' button is clicked
	$(".nav_home a").click(function(){
		
	   $("#slideZone").slideToggle();
	   // prevent the default action of the link
	   return false;
	});
		
});
