$(document).ready(function(){
	$("#bottom").hide();
	$(".pop").click(function(){
	 if(document.getElementById('bottom').style.display == "none"){
		$("#bottom").show();
	}else{
			$("#bottom").hide();	
		}
    });	
}); 

