// Run

$(document).ready(function(){
$(".hidden-panel").hide();
$(".expand").click(function(){
$(".hidden-panel").slideToggle("100");
});
$(".expand").toggle(function(){
$(this).addClass("expanded");
}, function () {
$(this).removeClass("expanded");
});
$(".off").click(function(){
$(this).hide();
}, function () {
$(this).hide();
});
});