$(document).ready(function(){
	
  //hide toolbar and make visible the 'show' button
	$("span.downarr a").click(function() {
    $("#toolbar").slideToggle("fast");
    $("#toolbarbut").fadeIn("slow");    
  });
  
  //show toolbar and hide the 'show' button
  $("span.showbar a").click(function() {
    $("#toolbar").slideToggle("slow");
    $("#toolbarbut").fadeOut();    
  });
  
  //show tooltip when the mouse is moved over a list element 
  $("#social li").hover(function() {
		$(this).find("div").fadeIn("fast").show(); //add 'show()'' for IE
    $(this).mouseleave(function () { //hide tooltip when the mouse moves off of the element
        $(this).find("div").hide();
    });
  });
 
//show tooltip when the mouse is moved over a list element 
  $(".downarr").hover(function() {
		//$(this).find("div").fadeIn("fast").show(); //add 'show()'' for IE
		$("#tipminimize").fadeIn("fast").show(); //add 'show()'' for IE
		//alert ("over");
		//alert(this);
    $(this).mouseleave(function () { //hide tooltip when the mouse moves off of the element
        //$(this).find("div").hide();
        $("#tipminimize").hide();
		//alert ("out");
    });
  });
  
  //don't jump to #id link anchor 
  
  $(".delicious, .rss, .stumble, .menutit, span.downarr a, span.showbar a").click(function() {
   return false;                                         
	});
	
 		
});
