
/**
 * Global init
 */
$(document).ready(function () {
	
	// init search autocomplete
	oSearchHints = new Hints('#searchfield');
	oSearchHints.ajaxTimeout = 100;
	oSearchHints.hintSource = '/search_ajax.php?action=keywordhint&query=%s';
	oSearchHints.renderHintCallback = function (item) {return item.search};
	oSearchHints.itemPickedCallback = function (item) {
		if (item != undefined)
			$('#searchfield').val(item.search);
		$('#searchform').submit();
		};
	
	// set change handler for currency picker
	$('#currency').change(function (){applyCurrency()});
});

/**
 * Reload page to apply new currency
 */
function applyCurrency()
	{
	obj = document.getElementById('currency');
	window.location = window.location.pathname + '?currency=' + obj.options[obj.selectedIndex].value;
	}


