
$(function() {
	
	if ($("#stats_table").length > 0) {
		$("#stats_table").tablesorter();
	} 
	
	if ($("#image_gallery").length > 0) {
		$("a[rel='enlarge']").colorbox({scalePhotos:true, maxWidth:"80%", maxHeight:"90%"});
	}
	
	$("a[rel='showvid']").click(
		function(){
			thisclass = $(this).attr('title');
			thisclass = thisclass.replace('vid','');
			$.fn.colorbox({href:"http://www.kbsa.org.uk/about_kbsa/video/" + thisclass + " #video_cont"});
			return false;
		}
	);
	
		   
});