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

	$('.new_route_detail_dialog').click(function() {
	    //alert($(this).parents(".route").children(".new_shared_dialog").html());
		$dialog.html($(this).parents(".route").children(".route_detail_dialog").html());
		$dialog.dialog('open',{width:'300px'});
		return false;
	});

});


