jQuery(window).load(function()
{
	jQuery('.partner_offre').click(function() {
	var id = jQuery(this).attr('value');
	var html = jQuery.ajax({
	  url: "/includes/javascript/some.php",
	  data: "id="+id,
	  async: false
	}).responseText;
	//alert(html);
	});
});

