<script src="https://code.jquery.com/jquery-1.11.2.min.js"></script><script
type="text/javascript">
$(document).ready(function(){
$("h1").nextUntil("h1").not(
"#scomainh1" ).toggle();
$("h1").not(
"#scomainh1" ).children().css("position",
"relative");
$("h1").not(
"#scomainh1" ).children().css("top", "-5px");
$("h1").not(
"#scomainh1" ).css("line-height", "2%");
$("h1").not(
"#scomainh1" ).css("border-top", "5px solid
transparent");
$("h1").not(
"#scomainh1" ).css("border-bottom", "5px solid
transparent");
$("h1").not(
"#scomainh1" ).css("border-left", "5px solid
black");
$("h1").not(
"#scomainh1" ).css("padding-left", "5px");
$("h1").not(
"#scomainh1" ).css("margin-bottom", "40px");
$("h1").not(
"#scomainh1" ).css("cursor", "pointer");
$("h1:first").not(
"#scomainh1" ).removeAttr("style");
$("h1").not(
"#scomainh1" ).children().click(function(){
$(this).parent().nextUntil("h1").not(
"#scomainh1" ).toggle();
});
$("h1").not(
"#scomainh1" ).children().hover(function(){
$(this).toggleClass('Marigold');
});
});
</script>