$(document).ready(function(){

    // Adds a tableSorter with custom header, sorting classes and row striping

    $("table.tablesorter").tableSorter({
        sortColumn: 'name',                    // Integer or String of the name of the column to sort by.
        sortClassAsc: 'headerSortUp',          // Class name for ascending sorting action to header
        sortClassDesc: 'headerSortDown',       // Class name for descending sorting action to header
        headerClass: 'header',                 // Class name for headers (th's)
        stripingRowClass: ['even','odd'],      // Class names for striping supplyed as a array.
        stripeRowsOnStartUp: true              // Strip rows on tableSorter init.
    });

    // Adds an accessible and unobtrusive Tabs plugin

    $("tabs_container").tabs();

    // Functions from the interface plugin

    $("#editor_note").Draggable({
		zIndex: 	1000,
		ghosting:	true,
		opacity: 	0.7
    });

});