

function fitToSize(){
	left = document.getElementById('left').style;
right = document.getElementById('right').style;
list = document.getElementById('list').style;
leftbg = document.getElementById('leftbg').style;

height = window.innerHeight;

if(height <= 710){
    left.top = height - 250;
    right.top = height - 250;
    list.top = height - 250;
    leftbg.top = height - 250;
} else {
	left.top = 480;
    right.top = 480;
    list.top = 480;
    leftbg.top = 480;
}
}

window.onresize = fitToSize;

