$(function(){
  $('#left-menu h3')
    .css('cursor','pointer')
    .click(function(){
      $('#left-menu h3').not(this).next().slideUp('normal');
      $(this).next().slideToggle('normal');
      // $('#left-menu h2').next().slideUp('normal');
      // $(this).next().slideDown('normal');
    })
  ;
  //$('#left-menu h2').not(':first').next().hide();
  $('#left-menu h3').next().hide();
  $('#left-menu div:has(.sel)').slideDown('slow');

});

function prod_img_show() {
  $('.bigpic').lightbox({start:true,events:false});return;
}