$(document).ready( function () {
	
	$("#navLeft .subMenu").hide();
	
	$("#navLeft > li > span").each( function () {
		
		var TexteSpan = $(this).text();
		$(this).replaceWith('<a href="">' + TexteSpan + '</a>') ;
		
	});

	$("#navLeft > li > a").toggle( function () {

		
		$(".subMenu").slideUp("slow", function () { $(this).prev().removeClass("select")} );
		$(".subMenu").hide();

		$(this).addClass("select");
		$(this).next(".subMenu").slideDown("slow");	
		return false;
		
	},function () {
	
		$(this).next(".subMenu").slideUp("slow", function () { $(this).prev().removeClass("select")} );
	});
});
function showMe(id) {
	
		monId = $("#"+id).attr("value");
		$("#"+id).slideDown("slow");

}
