$(document).ready(function(){
	$.extend($.fn, {

		placeholder: function( hParams ){
			$( this ).each(function(){
				var sClass = hParams.sClassName ? hParams.sClassName : 'Placeholder';
				var e = $( this );

				e.focus(function(){
					if( e.val() == 'Keyword' ){
						e.val( '' );
					}
				}).blur(checkPlaceholder)


				function checkPlaceholder(){
					if( e.val() == '' || e.val() == 'Keyword' ){
						e.val( 'Keyword' )
					}
				}
				checkPlaceholder();
			})
			return this;
		}

	});

});