$(function() {

	$('#evenements').hover( function() { $(this).attr('src','images/evenements-hme-over.png') }, function() { $(this).attr('src','images/evenements-hme.png') } );
	$('#enfants').hover( function() { $(this).attr('src','images/enfants-hme-over.png') }, function() { $(this).attr('src','images/enfants-hme.png') } );
	$('#cadeaux').hover( function() { $(this).attr('src','images/cadeaux-hme-over.png') }, function() { $(this).attr('src','images/cadeaux-hme.png') } );
	$('#habitation').hover( function() { $(this).attr('src','images/habitation-hme-over.png') }, function() { $(this).attr('src','images/habitation-hme.png') } );
	
	$('.a-venir').hide();
	$('.pdfs img').hover( function() {
		pos = $(this).position();
		$('.a-venir').css({position: 'absolute', top: pos.top+10, left: pos.left+10, width: '300', height: '371'}).show();
	});
	$('.a-venir').mouseout( function() {
		$(this).hide();
	})

});

