$(document).ready(function () {
	
	$('#toggle-view li').click(function () {

		var text = $(this).children('p');

		if (text.is(':hidden')) {
			text.slideDown('100');
			$(this).children('span').html('<img src="img/toggle/toggle-arrow-up.gif" alt="Close"/>');		
		} else {
			text.slideUp('100');
			$(this).children('span').html('<img src="img/toggle/toggle-arrow-down.gif" alt="Open"/>');		
		}
		
	});

});
