$(document).ready(function() {
    
      if ($.readCookie('bankruptcy-popup') != 'true') {
	      setTimeout(function() { 
	      	
	      		var cookie;
	      		$("a#inline").fancybox({ 'onComplete' : function(){
							cookie = $.setCookie('bankruptcy-popup', 'true', { duration: 1 });
						}
				}).trigger('click'); 
	      }, 30000);
      }

			$('input').each(function() {
        var default_value = this.value;
        if( $(this).is('.submit, .button') ){
        	// Do Nothing
        }else{
	        $(this).focus(function() {
	            if(this.value == default_value) {
	                this.value = '';
	            }
	        });
	        $(this).blur(function() {
	            if(this.value == '') {
	                this.value = default_value;
	            }
	        });
		}
    });
    
    /* Textarea Value */
    $('textarea').each(function() {
    	var default_value = this.value;
    	$(this).focus(function() {
    		if(this.value == default_value) {
                    this.value = '';
             }
    	});
    	$(this).blur(function() {
    		if(this.value == '') {
    			this.value = default_value;
    		}
    	});
    });
				
});



