﻿$(document).ready(function () {
    $('.main-menu').sDrop({ animate: false, duration: 150 });

    $('.jmenu ul a').mouseenter(function () {
        if (!$(this).attr('anim-color')){
        	$(this).attr('anim-color', $(this).css('color'));
        }
        $(this).animate({ "color": '#d91e00' }, 300)
    });

    $('.jmenu ul a').mouseleave(function () {
        var c = $(this).attr('anim-color');
        $(this).animate({ "color": c }, 300)
    });


});
