function accordian(a){
	if ($(a).hasClass("selected")){
		$(".selected > img").attr({src:contentImgPath + "b_plus.gif"});
		$(".selected").next().slideUp("slow");
		$(".selected").removeClass("selected");
	}else{
		$(".selected > img").attr({src:contentImgPath + "b_plus.gif"});
		$(".selected").next().slideUp("slow");
		$(".selected").removeClass("selected");
		$(a).next().slideDown("slow");
		$(a).addClass("selected");
		$(".selected > img").attr({src:contentImgPath + "b_minus.gif"});
	}
	return false;				
}

