$(document).ready(function() {
	$("span[class=more_and_less]").each(function() {
		$(this).html('&uarr;');
		$(this).click(function() {
			ID = $(this).attr('title');
			if ($(this).html() == '-') {
				$(this).html('+');
				$("#flow"+ID).slideUp();
			} else {$
				$(this).html('-');
				$("#flow"+ID).slideDown();
			}
		});
	});
	$('a[class=pol]').each(function() {
		div = 'div[id=d'+($(this).attr('id'))+']';
		$(div).slideUp('slow');
		/*$(this).click(function() {
			div = $('div[id=d'+($(this).attr('id'))+']');
			if ($(div).is(":hidden")) {
				$(div).show("slow");
			} else {
				$(div).slideUp();
			}
		});*/
	});
	$(divv).slideDown();
});