/* do sitewide effects*/
$(document).ready(function(){
	$('div#slideshow').innerfade({
		speed: 'slow',
		timeout: 4000,
		type: 'sequence',
		containerheight: '220px'
	});
	$('p.message').Highlight(1000, '#f6f868');
	$('p.error').Highlight(1000, '#d41111');
    $("tr:nth-child(odd)").addClass("odd");
	$('body').ScrollToAnchors(500);
});
