$(function($){
	/*setHeight();
	$(window).resize(setHeight);*/
})

function setHeight(){
	var height=$("html").attr('clientHeight')-470;
	if(height<540)height=540;
	$("#content .inner").height(height);
}

