﻿$(document).ready(function() {
    $(".menu ul li").corner("round 4px");
    $(".menu ul li").hover(function() {
        //$(this).animate({ backgroundColor: "#bbb", opacity: 1 }, 'fast');
    }, function() {
        //$(this).animate({ backgroundColor: "#444", opacity: 0.35 }, 'fast');
    });
});