$(document).ready(function(){

// contact page (input functions)

$('input, textarea').each(function () {
	if ($(this).val() == '') {
		$(this).val($(this).attr('words'));
	}
}).focus(function () {
	$(this).removeClass('inputerror');
	if ($(this).val() == $(this).attr('words')) {
		$(this).val('');
	}
}).blur(function () {
	if ($(this).val() == '') {
		$(this).val($(this).attr('words'));
	}
});
	
}); //end jquery
