var $jQuery = jQuery.noConflict();
$jQuery(document).ready(function(){
	// --- Expanding menus
	$jQuery("a.expandLink").click(function(){
		$id = $jQuery(this).attr("rel");
		if(!$jQuery("span."+$id).hasClass("open")){
			// close all other open spans
			$jQuery(".hiddenContainer").slideUp("slow");
			$jQuery("span.plusMinus").html("[+]");
			$jQuery("span.hiddenContainer").removeClass("open");
			
			$jQuery("span."+$id).slideDown("slow");
			$jQuery("span."+$id).addClass("open");
			$jQuery("span."+$id+"-plusMinus").html("[-]");
		}
		else{
			$jQuery("span."+$id).slideUp("slow");
			$jQuery("span."+$id).removeClass("open");
			$jQuery("span."+$id+"-plusMinus").html("[+]");
		}
		return false;
	});
});