	
			function initLogo(cible)
			{
				
				$(cible.id).morph('height:150px', {
						duration: .5,
						transition: 'spring'
					});
			}
			function selectLogo(cible)
			{
				$(cible.id).morph('height:160px', {
					duration: .5,
					transition: 'spring'
			
				});
			}
			function initLogoItm(cible)
			{
				
				$(cible.id).morph('width:130px', {
						duration: .5,
						transition: 'spring'
					});
			}
			function selectLogoItm(cible)
			{
				$(cible.id).morph('width:140px', {
					duration: .5,
					transition: 'spring'
			
				});
			}
			
			function presentationInit()
			{
				setTimeout(function(){
				$('content-description').morph('bottom:20px', {
					duration: 1.5,
					transition: 'spring'
			
				});
				},1000);
			}
			
