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

$(document).ready(function() { 
    $("table#searchResults") 
    .tablesorter({
    	headers: {0: {sorter: false}},
    	widthFixed: true, 
    	widgets: ['zebra']
    }) 
    .tablesorterPager({
    	container: $("#pager"),
    	positionFixed: false
    }); 
}); 

$(document).ready(function() {
  $('#faqList').find('dd').hide().end().find('dt').click(function() {
     $(this).next().slideToggle();
 	$('#faqList').find('dd').hide().end();
   });   
});



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

