var $titleSommaire;
var $sommaire;
var oldSommaire;
var oldTitle;

$(document).ready(function () 
{
	$sommaire = $('#sommaire');	
	$titleSommaire = $('#titleSommaire');	
	if($sommaire)
	{		
		oldSommaire = $sommaire.html();
		oldTitle = $titleSommaire.html();
		$('.imageDoc').hover(
			function(){		
				$sommaire.html($(this).next().attr('value'));
				$titleSommaire.html("Magazine "+$(this).parent().next().next().html());
				},
			function(){
				$sommaire.html(oldSommaire);
				$titleSommaire.html(oldTitle);
			});
	}
}
);
