$(document).ready(function(){
	// Action for Search Focus
	$(".searchfield").focusin(function() {
		// Blank out the Search is default
		if ($(this).val() == 'keywords') $(this).val('');
	});
	// Action for Search Focus Out
	$(".searchfield").focusout(function() {
		// Return default to Search if blank
		if ($(this).val() == '') $(this).val('keywords');
	});
});

