// this function is for the show and hide feature
$(document).ready(function() {

	// show/hide for audience quick links
	$('.showhide .trigger').next('.info').hide();
	$('.showhide .trigger').click(function() {
		$(this).next('.info').slideToggle('300');
		$(this).toggleClass("open");
		return false;
	});
	
   // makes any link box fully clickable
   $(".clickbox").click(function(){
   window.location=$(this).find("a").attr("href"); return false;
   });

   // table zebra with mouseover
   $(".zebra tr").mouseover(function(){$(this).addClass("over");}).mouseout(function(){$(this).removeClass("over");});
   $(".zebra tr:even").addClass("alt");

 });

