	$(document).ready(function(){ 
		// use this to make entire LI's clickable and hoverable for news and events
		$(".full-hover li").click(function(){location.href = $(this).find("a").attr("href");}).hover(function () {$(this).addClass("hover");},function () {$(this).removeClass("hover");});
		// home page slideshow
		if ( $('#slides').length ) { //do something 		
			$('#slides').cycle({fx:'fade', timeout:5000, speed:1000, cleartype:  1,pager:'#slide-nav'});
			$('#slide-nav a').click(function() { 		
				$('#slides').cycle('pause'); 
						return false;
			});
		}
		$('#content img.caption').jcaption({ //Find all images in the body and run a function on each of them		
			copyAlignmentToClass: true
		}); 
                $.tablesorter.defaults.widgets = ['zebra']; 
		$("table.sort-me").tablesorter(); // tables marked sort-me will allow columns to be sorted 
		$(".fancy-table tr:even").addClass("alt"); // tables marked fancy-table will have styling and alt table rows				
	});



