﻿	$(document).ready(function(){
		$('.textbox_wrapper').click(function(){
				$('input',$(this)).focus();
			});
		$('.textarea_wrapper').click(function(){
				$('textarea',$(this)).focus();
			});
	});
	
