$(document).ready(function() {
	$("table.menu td").hover(function() {
		$("ul", this).show();
	},
	function() {
		$("ul", this).hide();
	});
	var stash;
	$(".menu ul").hover(function() {
		var img = $(this).prev().children("img");
		stash = img.attr("src");
		src = stash.substr(0, stash.length - 4);
		if(src.substr(-3) == "act") src = src.substr(0, src.length - 4);
		src += "_hov.gif";
		img.attr("src", src);
	},
	function() {
		$(this).prev().children("img").attr("src", stash);
	});
	
	var pad = $(document).height() - $("body").height() - $("table.footerBG1").height();
	$("table.footerBG1").css("padding-bottom", pad + "px");
});
