// JavaScript Document
$(document).ready(function()
{

	jQuery(".mentionscacheur").click(function () {
		jQuery("#mentionslegales").animate({ height: 'toggle', opacity: 'toggle' }, 5);
		jQuery("#demande-informations").animate({ height: 'toggle', opacity: 'toggle' }, 5);
		jQuery('html, body').animate({scrollTop: 2000}, 700);
	});
        
        jQuery(".messageDialog").dialog({ modal: true, draggable: false, resizable: false });
});
