
$().ready(function() {
	
	$("#courseSearch").result(function(event, courses, formatted) {
		if (courses)
			$(this).parent().next().find("input").val(courses[1]);
	});
	

	$("#courseSearch").autocomplete("/courses/autoComplete", {
		width: 260,
		minChars:1,
		cacheLength:1
	}).result(function(event, item, formatted) { 
      $(this).parents().find('form:first').submit(); 
  }); 

	$('input#courseSearch').setOptions({
		matchSubset:false,
		matchContains: false,
		minChars: 1,
		delay: 0,
		autoFill: true,
 		max: 10
});
	
});

