// JavaScript Document

//lightbox image display
$(function() {
	$('a.lightbox').lightBox(); // Select all links with lightbox class
});

//table sorting
$(function() {
	$('#mytable').tablesorter({sortList: [[2,1]]}); 
});