var isIE = false;
var isIE7 = false;

function nav() {
    if ($('#nav').length) {
        if (!isIE) $('#nav').find("a.active span").css({
            'border-bottom': 0,
            'margin-bottom': '3px'
        });
        $('#nav').find("a[class!='active']").css({

        }).hover(function () {
            if (!isIE) $(this).find('span').stop().animate({
    
            }, 'fast')
        }, function () {
            if (!isIE) $(this).find('span').stop().animate({
            
            }, 'fast')
        });
        if (!isIE) $(function () {
            $("#nav ul").lavaLamp({
                fx: "backout",
                speed: 1000,
                padding: 10 
            })
        })
    }
}


               
$(document).ready(function () {

});
$(window).load(function () {
    nav()
});
