$(document).ready(function(){
titres = new Array (
	"The bar with the blind guides",
	"The front deux",
	"People entering in the dark room",
	"The front",
	"The front",
	"Quotes from international newspapers as interior design",
	"The front",
	"Cocktail",
	"One of the blind guides team",
	"Our menu",	
	"The lounge",
	"The lounge",	
	"People entering in the dark room"
)


	$("#vignettes a").click(function(){
		$("#photo img").attr('src',$(this).attr('href'));
		$("#vignettes a.active").removeClass('active');
		$(this).addClass('active');
		//alert($(this).attr('href'));
		$("#download").attr('href',$(this).attr('href').replace('site/presslounge/m/','hd/'));//http://www.danslenoir.com/london/images/site/presslounge/m/picture-6.jpg
		
		//titres
		lg_chaine_num_ph = $(this).attr('href').length;
		titre_ph = titres[parseInt($(this).attr('href').substr(lg_chaine_num_ph-5,1))-1];//trouver le bon com a partir du lien
		$("#photo p").html(titre_ph);
		
		return false;
	});
	
	$("#map_photos").click(function(){
		$("#contact, #presse").hide();
		$("#vignettes, #photo").show();
		return false;
	});
	
	$("#map_contact").click(function(){
		$("#vignettes, #photo, #presse").hide();
		$("#contact").show();
		return false;
	});
	
	$("#map_presse").click(function(){
		$("#vignettes, #photo, #contact").hide();
		$("#presse").show();	
		return false;
	});	
	
});
