jQuery(
	function() {
		jQuery("[@jqPhotoPane]").click(
			function() {
				var me = jQuery(this)
				var photoPane = jQuery("[@id='" + me.attr("jqPhotoPane") + "']")
				photoPane.attr("src", me.find("img[@jqPhoto]").attr("jqPhoto"))
				return false;
			}
		);
	}
);
