/* for removing title from Anchor Tag of header file */

function removetitle(){
     var anchorTag = document.getElementsByTagName("a");
     var i=0, tagCount = anchorTag.length;
     for(i=0;i<tagCount;i++)
     {
           anchorTag[i].title = "";
     }
}

