$(document).ready(function() {

	/* Establish searchability */
	$("input.pd_user_terms")
		.val("search terms here")
		.focus(function(){if ($(this).val() == "search terms here") {$(this).val("");}})
		.blur(function(){if ($(this).val() == "") {$(this).val("search terms here");}});
	$("a.pd_mag_button").click(function(){$("form[name='pd_search_form']").submit();});
	$("form[name='pd_search_form']").submit(function(){
		if ($("input.pd_user_terms").val() != "" && $("input.pd_user_terms").val() != "search terms here") {
			return true;
		}
		return false;
	});
		
});