// adpredictive code
/*
try{var adpref=document.referrer==''?document.location:document.referrer;adpref=encodeURIComponent(adpref);}catch(e){var adpref='';}
adp_px=new Image();
adp_px.src = "http://pixel.adpredictive.com/adpredictive/app/com/pview.php?campID=101&adpref="+adpref;
*/
// handle zip box
function supports_input_placeholder() {
	var i = document.createElement('input');
	return 'placeholder' in i;
}
if (!supports_input_placeholder()) {
	var globalZip = document.getElementById('global-zip');
	globalZip.value = globalZip.title;
	globalZip.onfocus = function() {
		if (this.value == this.title) this.value = '';
	}
	globalZip.onblur = function() {
		if (this.value == '') this.value = this.title;
	}
}