$(document).ready(function()
{
	var kbSearchBoxDefault = "Knowledgebase Search...";
	
	$('#kb-search-text').focus(function() {
		if ($(this).attr("value") == kbSearchBoxDefault) { 
			$(this).attr("value", ""); 
		}
	});
	
	$('#kb-search-text').blur(function() {
		if ($(this).attr("value") == "") { 
			$(this).attr("value", kbSearchBoxDefault); 
		}
	});
	
	$('.print-link a').click(function(event) {
		event.preventDefault();
		window.print();
	});
});