Event.observe(window, 'load', SetSelectChange);

var URIParts = window.location.href.split('/');

function SetSelectChange()
{
	$('Wines').onchange = WinesChanged;
	$('Foods').onchange = FoodsChanged;
}

function WinesChanged(evt)
{
	if ($('Wines').value)
	{
		if (URIParts[4] == 'popup')
		{
			window.location.href = '/index.php/popup/' + URIParts[5] + '/' + URIParts[6] + '/wine/' + $('Wines').value + '/index.html';
		}
		else
		{
			window.location.href = '/index.php/' + URIParts[4] + '/' + URIParts[5] + '/wine/' + $('Wines').value + '/index.html';
		}
	}
}

function FoodsChanged(evt)
{
	if ($('Foods').value)
	{
		if (URIParts[4] == 'popup')
		{
			window.location.href = '/index.php/popup/' + URIParts[5] + '/' + URIParts[6] + '/food/' + $('Foods').value + '/index.html';
		}
		else
		{
			window.location.href = '/index.php/' + URIParts[4] + '/' + URIParts[5] + '/food/' + $('Foods').value + '/index.html';
		}
	}
}
