


/**
 * Intialiez non-obstructive javascript
 */
function init()
{
    window.addEvent( 'domready', function(){

        // Effets moteur de recherche
        init_searchBox();

    });

}



function init_searchBox()
{
    $$('.searchbox').addEvent( 'focus', function(){
        if( this.value == this.retrieve('original-value', this.value) )
        {
            this.value = '';
            this.setStyles({
                'text-align':'left'
            });
        }
    });

    $$('.searchbox').addEvent( 'blur', function(){
        if( this.value == '' )
        {
            this.value = this.retrieve('original-value');
            this.setStyles({
                'text-align':'center'
            });
        }
    });
}



