;$(function(){
	$('#auto-document-add, #widget-auto-search, #auto-searchForm, #auto-index-add, #auto-widget-quick-search, #auto-index-edit').find('select[name=vendor_id]').change(function(){
		var self = this;
		var val = $(this).val();
		var container = $(this.form).find('select[name=model_id]').find('option').remove().end();
		container.attr('disabled', 'disabled');
		$.getJSON('/ajax/auto/models/' + val + '.js', {}, function(data){
			$.each(data, function(){
				$('<option></option>').val(this[0]).text(this[1]).appendTo(container);
			});
			container.removeAttr('disabled');
		});
	});
	$('table.grid tr').hover(
		function(){
			$(this).addClass('hover');
		},
		function(){
			$(this).removeClass('hover');
		}
	);
	/*
	$(document).bind('keyup', 'Ctrl+left', function(){
		if(href = $('.pager a.current').prev('a').attr('href')){
			window.location = href;
		}
	});
	$(document).bind('keyup', 'Ctrl+right', function(){
		if(href = $('.pager a.current').next('a').attr('href')){
			window.location = href;
		}
	});
	*/
});


