// Toggle Document
$(document).ready(function () {
	
	$('#toggleView li').click(function () {

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

		if (text.is(':hidden')) {
			text.slideDown('200');
			$(this).children('span.button').html('<img src="../images/toggle-hide.png">');		
		} else {
			text.slideUp('200');
			$(this).children('span.button').html('<img src="../images/toggle-show.png">');		
		}
		
	});

});
