$(document).ready(function(){
	//SHOW DESCRIPTION
	
	$('.showDescription').toggle(function(){
		$(this).next().show(1000);
		$(this).css('font-weight', 'bold');
	},function(){
		$(this).next().hide('slow');
		$(this).css('font-weight', 'normal');
	});
	

	//FADE
	$('#fader').innerfade({
		speed: 2500,
		timeout: 4500,
		type: 'sequence',
		containerwidth: '400px',
		containerheight: '209px'
	});	
});
