$(document).ready(function() {

    // Detect if not IE6 and apply shadow effect
    if (!($.browser.msie && $.browser.version.substr(0,1)<7)) {
        $('#nav ul li.active a span').dropShadow({left: 0, top: 0, opacity: .7, blur: 4});
        $('#featured_games .button').hover(function(){
            $('a', this).dropShadow({left: 0, top: 0, opacity: .6, blur: 4, color: '#ff0000'});
        }, function(){
            $('a', this).removeShadow();
        });
    }

    // Toggle tabs
    $('#tabs ul li a').click(function() {
        $.activetab = $(this).attr('href');
        $('#tabs ul li a').removeClass('active')
        $(this).addClass('active');
        $('#tab_content .tab_details').hide();
        $($.activetab).show();
        return false;
    });

});
