﻿jQuery(document).ready(function () { var hasColumnSupport = function () { var element = document.documentElement; var style = element.style; if (style) { return typeof style.columnCount == "string" || typeof style.MozColumnCount == "string" || typeof style.WebkitColumnCount == "string" || typeof style.KhtmlColumnCount == "string" } return null }; var menu = jQuery('#gallery_menu'); jQuery('li.galleryMenuLink').mouseover(function () { menu.show() }); menu.mouseleave(function () { menu.hide() }); jQuery('li.linkNoMenu').mouseover(function () { menu.hide() }); menu.find('li.galleryMenuClickable').click(function () { location.href = jQuery(this).find('a').attr('href') }); jQuery('a.popup').click(function (event) { event.preventDefault(); window.open(jQuery(this).attr('href'), '_blank') }); if (!hasColumnSupport()) { jQuery('#menu_page').columnize({ columns: 2 }) } });
