(function( $ ){  $.fn.ghostinput = function() {	return this.each( function ()							{									if ( $(this).val() == '' ) { $(this).val( $(this).attr('data-ghostinput') ); $(this).addClass('ghost'); }								$(this).blur( function() { if ( $(this).val() == '' ) { $(this).addClass('ghost'); $(this).val( $(this).attr('data-ghostinput') ); } } );								$(this).focus( function() { $(this).removeClass('ghost'); if ( $(this).val() == $(this).attr('data-ghostinput') ) { $(this).val(''); } } );							}													);  };})( jQuery );		$(document).ready(function(){	$('input[data-ghostinput]').ghostinput();});
