$(document).ready
(
	function()
	{
		// lorsqu'on charge la page, on affiche le premier partenaire
		var id = $(".partenaire_nom:first").attr("partenaire_id");
		var nom = $("#nom_"+id).html();
		var description = $("#description_"+id).html();
		var image = $("#image_"+id).html();

		$("#zone_image").html('<img src="'+image+'" />');
		$("#zone_texte").html('<h1>'+nom+'</h1>'+description);

		$(".partenaire_nom").hover
		(
			function ()
			{
				id = $(this).attr("partenaire_id");
				nom = $("#nom_"+id).html();
				description = $("#description_"+id).html();
				image = $("#image_"+id).html();

				$("#zone_image").html('<img src="'+image+'" />');
				$("#zone_texte").html('<h1>'+nom+'</h1>'+description);
			}
			,
			function ()
			{
			}
		);
	}
);

