﻿$(function () {
    var list = $('#menu_wrapper a');
    list.each(function () {
        $(this).hover(function () {
            $(this).stop(true, true).animate({
                marginTop: '-=3'
            }, 200, function () {
            });
        }, function () {
            $(this).stop(true, true).animate({
                marginTop: '+=3'
            }, 300, function () {
            });
        })
    })

    $("#siglaBigConceptHover").stop().animate({ opacity: 0.1 }, 1000);
    $("#siglaBigConcept").hover(function () {
        $("#siglaBigConceptHover").stop().animate({ opacity: 1 }, 500);
    }, function () {
        $("#siglaBigConceptHover").stop().animate({ opacity: 0.1 }, 500);
    })

    $("#siglaAMMOHover").stop().animate({ opacity: 0.1 }, 1000);
    $("#siglaAMMO").hover(function () {
        $("#siglaAMMOHover").stop().animate({ opacity: 1 }, 500);
    }, function () {
        $("#siglaAMMOHover").stop().animate({ opacity: 0.1 }, 500);
    })

})
