var initShow = function() {
	$(".stage .pics a").click(function() {
		var largePath = $(this).attr("href");
		var largeAlt = $(this).attr("title");
		if($(this).attr("id") == "minimap") {
			$("#theShow").attr({'class':"showMe"});
			$("#theShow iframe").attr({ src: largePath });
			return false;
		}
		else {
			$("#theShow").attr({'class':""});
			$("#theShow img").attr({ src: largePath, alt: largeAlt });
			return false;
		}
	});
}

$(document).ready(function() {
	initShow();
});