/* $Id$ */

var Gallery = {

	run: function()
	{
		$$('.drop_down_sorter select').each(function(item) {
			item.observe('change', function(event) {
				document.location.href=item.value;
			});
		});
	}
}

new StartUp(Gallery);

//new StartUp(new AjaxLinks('.gallery .box', '.gallery .box ul.star-rating a'));
