// This is the begining of the Form expander
// #######################################################################

$(function()
{

$(".formTrigger").click(function(event) {
event.preventDefault();
$("#FormBox").slideToggle();
});

$("#FormBox a").click(function(event) {
event.preventDefault();
$("#FormBox").slideUp();
});
});

// This is the begining of the content expander
// #######################################################################

$(function()
{

$("#contentTrigger").click(function(event) {
event.preventDefault();
$("#contentBox").slideToggle();
});

$("#contentBox a").click(function(event) {
event.preventDefault();
$("#contentBox").slideUp();
});
});