	$(document).ready(function(){
		$('td.bluebox').click(function(){
			$('input',$(this)).focus()
			});
		$('td.bluearea').click(function(){
			$('textarea',$(this)).focus()
			});
		$('td.bluearea-wide').click(function(){
			$('textarea',$(this)).focus()
			});
	}); /* .ready() */
 
