
$(document).ready(function(){

//	$('#ViewFloorplan').lightBox();
	var lb_config = {};
	if ($('#flag-france').hasClass('selected'))
	{
		lb_config = { imageBtnClose: '/Images/floorplan/close-fr.gif',
					  imageBtnPrev: '/Images/floorplan/prev-fr.gif',
					  txtOf: 'de',
					  txtNext: '|Suivant ->',
					  txtPrev: '<- Précédent|',
					  imageBtnNext: '/Images/floorplan/next-fr.gif'}
	}
	else
	{
		lb_config = { imageBtnClose: '/Images/floorplan/close-en.gif',
					  imageBtnPrev: '/Images/floorplan/prev-en.gif',
					  txtOf: 'of',
					  txtNext: '|Next ->',
					  txtPrev: '<- Previous|',
					  imageBtnNext: '/Images/floorplan/next-en.gif'}
	}

	$('#FloorplanLayout a').lightBox(lb_config);

  	$('#MoreImages').click(function() { 
									
		$('#MoreImages').hide();
		$('#BackToPrevious').show();

		$('#ImagesPageOne').hide("slide");
		$('#ImagesPageTwo').show("slide");
		
	});										 

//'clip', 'drop', 'explode', 'fold', 'puff', 'slide', 'scale', 

  	$('#BackToPrevious').click(function() { 

		$('#MoreImages').show();
		$('#BackToPrevious').hide();

		$('#ImagesPageOne').show("slide");
		$('#ImagesPageTwo').hide("slide");
		
	});										 

});

