$(document).ready(function(){
    
    var $dialog = $('<div></div>')
    
        .dialog({
			autoOpen: false,
			title: 'Nuova Tratta'
		});

	$('#new_route_dialog').click(function() {
	    //alert($(this).parents(".route").children(".new_shared_dialog").html());
		$dialog.html($("#route_dialog").html());
		$dialog.dialog('open');
		return false;
	});

});


