

function jumpToGallery() {
 dropdown = document.getElementById('gallery_select');
 for(i=0; i < dropdown.length; i++)
 {
	if(document.getElementById('gallery_select').options[i].selected == true)
	{
		//alert(document.getElementById('gallery_select').options[i].value);
		window.location.href = document.getElementById('gallery_select').options[i].value;
	}
 }
}
