/* Makes jump to album work
http://www.allwebco-templates.com/support/S_menus_dropdown.htm */

function jump()
{
	combo = document.getElementById("jumpToAlbum");
	id = combo.options[combo.selectedIndex].value;
	
	if(id == 'H')
		url = 'http://www.iris.edu/hq/gallery/home';
	else
		url = 'http://www.iris.edu/hq/gallery/album/' + id;
		
	if(id != '')
		window.location=url;
}