$(document).ready(function(){ // This sets the opacity of the thumbs to fade down to 60% when the page loads
	initAfficheBrowser();
});

function initAfficheBrowser()
{
	$(".affiche-browser-clickable").click(function(){
		$("#side-films-container").load($(this).attr("rel"),{},function (tt){
				initAfficheBrowser();
				initGlobalAnims();
			});
		return false;
	});
}
