	$(function(){ 	
		$("#com_address1").watermark("Street Address Line 1");
		$("#com_address2").watermark("Street Address Line 2");
		$("#com_city").watermark("City");
		$("#com_state").watermark("State");
		$("#com_zip").watermark("Zipcode");
		$("#com_country").watermark("Country");
		$("#com_phone").watermark("Phone Number");
		$("#com_url").watermark("Website/URL");
		
		$('#company_desc').keyup(function(){
			limitChars('company_desc', 255, 'limitInfo');
		})
	});