window.addEvent('domready', function(){
	$$('#albumsList li').addEvents({
		'mouseenter'	:	function(){
			this.addClass('hover').getElement('img.cover').set('morph', {
				duration: '150'
			})
			.morph({
				'width' : '300px', 'left' : '0', 'top' : '0'	
			});	
			this.getElement('a').setStyles({'opacity':'0', 'display':'block'}).morph({'opacity':'0.4'});
			this.getElement('div.description').morph({'bottom': -this.getSize().x});
		},
		'mouseleave'	:	function(){
			this.removeClass('hover').getElement('img.cover').morph({
				'width' : '350px', 'left' : '-25px', 'top' : '-20px'	
			});
			this.getElement('a').morph({'opacity':'0'});
			this.getElement('div.description').morph({'bottom': 0});
		}
	});
	new FloatingTips('#searchString', {	
		position	: 'left'
	});		
	$('searchForm').addEvent('submit', function(e){
		if(this.search.get('value').length < 3){
			alert('La recherche d\'un mot doit comporter au moins 3 caractères');
			e.stop();
		}
	});
});
