function changePage(element){
	document.location.href=element.value;
}

function galleryNewWindow() {
	jQuery('#galleryContainer a').not('a[rel], a#bottomNavClose').click(function(){
		window.open(this.href);
		return false;
	});
};

jQuery(document).ready(function(){
	galleryNewWindow();
});