﻿$(document).ready(function () {
    $("ul.menu span").css("opacity", "0");
    $("ul.menu span").hover(function () {
        $(this).stop().animate({
            opacity: 1
        }, "slow");
    },
	function () {
	    $(this).stop().animate({
	        opacity: 0
	    }, "slow");
	});
    $('span.dl').hover(
		function () { $(this).stop().animate({ backgroundColor: '#3F3F3F' }, 500); },
		function () { $(this).stop().animate({ backgroundColor: '#1C1C1C' }, 1500); }
	);
    $('div.sidecolumn div.grow').height($(".maincolumn").height() - $('div.sidecolumn div.grow').prev().height() - 6);
});
