// JavaScript Document
$(document).ready(function(){
$("#on1").click(function(){
    $("#off1").slideToggle("slow");
  });
});
