/* ----------------------------------------------------------
date: 04/06/2011
---------------------------------------------------------- */


/*** Placeholder Script ***/
jQuery.fn.extend({
    placeHolder : function() {
		this.focus(function(){
			if (jQuery(this).attr("value") == jQuery(this).attr("title")){
				jQuery(this).attr("value", "")
			}
		});
		this.blur(function(){
			if (jQuery(this).attr("value") == ""){
				jQuery(this).attr("value", jQuery(this).attr("title"))
			}
		});
    }
});
