//Remove the first element and place it at the end
function right()
{
	var container = $('#picker .thumbnails');
	var img = container.children('a').first().detach();
	img.appendTo(container);
	return false;
}
//Remove the last element and place it at the beginning
function left()
{
	var container = $('#picker .thumbnails');
	var img = container.children('a').last().detach();
	img.prependTo(container);
	return false; 
}

function updatePage(select)
{
	var product = select.value;
	var url = window.location.href;
	var segment = url.slice(url.indexOf('products'));
	var parts = segment.split('/');
	parts[2] = product;
	var newseg = '';
	for(var i=0; i < parts.length; i++)
		newseg += '/'+parts[i];
	newseg = newseg.substr(1);
	window.location = url.replace(segment, newseg);
}
