window.addEvent('domready', function(){
	var show = function(e){
		var omschrijving = e.getChildren('.description');
		
		e.addClass('active');
		
		omschrijving.set('tween', {
			transition: 'linear'
		});
		omschrijving.tween('height', '200px');
	};
	
	var hide = function(e){
		var omschrijving = e.getChildren('.description');
		
		e.removeClass('active');
		omschrijving.set('tween', {
			transition: 'linear'
		});
		omschrijving.tween('height', '1px');
	}
	
	$$('#book-columns .item').addEvents({
		click: function(e){
			if(this.hasClass('active')){
				hide(this);
			}
			else{
				show(this);
			}
		}
	});
});
