﻿// <refrence path="../jquery/jquery-1.3.2-vsdoc2.js" />
$(function () {

    $("#menu .menuspecial").hover(function () {
        $("#menu .menuspecial").stop().animate({ opacity: 0.4 }, 100);
        $(this).stop().animate({ opacity: 1 }, 100);
    }, function () {
        $("#menu .menuspecial").stop().animate({ opacity: 1 }, 1000);
    });

});
