// JavaScript Document
$(document).ready(function(){
	var content = $(".noShow").html();
	var temp;
	$("#repertoire").click(function(){
			$(".descWrapper div").fadeOut("fast", function(){
				temp = $(".descWrapper div").html();
				$(this).html(content).fadeIn("fast");
				content = temp;
			});
			$(this).text($(this).text() == 'Se udpluk af repertoire' ? 'Tilbage til beskrivelse' : 'Se udpluk af repertoire');
		});
});
