$(window).resize(function() {
	menuHeight ();
});

$(window).load(function() {
	menuHeight ();
});

function menuHeight () {
	height = $(document).height() + 'px';
	$('#overlay_column_wrapper').css('height', height);
}

$(document).ready(function() {
	$(".sawTable tr:even").addClass("alt");
	$(".sawTable tr").mouseover(function() {
		$(this).addClass("over");
	});
	$(".sawTable tr").mouseout(function() {
		$(this).removeClass("over");
	});
});
