$(document).ready(function() {
	
	$("#keywords").focus(function() {
		
		if ($(this).val() != "Search the Articles") {
			
		} else {
			
			$(this).val("");
			
		}

	}).blur(function() {
		
		if ($(this).val().length > 0) {
			
		} else {
			
			$(this).val("Search the Articles");
			
		}
		
	});
	
	
});