$(document).ready(function(){
    
    // clear input value on focus
//    $('input, textarea').each(function() {
//        var default_value = this.value;
//        var default_color = $(this).css("color");
//        $(this).focus(function() {
//            if(this.value == default_value) {
//                this.value = '';
//                $(this).css("color","#333");
//            }
//        });
//        $(this).blur(function() {
//            if(this.value == '') {
//                this.value = default_value;
//                $(this).css("color", default_color);
//            }
//        });
//    });

    

});







