jQuery(document).ready(function()
{
	jQuery("a[rel^=marchand]").click(function ()
										{
											$this=jQuery(this);
											var infos_clic=$this.attr("rel").split("|");

											try {
											_gaq.push(['_trackEvent', 'Clic '+infos_clic[0],infos_clic[1],infos_clic[2],1]);
											//setTimeout('document.location = "' + $this.attr("href") + '"', 100);
											}
											catch(err) {

											}
										});
});

