 /* in the rss feed control show the description */
  
 $(function() {
   
/*   $("input.help")
   {
    $(this).click( function()
    {
        $("div.helptext").fadeIn(150);
    });
   }
*/

   $(".helptext").fadeIn(500);
    
   $(".helptext")
   {
    $(this).click( function()
    {
        $(".helptext").fadeOut(500);
    });
    
   };

   
   $("#marge .comp dl dt").mouseover(function(e) {
     $(this).next().fadeIn(10);
   }
   ).mouseout( function(){
     $(this).next().fadeOut(100)
   });
   
 
 });
 /*
 $("#content div").load(function () {
      $("#content div").css("color","green");
      $("span.tooltip").append("!!!!!!");
      $("span.tooltip").mouseover(function(e) 
      {
        $(this).next().fadeIn(350);
      }
      ).mouseout( function()
      {
        $(this).next().fadeOut(350)
      });
    });
    */

function simple_tooltip(target_items, name){
 $(target_items).each(function(i){
		$("body").append("<div class='"+name+"' id='"+name+i+"'><p>"+$(this).attr('title')+"</p></div>");
		var my_tooltip = $("#"+name+i);

		if($(this).attr("title") != "" && $(this).attr("title") != "undefined" ){

		$(this).removeAttr("title").mouseover(function(){
					my_tooltip.css({opacity:0.8, display:"none"}).fadeIn(400);
		}).mousemove(function(kmouse){
				var border_top = $(window).scrollTop();
				var border_right = $(window).width();
				var left_pos;
				var top_pos;
				var offset = 15;
				if(border_right - (offset *2) >= my_tooltip.width() + kmouse.pageX){
					left_pos = kmouse.pageX+offset;
					} else{
					left_pos = border_right-my_tooltip.width()-offset;
					}

				if(border_top + (offset *2)>= kmouse.pageY - my_tooltip.height()){
					top_pos = border_top +offset;
					} else{
					top_pos = kmouse.pageY-my_tooltip.height()-offset;
					}	
                
				my_tooltip.css({left:left_pos, top:top_pos});
		}).mouseout(function(){
				my_tooltip.css({left:"-9999px"});
		});

		}

	});
}

$(document).ready(function(){
//	 simple_tooltip("input","tooltip");
//	 simple_tooltip("textarea","tooltip");
});    