function toggle_elements(id, link_id) {	$("#"+id).toggle();	$("#"+link_id+" span").text($("#"+link_id+" span").text() == '>>' ? '<<' : '>>');}
