﻿function menu() {
	$('.collapsible a').click(function(e) {
		e.preventDefault();
		$(this).parent('.collapsible').next().toggle('slow');
		$(this).next().toggle();
	});
}

function additionalGraphics() {
	$('#editable:not(.r)').attr('title', 'Click per modificare').addClass('r');
}

function externalLinks() {
	$('a.ext, .pdf a').click(function(e) {
		e.preventDefault();
		window.open(this.href);
	});
}