//fedmich	12:36 PM 10/10/2008

jQuery(function() {
	jQuery('input[name="b[question_value][114]"]')
		.siblings('a')
		.append($('<img src="/img/loading.gif" width="16" height="16" alt="" style="display:none;" id="vinloading" />'));

	jQuery('input[name="b[question_value][114]"]')
		.change(function(){
		jQuery('img#vinloading').show();
		var url = '/vin/?vin='+this.value;
		$.get(url,'', function(x){
			if(x.match('^//ok')){
				eval(x);
			}
			jQuery('img#vinloading').hide();
		});
	});
});
