

(function ($) {
	
$(function() { // Hide Label Text, Give Focus to Forms
		$("#contact-form input,#contact-form textarea").focus(function() {
			$(this).addClass("focus");
		});
	
		$("#contact-form input").blur(function() {
			if($(this).html() == this.value){
   	            this.value = '';
   	            $(this).removeClass("focus");
   	        }
		});
		
		$("#contact-form textarea").blur(function() {
			if($(this).html() == this.value){
   	            this.value = '';
   	            $(this).removeClass("focus");
   	        }
		});
		
		
   	});

})(jQuery);
