jQuery('document').ready(function(){
	
	dst_open_dialog();
	
});



function dst_open_dialog(){
	
	//récupération du contenu
	var contentHtml = jQuery('#presentation .content').html();
	var title = jQuery('#presentation h1').html();
	
	//ajout du ,contenu + affichage de la div
	jQuery('#dialog-prez').append(contentHtml);
	jQuery('#dialog-prez').attr('title', title);
	
	jQuery(function() {
		jQuery( "#dialog-prez" ).dialog({
			autoOpen: false
		});

		jQuery( "#presentation .readmore a" ).click(function() {
			jQuery( "#dialog-prez" ).dialog( "open" );
			return false;
		});
	});
	
}

