// JavaScript Document

jQuery(document).ready(function() {

	// Search box text.
	jQuery("input#keywords").focus(function() {
		if (this.value == "Search EORM") {
			this.value = "";
		}
	});
	jQuery("input#keywords").blur(function() {
		if (this.value == '') {
			this.value = "Search EORM";
		}
	});

	
	

});

