$(document).ready(function(){

$(".code_pays").click(function()
{
var id=$(this).attr("id");
var code=$(this).attr("code");
$("#pays").val(id).attr('selected',true);

$.ajax({
	url: "Cartes/"+code+"/carte.html",
	cache: false,
  	dataType: "html",
	success: function(data) {
		$('#imgpays').html(data);
  }
});
})
.hover(function ()
{
$(this).css('cursor','pointer');
});
});
