$(function(){

    $( '#input-search, #suscribe-email' )

    .focus(function()
    {
        if ( !this.firstValue )
            this.firstValue = $( this ).val();

        if ( this.firstValue == $( this ).val() )
            $( this ).val( '' );
    })

    .blur(function()
    {
        if ( $( this ).val().length == 0 )
            $( this ).val( this.firstValue );
    });


});
