function zoomRealisation(){
	$("a.slideshowrealisation").lightBox({
		imageBtnClose: '/img/lightbox-btn-close.gif',
		imageLoading: '/img/lightbox-ico-loading.gif',
		imageBtnPrev: '/img/lightbox-btn-prev.gif',
		imageBtnNext: '/img/lightbox-btn-next.gif',
		txtImage: 'Photo',
		txtOf: 'sur',
		fixedNavigation:true,
		overlayBgColor: '#2b64a3'
	});
}


function animateSloganLrci(){
	$("#slogan > p").fadeOut("slow").fadeIn("slow");
	
	setTimeout("animateSloganLrci()",4000);
}

function animateBlockExperience(){
	$("#colleft > p.experience").fadeOut("normal").fadeIn("normal");
	
	setTimeout("animateBlockExperience()",2000);
}

$(document).ready(function(){
	animateSloganLrci();
	//animateBlockExperience();
	zoomRealisation();
});