jQuery(document).ready(function() {
  jQuery('#tableList').find('dd').hide().end().find('dt').click(function() {
  	location.hash = 'target';
     jQuery(this).next().slideToggle();
 	jQuery('#tableList').find('dd').hide().end();
   });   
});

jQuery(document).ready(function(){
			$(".nav")
			.superfish({
				animation : { opacity:"show",height:"show"}
			});
});

$(document).ready(function () {
	$('table.searchResults tbody tr:even').addClass("even");
	$('table.searchResults tbody tr:odd').addClass("odd");
});

$(document).ready(function () {
	$('table tr').hover(function () {
		$(this).addClass("hover");
	},function() {
		$(this).removeClass("hover");
	});
});

$(document).ready(function () {
	$('table.searchResults tr').hover(function () {
		$(this).addClass("hoverSearch");
	},function() {
		$(this).removeClass("hoverSearch");
	});
});

$(document).ready(function(){
	$(".boxwrapper table").each(function(){
		$(this).find('tr:last').addClass("last");
	})
});