// NAVIGATION
var bool,
f = {
	$:function (id){
		return document.getElementById(id);
	}
};


window.onload=init;

function init(){
	if(f.$("galleries")){
		f.$("galleries").onchange = function(){
			document.location.href = f.$("galleries").options[f.$("galleries").selectedIndex].value;
		};
		
	}
}

