// JavaScript Document
$(function() {
	$('#photolist a').lightBox();
   });

function initMenu() {
  $(".leftmenu ul").hide();
  $(".menushop ul").slideDown('normal');
  $(".menushop .menu_header").css('background-image', 'url(/images/mastersil/catalog_closer.gif)');

  
  $(".menu_header").click(
    function() {
      var checkElement = $(this).next();
      if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
	  	$(checkElement).slideUp('normal');
		$(this).css('background-image', 'url(/images/mastersil/catalog_opener.gif)');
        return false;
        }
      if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
        //$('#accordion div:visible').slideUp('normal');
        checkElement.slideDown('normal');
		$(this).css('background-image', 'url(/images/mastersil/catalog_closer.gif)');
        return false;
        }
      }
    );
  
  
$('.products li').hover(function() {
				  var checkElement = $(this).children().last();
				  if((checkElement.is('div'))) {
					//$(checkElement).animate({"top": "+=50px"}, "fast");
					$(checkElement).hide();
					return false;
				  }
		}, function() {
				  var checkElement = $(this).children().last();
					//$(checkElement).animate({"top": "-=50px"}, "fast");
					$(checkElement).show();
					return false;
		});
  
  }


jQuery(document).ready(function() {
	initMenu();
});


