﻿var sitemap=0;
function siteMapOpen() {
  if(  sitemap==0){
   document.getElementById("sitemap").style.display = "block";
   sitemap=1;
   }
   else
   {
   document.getElementById("sitemap").style.display = "none";
   sitemap=0;
   }
   //alert(sitemap);
}
function siteMapClose() {
    document.getElementById("sitemap").style.display = "none";
}


$(document).ready(function() {
    var tcname = 'edt';
     $('.edt').addClass(tcname).each(function() {
        $(this).val(this.title);
    }).focus(function() {
        if (this.value == this.title)
            $(this).removeClass(tcname).val('');
    }).blur(function() {
        if (this.value == '')
            $(this).addClass(tcname).val(this.title);
    });
});
