// JavaScript Document
$(document).ready(function () {
	w_resize();
	


	
	function w_resize(){
	    var head = $('#head').height();
	    var bottom = $('#bottom').height();
	    var w = $(window).height();
	    var page = $('#page').height();
	    if (w>(head+page+bottom)){
	        var c = $('.col-wrap3').height();
	        $('#page').height(w-head-bottom);
	        $('#menu').height(w-head-bottom);
	    } 
	}
}
)



