$(document).ready(function(){  
    $('.scroll-pane').jScrollPane();    
    $('#footer ul li:last').addClass('last');  
});


//Contact form toggle  
$(document).ready(function() {      //  This means the "do it after page DOM loads"

	$("#joslexform").hide();  //hide on load


      $('.button').click(function() {
          $('#joslexform').slideToggle();      //  Smoothly Show / Hide the content block
      });
});
      

function ToggleTextbox(pValue) {
  var textBox = document.getElementById('specifyBox');
  if(pValue) {
    textBox.style.display = "block";
  }
  else {
    textBox.style.display = "none";
  }
}