$(function(){

    $(window).resize(function(){

        checkSize();

    });

    

    checkSize();

});



function checkSize(){

    if($(document).width() > 1024){

        $('#main').attr('width', '100%');

    }else{

        $('#main').attr('width', '1024');

    }



    if($(document).height() > 680){

        $('#main').attr('height', '100%');

    }else{

        $('#main').attr('height', '680');

    }

    console.log($(document).width(),$(document).height());

}