
$(document).ready(function(){

    if($('#err').html() == '')
	$('#err_container').hide();

    $('#err').attr('title', 'Masquer');
    $('#err').click(function(){
        $(this).hide('blind', 'slow', function() {
	    $('#err_container').hide();
	});
    });
});


function disp_msg_info(msg, type)
{
    if($('#err').is(':visible'))
    {
	$('#err').hide('blind', 'slow', function() {
	    $('#err_container').hide();

	    $('#err').html(msg);
	    $('#err_container').attr('class', '').addClass(type);

	    $('#err_container').show();
	    $('#err').show('blind', 'slow');
	});
    }
    else
    {
	$('#err').html(msg);
	$('#err_container').attr('class', '').addClass(type);

	$('#err_container').show();
	$('#err').show('blind', 'slow');
    }

}
