$(document).ready(function () 
{
	$("#tbxSearchItem").focus();
	$('#tbxSearchItem').autocomplete('http://playground.bradley.edu/~rpunia/tgdMVC/index.php/ajaxsearch/search', {
			//autoFill: true,
			selectFirst: false,
			delay: 0,
			minChars: 1
		}).result(function() {
	  	window.location = "http://playground.bradley.edu/~rpunia/tgdMVC/index.php/feature/details/"+$('#tbxSearchItem').val();
	});


	$(function() { 
	 
		// assign a click event to the exposed element, using normal jQuery coding 
		$("#loginTable").click(function() { 
	 
		    // perform exposing for the clicked element 
		    $(this).expose({api: true}).load(); 
	 
		}); 
	});
	

	
});//end document.ready fn	

