jQuery().ready(function(){
    $('ul.drawers').accordion({
        header: 'h2.drawer-handle',
        selectedClass: 'open',
        event: 'click',
        autoHeight: false
    });
    $('area.perma').cluetip({
        splitTitle: '|',
        activation: 'click'
    });
	$('.newsticker').newsticker();
    $(':text').focus(function(){
        if ($(this).val() == 'Rechercher' || $(this).val() == 'Identifiant') {
            $(this).val("");
        }
    });
    $(':password').focus(function(){
        if ($(this).val() == 'Mot de passe') {
            $(this).val("");
        }
    });
});
