/* =========================================================================================================== */
/* Menu sup�rieur */
/* =========================================================================================================== */
$(document).ready(function(){
		
	//gestion filliale colonne de droite 
	$('#office-list .item-title a.office-more').click(function(){
		$(this).parent().next('ul').slideToggle();
		if($(this).hasClass('office-more')){
			$(this).removeClass('office-more').addClass('office-less').text('[-]');
		} else {
			$(this).removeClass('office-less').addClass('office-more').text('[+]');
		}
	});
});

/* =========================================================================================================== */
/* MediaSpace */
/* =========================================================================================================== */
function initGallery(){
	$(document).ready(function(){
		// On cache tous les preview
		var previews = $('.preview');
		previews.hide();
		
		var photos = $('.photo-container');
		photos.bind('mouseenter', showPreview);
		photos.bind('mouseleave', hidePreview);
		
		var previewsCaption = $('.preview .caption');
		previewsCaption.css('opacity', '0.7');
	});
}

function showPreview(){
	//$(getAssociatedPreview(this)).fadeIn();
	$(getAssociatedPreview(this)).show();
}
function hidePreview(){
	//$(getAssociatedPreview(this)).fadeOut();
	$(getAssociatedPreview(this)).hide();
}
function getAssociatedPreview(photo){
	return $(photo).children()[1];
}