
//add controls to the game selector
var pulldowns = $$('#media_menu select');
pulldowns.each(function(element, index) {
	element.addEvent('change', function(e) {
		var address = element.value;
		window.location = address;
	});	
})


