

	function retailFormSubmit(e)
	{
		if(typeof(e) != 'undefined')
			Event.stop(e);
		else
		{
			showLoading('retailResults');
			new Ajax.Updater('retailResults', ajaxUrl, { method:'get',parameters: 'action=retailSearch&' + $('retailForm').serialize()});
		}
	}
	
	function highlightCategory(categoryId)
	{
		var categories = {1:'shopNavFlatware',2:'shopNavServing',3:'shopNavSteak',4:'shopNavPlastic','sale':'shopNavSale'};
		if(categories[categoryId])
			$(categories[categoryId]).addClassName('active');
	}

