﻿
// Select country navigation
function MM_jumpMenu(targ, selObj, restore) { //v3.0
	eval(targ + ".location='" + selObj.options[selObj.selectedIndex].value + "'");
	if (restore) selObj.selectedIndex = 0;
}

// Popup for images and print preview
function poppic(queryString, w, h) {
	var url = "/Templates/Pages/ImagePopup.aspx?image=" + queryString;
	window.open(url, "", 'status=0,scrollbars=1,width=' + w + ',height=' + h);
}


// Show gallery
jQuery(document).ready(function($){
	$(".showGallery").click(function (evt) {
		evt.preventDefault();
		$('.galleryContent').slideToggle();

		if ($('.gallery').hasClass('open')) {
			$('.gallery').removeClass('open');
		} else {
			$('.gallery').addClass('open');
		}
			
		
	});
});


