﻿$(document).ready(function() {
    fadeEffects();
});

function fadeEffects() {
    $(".fadeLink").hover(function() {
        $(this).animate({ color: '#fff' }, { queue: false, duration: 500 });
    }, function() {
        $(this).animate({ color: '#ffab00' }, { queue: false, duration: 1500 });
    });

    $(".underline").hover(function() {
        $(this).animate({ color: '#666' }, { queue: false, duration: 500 });
    }, function() {
        $(this).animate({ color: '#000' }, { queue: false, duration: 1000 });
    });

    $(".more_link a").hover(function() {
        $(this).animate({ color: '#fff' }, { queue: false, duration: 500 });
    }, function() {
        $(this).animate({ color: '#ffab00' }, { queue: false, duration: 1000 });
    });

    //$(".menuItemLeft").fadeIn(2000);
}