/* Replacement attempt kill this if it goes bad */
jQuery(document).ready(function(){
	var detect = navigator.userAgent.toLowerCase();
	if(detect.indexOf("safari") > 0) return false;
	var inputs = jQuery("input[type=text]");
	inputs.each(function(){
		if(jQuery(this).attr("placeholder") != undefined) {
			this.value = jQuery(this).attr("placeholder");
			this.onfocus = function() {
				if (this.value == this.getAttribute("placeholder")) {
					this.value = "";
				}
				return false;
			}
			this.onblur = function() {
				if (this.value.length < 1) {
					this.value = this.getAttribute("placeholder");
				}
			}
		}
	});
});


