// These control the expansion and contraction of the user menus on the right bar of the page
// "e-c" = Expand-Contract.

function toggleExpand(div, display) {
    if (display == 'none') {
        Effect.SlideDown(div, {duration: 0.4});
        jobsexpanded = !jobsexpanded;
	}
    else {
        Effect.SlideUp(div, {duration: 0.4});
        jobsexpanded = !jobsexpanded;
    }
}
