$(document).ready(function(){
  $(".valForm").val("true");
  homeSlider = new rockSlide("#slideShow", "fade", 2000, 5000, "");
  
  
  //CHECKBOX
  $(".checkBox").click(function(){
    if($(this).hasClass("radio")){
      $(this).parent().children(".checkBox").children("div.box").children("span").removeClass("active");  
    }
    
    $(this).children("div.box").children("span").toggleClass("active");
    if($(this).children("div.box").children("span").hasClass("active")){
      $(this).children("input").prop('checked', true);
    } else {
      $(this).children("input").prop('checked', false);
    }
  });

});

var menuExpanded = false;
function toggleMenu() {
  if (menuExpanded) {
    $(".menuItem").fadeOut();
    menuExpanded = false;
  } else {
    $(".menuItem:not(.homeButton)").fadeIn();
    menuExpanded = true;
  }
}