startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}
window.onload=startList; 

function WriteEmailAddress(strDisplayText, strSubject)
{
        var strHTML;
        
        strHTML="<a href='mailto:"+"co"+"mm"+"en"+"ts"+"@"+"bu"+"g-"+"tr"+"ac"+"ki"+"ng"+"."+"in"+"fo";
        
        if(strSubject){
                strHTML+="?Subject="+strSubject;
        }
        strHTML+="'>" + strDisplayText + "</a>";
        
        document.write(strHTML);
}

function CenterMP()
{
        var objMP=document.getElementById("MarketPlace");
        var objLinks=document.getElementById("Links");
        var objGoo=document.getElementById("GoogleAd");
        var objNav=document.getElementById("Navigate");
        var objban=document.getElementById("banner");
        var objW=document.getElementById("Welcome");

        if( document.all ) {
                objMP.style.left=objGoo.offsetWidth+20;

        } else {
                objMP.style.left=objGoo.offsetWidth+10; }
                
        objMP.style.width=objLinks.offsetWidth+10;
        objMP.style.top=objNav.offsetHeight+objW.offsetHeight+(objban.offsetHeight*2)+objLinks.offsetHeight-10; 

        startList();    
        
}

 

