$().ready(function() {
	var win_height = $(document).height() - 10;
	var box_height = win_height / 2;

	$('#enter1, #enter2').find('td').height(box_height);

	$('#enter2').addClass('hand').click(function() {
		document.location = $(this).find('a').eq(0).attr('href');
	});
});

