$(document).ready(function() {
	$("#offerteBtn").mouseover(function() {
		$('#mouseover').show();
	}).mouseout(function(){
		$('#mouseover').hide();
	  });
	$("#offerteBtn2").mouseover(function() {
		$('#mouseover2').show();
	}).mouseout(function(){
		$('#mouseover2').hide();
	  });
});
