$(document).ready(function(){
    
    var height = parseInt($(".contact").height()) - 15;
	var height2 = parseInt($(".aboutBorder").height()) ;
	if (height > height2)
    $(".aboutBorder").attr("style", "height: " + height + "px");
	
	$(".labeled-input").each(function() {
		this.label = this.value;
 
		this.onfocus = function() {
			if(this.value==this.label) {
				this.value = "";
				$(this).removeClass("labeled-input");
			}
		};
 
		this.onblur = function() {
			if(this.value=="") {
				this.value = this.label;
				$(this).addClass("labeled-input");
			}
		};
	});
  });

