$(document).ready(function() {

	$(".ramka").click(function() {
		dl = "#" + this.id + " dl";
		$(dl).toggle(500);
		return false;
	});

});

