$(document).ready(function(){
	$('#categories_on_fly').hide();
  $("#show_archives").toggle(function() { 
     $("#categories_on_fly").slideDown("medium");
     },
      function() { 
    $("#categories_on_fly").slideUp("medium"); 
   });
   
   $('.special_info').mouseenter(function(e){
     var content_tool = $(this).attr("rel");
     $(this).append('<div class="infotool">' + content_tool + '</div>');
     $('.infotool').css('top', e.pageY + 10 );
     $('.infotool').css('left', e.pageX + 20 );

   }).mousemove(function(e){
     $('.infotool').css('top', e.pageY + 10 );
     $('.infotool').css('left', e.pageX + 20 );
   });

   $('.special_info').mouseleave(function(){
     $('.infotool').remove();
   }); 
   
});
