﻿// JScript File
function clearText() {
var txt = document.getElementById("ctl00_ContentPlaceHolder1_txtSearch")
    if(txt.value=='Enter Keywords'){
        txt.value = '';
    }
}

function addText() {
var txt = document.getElementById("ctl00_ContentPlaceHolder1_txtSearch")
    if(txt.value==''){
        txt.value = 'Enter Keywords';
    }
}


$(document).ready(function(){
 
   // $('.down-list').width($('.dropdown-menu').width()-2);
    $('.navbutton').hover(
      function () {
        $(this).addClass('navbutton_nodd_on'); 
      }, 
      function () {
        $(this).removeClass('navbutton_nodd_on');
      }
    );
    
    $('.navbutton2').hover(
      function () {
        $(this).addClass('navbutton_nodd_on'); 
      }, 
      function () {
        $(this).removeClass('navbutton_nodd_on');
      }
    );
 
    $('.dropdown-menu').hover(
      function () {
        $('.navbutton-dd', this).addClass('navbutton_on'); 
        $('.down-list', this).slideDown(400);
      }, 
      function () {
        obj = this;
        $('.down-list', this).slideUp(400, function(){ $('.navbutton-dd', obj).removeClass('navbutton_on'); });
      }
    );
 
}); 



