function initMenu() {
  $('ul.menu ul').hide();
	
  $('ul.menu > li > a').click(
    function() {
      var checkElement = $(this).next();
      if((checkElement.is('ul.menu ul')) && (checkElement.is(':visible'))) {
        return false;
        }
      if((checkElement.is('ul.menu ul')) && (!checkElement.is(':visible'))) {
        $('ul.menu ul:visible').slideUp(200).parent().removeClass('menu-active');
        checkElement.slideDown('normal').parent().addClass('menu-active');
        return false;
        }
      }
    );
	
	$('ul.menu ul > li > a').click(
    function() {
      var checkElement = $(this).next();
      if((checkElement.is('ul.menu ul ul')) && (checkElement.is(':visible'))) {
        return false;
        }
      if((checkElement.is('ul.menu ul ul')) && (!checkElement.is(':visible'))) {
        $('ul.menu ul ul:visible').slideUp(200).parent().removeClass('menu-active');
        checkElement.slideDown('normal').parent().addClass('menu-active');
        return false;
        }
      }
    );
	
  }

$(function(){	
		   
	initMenu();

	$("a[rel=fancybox], a[rel=clearbox]").fancybox({ 'zoomSpeedIn': 1000, 'zoomSpeedOut': 500, 'overlayShow': true, 'enableEscapeButton': true, 'titleShow': false, 'transitionIn': 'elastic', 'transitionOut': 'elastic' });

	var path = location.pathname.substring(1);	
	if (path) {
		$('ul.menu2 li a[href="' + path + '"]').addClass('menu-active');
	}
	
});
