var _search =   {

    init: {
        _:  function() {

            this.header._();
            //this.topic._();
        },

        header: {
            _:  function() {
                
                //if (window.location.host.match(/^dev.itpro.fr$/)) {
                    $('#searchonitpro')
                        .css('visibility', 'visible');
                //}
                

                $('#header_search_submit')
                    .click(function() {
                          $('#searchonitpro').submit();
                    })
                ;
            }
        }
    }
};
$(document).ready(function() {_search.init._();});

