$(document).ready(function(){ 
	$("#randcat").click(function(){
	 $("#randcatdata").load("index.php?f=ajax&m=randomcat");
	});
	
	$("#keyword").autocomplete("index.php", { // Search page search box
		width: 260,
		selectFirst: false,
		cacheLength: 10,
		delay: 200,
		minChars: 2
	});
	
	$("#search").autocomplete("index.php", { // header box
		width: 260,
		selectFirst: false,
		cacheLength: 10,
		delay: 200,
		minChars: 2
	});
	
	$("#search2").autocomplete("index.php", { // navi bar box
		width: 260,
		selectFirst: false,
		cacheLength: 10,
		delay: 200,
		minChars: 2
	});
	
	$("#quotecartbtn").click(function() { 
		$(this).next('#addtoquotecart').show(); 
		$('#quotecartbtn').hide(); 
	});

});