function filter(rub,max,page) {
	$('#results').html("");
	$('#results').addClass("loading");
	$.ajax({
		type: "POST",
		url: SITE_PATH+"content/ajax/Ajax_Galerie_Vente.php",
		data: "rub="+rub+"&qsNbPerPage="+max+"&qsPage="+page,
		success: function(msg){
			$('#results').html(msg);
			$('#results').removeClass("loading");
			sIFR.replace(lovesister, {
				selector: '.article h1',
				css: [
					'.sIFR-root { font-size: 18px; color: #ffffff;  }',
					'strong { font-style: bold; }',
					'em { font-style: normal; color: #d81129; }'
					],
				wmode: 'transparent'
			});
			Shadowbox.init();
			$('.infobulle').tooltip({
			    track: true,
			    delay: 0,
			    showURL: false,
			    showBody: " - ",
			    fade: 350
			});
		}
	});
}

function achat(id) {
	Shadowbox.open({
		player: 'iframe',
		title: "Nous Contacter",
		content: "content/pages/achat.php?id="+id,
		height: 380,
		width: 650
	});
}