/**
 * Created by JetBrains PhpStorm.
 * User: tommy
 * Date: 17/05/2011
 * Time: 23:14
 * To change this template use File | Settings | File Templates.
 */
function set_nav(){
    // The boxes for navigation
    $("li.hover")
            .removeClass('hover')
            .find('a')
            .hover(function(){
                // on hover
                // todo fade the background out
                $(this).stop().animate({
                    'backgroundColor': 'rgba(43, 41, 41, 0)'
                },500);
        },function(){
            // off hover
            // todo fade the background in
            $(this).stop().animate({
                'backgroundColor': 'rgba(43, 41, 41, 0.6)'
            }, 500);
        });
    // the menu
    $('nav.link')
        .removeClass('link')
        .find('a')
        .hover(function(){
            // on hover
            $(this).stop().animate({
                'backgroundColor': '#494646'
            },500)
        },function(){
            // off hover
            $(this).stop().animate({
                'backgroundColor': '#2B2929'
            },500)
        });
}
