$(document).ready(function() {
	// DISCOGRAPHIE
	$('.lyrics:not(:first)').hide();
	
	var currentLyricsSection = "#"+$('.lyrics:first').attr('id');
	
	$('#album').find('a').click(function() {
		if (currentLyricsSection != "#"+this.name) {
			$(currentLyricsSection).slideUp();
			currentLyricsSection = "#"+this.name;
			$(currentLyricsSection).slideDown();
		}
		return false;
	});
});