$(document).ready(
	function () {
		if (document.getElementById("detail")) {
			var toadd = ''
			+'<div style="padding: 40px 0 0 0; text-align: center">'
				+'<a target="_blank" href="http://www.remise-auto.com/redirect.php?ref='+$(".clear").attr("id").replace("clear_", "")+'&tab=neuf&referer=da"><img src="/images/equip_options.gif" border="0" /></a>'
			+'</div>';
			
			$(".clear").before(toadd);
		}
	}
);


function thumb(id, url) {
	$.post("/thumbnail.php", {
		id: id,
		url: url
	},
		function(data) {
			$("#create_thumb_"+id).attr("src","/"+data);
		}
	);
}
