// Assigns a default value to the Search field with id 'q'

var v2s_active_color = '#000000'; // Colour of user provided text
var v2s_inactive_color = '#757575'; // Colour of default text
var v2s_default_value = 'Search USPS.com'; // default value

if (document.getElementById("q")){
	if (!document.getElementById("q").value) {
		document.getElementById("q").style.color = v2s_inactive_color;
		document.getElementById("q").value = v2s_default_value;
	}
	document.getElementById("q").onfocus = function() {
  	this.value = '';
  	this.style.color = v2s_active_color;
  	this.onblur = function() {
  		if (this.value == '') {
    		this.style.color = v2s_inactive_color;
    		this.value = v2s_default_value;
  		}
		}
	}
}