$(document).ready(function(){
			$(".menu")
			.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(){
	var windowHeight = $(window).height();
	windowHeight = windowHeight + 1;
	$("#outerwrapper").css({'height':windowHeight+'px'})
});


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

$(document).ready(function () {
	$('.menu li a:last').css({"width":"130px"});
});


