$(document).ready(function(){
	// handle search
	$('#query').click(function(){
		if($(this).val() == 'Search...') {
			$(this).val('');
		}
	});
	
	$('#query').blur(function(){
		if($(this).val() == '') {
			$(this).val('Search...');
		}
	});
	
	var a = $('#query').autocomplete({ 
		serviceUrl:'/autocomplete.php',
		minChars:2, 
		delimiter: /(,|;)\s*/, // regex or character
		maxHeight:400,
		width:400,
		zIndex: 9999,
		deferRequestBy: 0, //miliseconds
		//params: { country:'Yes' }, //aditional parameters
		noCache: false, //default is false, set to true to disable caching
		// callback function:
		onSelect: function(value, data){
			var item_id = data;
			window.location.href = "http://vgcollect.com/item/" + item_id;
		}
	});
	
});
