$(document).ready(function(){

  //hide toolbar and make visible the 'show' button
	$("span.downarr a").click(function() {
    $(".barholder").slideToggle("fast");
    $("#toolbarbut").fadeIn("slow");    
  });
  
  //show toolbar and hide the 'show' button
  $("p.showbar a").click(function() {
    $(".barholder").slideToggle("fast");
    $("#toolbarbut").fadeOut();
	return false;  
  }); 
  
  //don't jump to #id link anchor 
  $("span.downarr a, span.showbar a").click(function() {
   return false;                                         
	});
		
});
