$(document).ready(
	function() {
	// hide everything on the same level as the .handler
	$(".quickbrowseSub").slideUp();
	$(".quickBrowseParent").click(function() {
		$(".quickbrowseSub").slideUp();
		$(this).children().slideDown("slow");
		$(".sublink").click(function(event){ event.stopPropagation(); });
		$(".quickBrowseParent").css("list-style-image", "url('http://images.healthcareerweb.com/imgs/hcw/mooncoat/icons/quickbrowse-arrow-trans.png')"); 
	});

	
	}

);
