$(document).ready(function(){

	//Suggest
	$("#SearchInput").autocomplete("index2.php?option=com_ajax&no_html=1&action=Suggest", {
		delay: 1000,
	    minChars:3,
	    matchSubset:1,
	    autoFill: false,
	    matchContains:1,
	    cacheLength:0,
	    width: 250,
	    max: 30,
	    scroll: true,
	    selectFirst: true
	});
	
	$("#SearchInputMain").autocomplete("index2.php?option=com_ajax&no_html=1&action=Suggest", {
		delay: 1000,
	    minChars:3,
	    matchSubset:1,
	    autoFill: false,
	    matchContains:1,
	    cacheLength:1,
	    max: 30,
	    scroll: true,	    
	    selectFirst: true
	});	

});

