 $(function() {
 $("#acc").click(function () {
      $("#contentofselectionsr").hide();
      $("#contentofselectionacc").fadeIn();
      $("#contentofselectionproducts").hide();
      $(".acc").css("font-weight", "bold");
       $(".nbt").css("font-weight", "normal");
        $(".sr").css("font-weight", "normal");
       }); 
      $("#nbt").click(function () {
      $("#contentofselectionsr").hide();
      $("#contentofselectionacc").hide();
      $("#contentofselectionproducts").fadeIn();
      $(".nbt").css("font-weight", "bold");
       $(".acc").css("font-weight", "normal");
        $(".sr").css("font-weight", "normal");
       }); 
       $("#sr").click(function () {
      $("#contentofselectionsr").fadeIn();
      $("#contentofselectionacc").hide();
      $("#contentofselectionproducts").hide();
      $(".sr").css("font-weight", "bold");
       $(".nbt").css("font-weight", "normal");
        $(".acc").css("font-weight", "normal");
         $('#contentofselectionsr').load("http://juniatacomputer.com/support/index.html").show(); 

       }); 
       
 });
 
  $(function(){
        $('.slide-out-div').tabSlideOut({
            tabHandle: '.handle',                     //class of the element that will become your tab
            pathToTabImage: '../images/question.png', //path to the image for the tab //Optionally can be set using css
            imageHeight: '102px',                     //height of tab image           //Optionally can be set using css
            imageWidth: '40px',                       //width of tab image            //Optionally can be set using css
            tabLocation: 'left',                      //side of screen where tab lives, top, right, bottom, or left
            speed: 300,                               //speed of animation
            action: 'click',                          //options: 'click' or 'hover', action to trigger animation
            topPos: '200px',                          //position from the top/ use if tabLocation is left or right
            leftPos: '20px',                          //position from left/ use if tabLocation is bottom or top
            fixedPosition: false                      //options: true makes it stick(fixed position) on scroll
        });

    });
    
$(document).ready(function(){
  /*  $("#commentForm").validate();*/
  });