$(document).ready(function () {
	
	$('#toggle-view li').click(function () {

		var text = $(this).children('p');

		if (text.is(':hidden')) {
			text.slideDown('300');
			$(this).children('span').html('<br><br><img src="http://www.amphi-festival.de/images/opened.gif"> Hide');		
		} else {
			text.slideUp('300');
			$(this).children('span').html('[...]<br><br><img src="http://www.amphi-festival.de/images/closed.gif"> Read more');		
		}
		
	});

});

