$(document).ready(function() {
  $('a.lightbox').lightbox();
});

$(document).ready(function() {
	var opened_ul;
	
    $('.productsPage').append($('#categoryMenu').html()); 
    $('#categoryMenu, .productsPage ul').hide();
	
	var pathname = window.location.pathname;
	active_a = $('ul > li > ul > li a[href$="'+pathname+'"]');
	if (active_a) {
		active_a.parents('ul').show();
		opened_ul = active_a.parent().parent();
	}
	
    $('.productsPage > a').click(function(){
		$('.productsPage > ul').show('blind', null, 800);
		return false;
    });
    
    $('.productsPage > ul > li > a').click(function(){
		if ($(this).next('ul').length > 0) {
			$(opened_ul).hide('blind', null, 400);
			opened_ul = $(this).next('ul').show('blind', null, 800);
			return false;
		}
    });
});
