﻿$(function() {
    $('#navigation>ul>li>a').hover(
        function() {
            $(this).animate({
                borderBottomWidth: '4px',
                paddingBottom: '3px',
                borderBottomColor: '#ef3e35'
            }, 'fast', 'swing');
        },
        function() {
            $(this).animate({
                borderBottomWidth: '0px',
                paddingBottom: '7px',
                borderBottomColor: '#000'
            }, 'fast', 'swing');
        });
    $('ul.secondaryNav>li').hover(
        function() {
    if ($(this).hasClass('selected')) {
            }else{
                $(this).animate({

                    paddingLeft: '20px'
                }, 'fast', 'swing');
            }
        },
        function() {
            if ($(this).hasClass('selected')) {

            } else {
                $(this).animate({
                    paddingLeft: '30px'
                }, 'fast', 'swing');
            }
        });
});
