$(document).ready(function () {
    if ( $.browser.msie ) {
        resizeChk();
        window.attachEvent( "onresize", resizeChk );
    }
});

if ( typeof swfobject == 'object' ) {
    var flashvars = {};
    var params = {
        menu : 'false',
        bgcolor : '#191919'
    };
    var attributes = { id : 'main-swf', name : 'main-swf' };
    swfobject.embedSWF('swf/main.swf', 'flash-content', '800', '600', '8', '', flashvars, params, attributes);
}


function resizeChk () {
    if ( $(window).width() < 800 || $(window).height() < 600 ) {
        if ( $('html').css('overflow') == 'auto' ) return;
        $('html').css({'overflow':'auto'});
        $('body').css({'overflow':'auto'});
    }
    else {
        if ( $('html').css('overflow') == 'hidden' ) return;
        $('html').css({'overflow':'hidden'});
        $('body').css({'overflow':'hidden'});
    }
}
