<script>
$(document).ready(function() {
$("#flip").click(function() {
$("#panel").slideToggle("slow");
});
});
</script>
<script>
// When the user scrolls down 80px from the top of the document, resize the navbar's padding and the logo's font size
window.onscroll = function() {
scrollFunction()
};
function scrollFunction() {
if (document.body.scrollTop > 80 || document.documentElement.scrollTop > 80) {
document.getElementById("site-navbar").style.padding = "0px";
} else {
document.getElementById("site-navbar").style.padding = "15px";
}
}
</script>
<script>
$(window).scroll(function() {
if ($(window).scrollTop() > 80) {
$("#gototop").fadeIn("slow");
} else {
$("#gototop").fadeOut("fast");
}
});