$(document).ready(function(){ 
	$('#text').focus();
	
	$('#action').change(function() {
		var action = $(this).val();
		if (action.substr(0, action.indexOf('2')) == 'lat') {
			$('#omit').removeAttr('disabled');
			$('#omit_panel').show('normal');
		}
		else {
			$('#omit').val('');
			$('#omit').attr('disabled', 'disabled');
			$('#omit_panel').hide('normal');
		}
    });
	
	$('#text').focus(function() { 
		$('#text_wrap').css('backgroundPosition', 'bottom left');
	});
	$('#text').blur(function() { 
		$('#text_wrap').css('backgroundPosition', 'top left');
	});
	
	$('#selector').click(function() {
		$('#text').focus();
		$('#text').select();
	});
}); 
