var onloadQueue = new Array();

window.onload = function () {
    for (var i in onloadQueue) {
        onloadQueue[i].call();
    }
    
}
function show_birthday(birthday)
{
	var elem1=document.getElementById(birthday);

	if(elem1) 
	{
		if(elem1.style.display!='block')
			elem1.style.display='block'; 
		else elem1.style.display='none'; 
	}
}

$(document).ready(function(){
  $(".tooltip_run").live('mousemove',function(){
    $("span.active").each(function(){
    $(this).simpletip({
     fixed: true, 
     focus: true,
     position: 'right',
     offset: [-23, 22],
     content:$("#tool_" + $(this).attr('id')).html()
    }); 

  });
  });
});
