$(document).ready(function(){
		var display;
	 //$(function(){  
	     $("ul.positions a").each(function(){  
	         $(this).click(function(){
							display = $("#"+$(this).attr("id")+"_desc").css("display");
	         		if (display=='block')
	         			return true;
	            $("div#content div").each(function(){ $(this).hide("slow"); });  
	            $('div#content h1').html($(this).attr("title")+'<span>03.</span>');	   
	            $("#"+$(this).attr("id")+"_desc").show("slow");  
              //return true;  
	          });  
	     });  
	 //});  
});

