<!--

/* RESIZE FUNCTION ONLOAD/ONRESIZE */

function resize_page() {
	
	var body_size = getWinSize();
	var body_width = body_size.width;
	
	var navi = get_id('navi');
	var content = get_id('content');
	var puzzle = get_id('puzzle-body');
	
	body_height = content.offsetHeight - 78;
	if(ie_version == 7) {
		body_height += 40;
		content.style.height = (content.offsetHeight + 40) + "px";
	}
	navi.style.height = body_height + "px";
	
	puzzle_margin = 760 - puzzle.offsetWidth - 55;
	if(ie_version == 7) puzzle_margin -= 360;
	
	puzzle.style.marginLeft = puzzle_margin + "px"; 
}

//-->
