      $(document).ready(function() {
        $("#bigmenu a").hover(
          function() {
            $("#largeImg").attr({ src: this.title + '.jpg' });
            $(".hover").removeClass("hover")
            $(this).addClass("hover");
          },
          function() {
            $("#largeImg").attr({ src: this.title + '.jpg' });
            $(".hover").removeClass("hover")
            $(this).addClass("hover");
          }
        );
        
        $('#options').click(function () {
          $('.contentMain').hide();
          $('.contentSpec').hide();
          $('.contentAdditional').show();
        });
        
        $('#optionsOn').click(function () {
          $('.contentSpec').hide();
          $('.contentAdditional').hide();
          $('.contentMain').show();
        });
               
        $('.mainpage').click(function () {
          $('.contentSpec').hide();
          $('.contentAdditional').hide();
          $('.contentMain').show();
        });
        
        $('#specs').click(function () {
          $('.contentAdditional').hide();
          $('.contentMain').hide();
          $('.contentSpec').show();
        });
        
        $('#specsOn').click(function () {
          $('.contentAdditional').hide();
          $('.contentSpec').hide();
          $('.contentMain').show();
        });
        
        $('#addspecs').click(function () {
          $('.contentAdditional').hide();
          $('.contentMain').hide();
          $('.contentSpec').show();
        });
        
        $('#specoptions').click(function () {
          $('.contentMain').hide();
          $('.contentSpec').hide();
          $('.contentAdditional').show();
        });
        
        $(function() {
          $('#lightBoxStart .rightimages p a').lightBox();
          $('.productdetails p a.boxlight').lightBox();
          $('.techBox p a').lightBox();
          $('.techBox a').lightBox();          
        });        
      });