        function InputHelperIn ( obj, text )
	{
	    //       ,      
		if ( obj.value == text )
		{
		    $( obj )
		        .css ( { color: '#000' } )
		        .val ( '' );
		}
	}
	
	function InputHelperOut ( obj, text )
	{
	    //           ,
            //         
		if ( obj.value == '' || obj.value == text )
		{
		    $( obj )
		        .css ( { color: '#000' } )
		        .val ( text );
		}
	}
	
	function InputHelperCreate ( obj, text )
	{
	    //   .     .
		$( obj )
			.bind ( 'focus', function () {
				InputHelperIn ( this, text );
			} )
			.bind ( 'blur', function () {
				InputHelperOut ( this, text );
			} );
			
		// 
		InputHelperOut ( obj, text );
	}

	$( document ).ready ( function () {
	    //        
	    InputHelperCreate ( $( 'input' ).get( 0 ), 'Ваше имя' );
	    InputHelperCreate ( $( 'input' ).get( 1 ), 'Ваш e-mail' );
	    InputHelperCreate ( $( 'input' ).get( 2 ), 'Контактный телефон' );
        InputHelperCreate ( $( 'input' ).get( 3 ), 'Комментарии' );

	} );



