$(document).ready(function() {
	$(".dropdown").click(function(){
	var id = $(this).attr("id");
	var textSelected = "#" + id + " dt a span"
	$("#" + id + " ul").slideToggle();
	$("#" + id + " ul a").bind("click", function(e){
	//var lenStr = $(this).text().length;
	//var sbsStr = $(this).text();
	//$(textSelected).text(sbsStr.substring(0,(lenStr-2)));
	});
	});
});
