$(document).ready
(
	function()
	{
		// lorsqu'on charge la page, on affiche la premiere revue de presse
		var id = $(".mini_presse:first").attr("d_id");
		var zoom = $(".mini_presse:first").attr("d_zoom");
		var titre = $("#ti_"+id).html();
		var texte = $("#te_"+id).html();

		/*
		var titre = $(".mini_presse:first").attr("d_titre");
		var texte = $(".mini_presse:first").attr("d_texte");
		*/
		
		$("#zone_image").html('<img src="'+zoom+'" />');
		$("#zone_texte").html('<p><strong>'+titre+'</strong></p>'+texte);
		
		// image revue de presse
		$(".mini_presse").hover
		(
			function ()
			{
				id = $(this).attr("d_id");
				zoom = $(this).attr("d_zoom");
				titre = $("#ti_"+id).html();
				texte = $("#te_"+id).html();
				/*
				titre = $(this).attr("d_titre");
				texte = $(this).attr("d_texte");
				*/
				
				$("#zone_image").html('<img src="'+zoom+'" />');
				$("#zone_texte").html('<p><strong>'+titre+'</strong></p>'+texte);
			}
			,
			function ()
			{
			}
		);
	}
);

