$(document).ready(function(){
        $(".autoclear").click(function () { 
            if($(this).attr('value') == $(this).attr('default')){
                $(this).attr('value','');
            }
        });
        
        $(".autoclear").focus (function () { 
            if($(this).attr('value') == $(this).attr('default')){
                $(this).attr('value','');
            }
        });
        
        $(".autorefill").blur(function () { 
            if($(this).attr('value') == ''){
                $(this).attr('value',$(this).attr('default'));
            }
        });
        
        $(".autoselectall").click(function () { 
           $(this).select();
        });
});

jQuery.fn.log = function (msg) {
      console.log("%s: %o", msg, this);
      return this;
};

function dump(arr,level) {
	var dumped_text = "";
	if(!level) level = 0;
	
	//The padding given at the beginning of the line.
	var level_padding = "";
	for(var j=0;j<level+1;j++) level_padding += "    ";
	
	if(typeof(arr) == 'object') { //Array/Hashes/Objects 
		for(var item in arr) {
			var value = arr[item];
			
			if(typeof(value) == 'object') { //If it is an array,
				dumped_text += level_padding + "'" + item + "' ...\n";
				dumped_text += dump(value,level+1);
			} else {
				dumped_text += level_padding + "'" + item + "' => \"" + value + "\"\n";
			}
		}
	} else { //Stings/Chars/Numbers etc.
		dumped_text = "===>"+arr+"<===("+typeof(arr)+")";
	}
	return dumped_text;
}

function isset(item){
    if(item != undefined)
        return true;
    return false;
}
