$(document).ready( function () {
	  // Photos
	$("#annonceSeule .imageAnnonce img").each(function () {
		if (this.src.indexOf('nopic') == -1) {
			var sSrc = this.src.replace(/\.thumbnail/, '');
			$(this).wrap('<a href="' + sSrc + '" rel="splash|groupe1"></a>');
			fnPreloadImage(sSrc);
		}
	} ) ;
	ini_splash_images(); // Script du zoom
	
	  // Liens pratiques que pour ceux qui ont javascript
	$("#liensPratiques").show();
	
	  // Favoris
	$("#liensPratiques #favoris a").click( function () {
		if (window.sidebar)
			window.sidebar.addPanel(document.title, location.href, "");
		else if (window.external)
			window.external.AddFavorite(location.href, document.title);
		else
			alert($("noscript").text().replace(/<[^>]+>/g, '').replace(/&(.)[^;]+;/, '$1'));
		
		return false;
	} ) ;
} ) ;