$(document).ready(function(){

	// Removes SEO text in navItems
	$(".clearText").html("");
	$(".clearText").removeClass("clearText");
	
	// Clears input fields on Focus
	$(".clearField").bind("blur", function() {
		if ($(this).val()=="") {
			$(this).val($(this).attr("title"));
		};
	});
	$(".clearField").bind("focus", function() {
		if ($(this).val()==$(this).attr("title")) {
			$(this).val("");
			$(this).removeClass('formErr');
		};
	});
	// Clears teaxtarea fields on Focus
	$(".clearFieldText").bind("blur", function() {
		if ($(this).html()=="") {
			$(this).html($(this).attr("title"));
		};
	});
	$(".clearFieldText").bind("focus", function() {
		if ($(this).html()==$(this).attr("title")) {
			$(this).html("");
			$(this).removeClass('formErr');
		};
	});

});

