// JavaScript Document
function tickInit() {}

$(document).ready(function() {
	$('td.content').css('height',$('body').height()-432+'px');
	window.onresize = function() {
		$('td.content').css('height',$('body').height()-432+'px');
	}
});
