$(function(){
    $(window).resize(function(){
        checkSize();
    });
    checkSize();
});
function checkSize(){
    if($(document).width() > 1230){
        $('#main').attr('width', '100%');
    }else{
        $('#main').attr('width', '1230');
    }
    if($(document).height() > 860){
        $('#main').attr('height', '100%');
    }else{
        $('#main').attr('height', '860');
    }
//    console.log($(document).width(),$(document).height());
}
