$(document).ready(function() {
   
	$('.iinput,.comment-text-area').addClass("inactive-field")
	
	
	$('.iinput,.comment-text-area').live('focusin',function() {
	
	$(this).removeClass("inactive-field").addClass("active-field");
        if (this.value == this.defaultValue){
        	this.value = '';
    	}
        if(this.value != this.defaultValue){
	    	this.select();
        }
    });
    $('.iinput,.comment-text-area').live('focusout',function() {
    	$(this).removeClass("active-field").addClass("inactive-field");
        if (this.value == ''){
        	this.value = (this.defaultValue ? this.defaultValue : '');
    	}
    });
});
