jQuery(document).ready(function() {
		var leftArea = $("#leftArea").height();
		if(leftArea<500){
			$("#leftArea").css("height","500px");
			}
$(".input").each(function() {
    var default_value = this.value;
	$(this).focus(function() {
        if(this.value == default_value) {
            this.value = '';
			$(this).css("color", "#000");

        }
		else
		{
		this.value = $.trim(this.value);
		}
    });
    $(this).blur(function() {
        if(this.value == '') {
            this.value = default_value;
			$(this).css("color", "#888");
        }
		else{
		this.value = $.trim(this.value);
		if(this.value == ''){
		$(".input").val(default_value);
		$(".input").css("color", "#888")
		}
		}
    });
});
$(".input2").each(function() {
    var default_value = this.value;
	$(this).focus(function() {
        if(this.value == default_value) {
            this.value = '';
			$(this).css("color", "#000");

        }
		else
		{
		this.value = $.trim(this.value);
		}
    });
    $(this).blur(function() {
        if(this.value == '') {
            this.value = default_value;
			$(this).css("color", "#888");
        }
		else{
		this.value = $.trim(this.value);
		if(this.value == ''){
		$(".input2").val(default_value);
		$(".input2").css("color", "#888")
		}
		}
    });
});
});
