function menushow(element) {
  ulelement = element.lastChild;
  if (ulelement.tagName == 'UL') {
    act = ulelement;
  }
  else {
    act = false;
  }
    if (act) {
    act.style.display='block';
  }
}

function menuhide(element) {
  ulelement = element.lastChild;
  if (ulelement) {
    if (ulelement.tagName == 'UL') {
      act = ulelement;
    }
    else {
      act = false;
    }
    if (act) {
      act.style.display='none';
    }
  }
}

jQuery.noConflict();
jQuery(document).ready(function(){
    jQuery('.goog-icon-list-icon-link img').after('<span class="gal_zoom">Zoom</span>');
		jQuery('.goog-icon-list-icon-link').mouseenter(function() {
			jQuery(this).find('.gal_zoom').fadeIn();
		});
		jQuery('.goog-icon-list-icon-link').mouseleave(function() {
			jQuery(this).find('.gal_zoom').fadeOut();
		});
 });
