// JavaScript Document
/*** Temporary text filler function. Remove when deploying template. ***/
var gibberish=["This is just some filler text", "Hello and welcome! My name is Awesome!", "Demo content nothing to read here"]
function filltext(words){
for (var i=0; i<words; i++)
document.write(gibberish[Math.floor(Math.random()*3)]+" ")
};
$(document).ready(function() 
    { 
        $(".tableSort2").tablesorter({		 
        // pass the headers argument and assing a object 
        headers: { 
            // assign the secound column (we start counting zero) 
            2: { 
                // disable it by setting the property sorter to false 
                sorter: false 
            }
        }}
		); 
    }
);
$(document).ready(function() 
    { 
        $(".tableSort").tablesorter(); 
    }
);