// JavaScript Document
jQuery(document).ready(function() {
	$('#board').click(function(){
	     $('#hiderow').show();
	});
	$('#table').click(function(){
		$('#hiderow').hide();
	});							
//---
// END	
});