﻿$(document).ready(function(){   
$("#txtSearchTerm").focus(function(){
if($(this).val()=="Enter Search Term")
$(this).val("");
 $("#LinkNewsText").mouseover(function () {
    $(this).css("text-decoration","underline");
  });
  $("#LinkNewsText").mouseout(function () {
    $(this).css("text-decoration","none");
});
});
         
                     
              //       $.get("HitCounter.aspx");                  
           //$.post("PageCounter.ashx", {context: "NO IP"});                                       
           //$("#imgLogo").slideUp(300).delay(1000);
            //$("#imgLogo").fadeIn(700);          
             //$("#imgLogo").toggle(); 
        
}); 