/* - - - - - - - - - - - - - - - - - - -
G R E E N  A C T I O N
 - - - - - - - - - - - - - - - - - - - */
 
 
/* - - - - - - - - - - - - - - - - - - -
HIDDEN FOCUS
 - - - - - - - - - - - - - - - - - - - */
$.fn.hiddenFocus = function() {
	return this.each(function() {
		var $this = $(this);
		$this.focus(function(){
			if ($this.val() == $this.attr("title")) {
				$this.val("");
			}
		}).blur(function(){
			if ($this.val() == "") {
				$this.val($this.attr("title"));
			}
		});
	});
}

/* - - - - - - - - - - - - - - - - - - -
INIT
 - - - - - - - - - - - - - - - - - - - */
$(document).ready(function(){
	$("input.hidden_focus").hiddenFocus();
});




