$(function() {
    if (($.browser.msie && parseInt($.browser.version.substr(0, 1)) >= 7) || (!$.browser.msie)) {
        $('#main').wrap('<div class="shadow-one"><div class="shadow-two"><div class="shadow-three"><div class="shadow-four"></div></div></div></div>');
        $('.shadow-two').prepend('<div class="corner-a"></div><div class="corner-b"></div>');
    }
    $("ul#carousel").cycle({
        fx: 'fade',
        timeout: 5000,
        speed: 800,
        cleartype: true,
        cleartypeNoBg: true,
        startingSlide: 0,
        delay: 2500,
        pager: "#cnav",
        pagerAnchorBuilder: function(idx, slide) {
            return '<li><a href="#" id="n_slide' + idx + '"></a></li>';
        }
    });

    if ($("#sponsors #rotator").length != 0) {
        $("#sponsors #rotator div:not(:first)").addClass('hide');
        $("#sponsors #rotator").cycle({ fx: 'fade', timeout: 8000, speed: 1200, cleartype: true,
            cleartypeNoBg: true
        });
    }

    $("#loading_screen").hide();
}); 

