$(function(){	$('.patchlist > h3').next().hide();    $('.patchlist > h3').click(function () {			$('.patchlist > h3').next().hide('slow');            if (!$(this).next().is(":visible")) {				$(this).next().show('slow');			}    })	$('.patchlist h4').click(function() {		$('.patchlist > ul > li > span').hide();		$('.patchlist > ul > li > span').html("");		if (!$(this).next().is(":visible")) {			$(this).next().show('slow');			LoadPositions($(this).next(), $(this).attr('id'));		}	});})
