$(function() {
    $('.sitemenu a').hover(
        function() {
            $(this).stop().css('backgroundColor', '#ff5500').animate({color: '#ffffff', backgroundColor: '#111188'}, 500);
        },
        function () {
            $(this).stop().css({color: '#CCCCCC', backgroundColor: 'transparent'});
    	}
    );
    $('.menuwin a').hover(
	    function() {
		$(this).stop().css('backgroundColor', '#ffff88').animate({color: '#ffff00', backgroundColor: '#333300'}, 'fast');
	    },
	    function () {
	        $(this).stop().css({color: '#00ccff', backgroundColor: 'transparent'});
	    }
    );
});
