  $(document).ready(function() {
  
  	$('#story').hide();
 
  	$('a#story_nav').click(function() {

  		var elem = document.getElementById("story-box");
  		elem.style.position = "relative";
  		elem.style.top = "0";
  		$('#story').toggle();
  		return false;
  		});
  
  $('#close').click(function() { $('#story:visible').hide();});
  $('#content-head').click(function() { $('#story:visible').hide();});
  $('#nav-box').click(function() { $('#story:visible').hide();});
 
  
  });
