$(function(){
	$("h5 a").click(function(){
		if ($(this).hasClass("open")) {
			$(this).removeClass("open").parent().siblings().slideUp();
		} else {
			$(this).addClass("open").parent().siblings().slideDown();
		}
		return false;
	});
	$("#viewall a").toggle(function(){
		$(this).html("View All Position Details");
		$("h5 a.open").click();
	    return false;
	}, function(){
		$(this).html("Collapse All Positions Details");
		$("h5 a:not(.open)").click();
		return false;
	});
});