var idler=["t"];

var siniflar=["encok"];

var bilgi=new Object;

bilgi.aktifNesne=null;

bilgi.pencere=null;

bilgi.mesaj=null;

document.onload=bilgiBaslat();
function bilgiBaslat(){
document.onmouseover=bilgiGoster;
document.onmouseout=bilgiYoket}function bilgiGoster(o){
if(!o){
o=window.event}nesne=document.all?o.srcElement:o.target;
if(in_array(nesne.id,idler)||in_array(nesne.className,siniflar)){
bilgiPenceresi(o);
bilgi.aktifNesne=nesne;
bilgi.mesaj=nesne.title;
nesne.title="";
if(document.all){
nesne.attachEvent("onmousemove",bilgiPenceresi)}else{
nesne.addEventListener("mousemove",bilgiPenceresi,false)}}}function bilgiPenceresi(o){
if(!o){
o=window.event}nesne=document.all?o.srcElement:o.target;
if(bilgi.pencere==null){
bilgi.pencere=document.createElement("div");
document.body.appendChild(bilgi.pencere);
bilgi.pencere.className="yardim"}bilgi.pencere.innerHTML=bilgi.mesaj;
with(bilgi.pencere.style){
left=o.clientX+10+"px";
top=o.clientY+10+"px";
position="fixed"}}function bilgiYoket(){
if(bilgi.aktifNesne!=null){
pencere=bilgi.pencere;
bilgi.pencere=null;
pencere.parentNode.removeChild(pencere);
bilgi.aktifNesne.title=bilgi.mesaj;
bilgi.aktifNesne=null}}function in_array(ne,nerde){
for(i=0;
i<nerde.length;
i++){
if(ne==nerde[i])return true}return false}
