$(document).ready(function(){
$('#searchKey').focus(function(){
            if ($(this).attr('value')=='recherche...'){
                $(this).attr('value', '');
                $(this).css('color','#000');
                // $('#searchSubmit').attr('disabled', 'disabled');
            }
           /* else if ($(this)!= '' || $(this)!='recherche...'){
                $('#searchSubmit').removeAttr('disabled');
            }*/
        });

        $('#searchKey').blur(function(){
            if ($(this).attr('value')==''){
                $(this).attr('value', 'recherche...');
                $(this).css('color','#aaa');
                // $('#searchSubmit').attr('disabled', 'disabled');
            }
            /*else if ($(this)!= '' || $(this)!='recherche...'){
                $('#searchSubmit').removeAttr('disabled');
            }*/
        });
        /*$('searchSubmit').hover(function(){
            if ($('#searchKey').attr('value')!= '' || $('#searchKey').attr('value')!= 'recherche...'){
                $(this).removeAttr('disabled');
            }
        })*/
});