function HighlightTemplateLink(linkID)
{
    $(linkID).addClass('activeLink');
}

$(document).ready(function()
{
    $('#ni14 li li li:last-child a').each(function()
    {
        $(this).attr('style', 'background-image:none !important;');
    });
    
	document.getElementById("ctl00_ctl06_txtModuleSearchText").onfocus = function(){  
		if(this.value == "Search") {
			this.value = "";
			this.style.color = "black";
		}
	};  
	document.getElementById("ctl00_ctl06_txtModuleSearchText").onblur = function(){  
		if(this.value == "") {
			this.value = "Search";
			this.style.color = "#6D6F72";
		}
	}; 
});
