// JavaScript Document

    		// Left Navigation Dropdown
    		
    		$(document).ready(function () {
    		$(".below").hide();
    		
    		$(".below_beginning").click(function () {
    		$(".below").slideToggle(350);
    		return false;
    		});
    		});
    		
    		function showNav(element) {
    		if (element.className == "below_beginning") {
    		element.className = "below_beginning_down";
    		} else {
    		element.className = "below_beginning";
    		}
    		}
   
    		// Top Navigation Dropdown
    		
    		$(document).ready(function () {		
    		
    		$('.topnavigation div.navelement').hover(
    		function () {
    		//show its submenu
    		$('ul.dropdown_nav', this).slideDown(100);
    		
    		}, 
    		function () {
    		//hide its submenu
    		$('ul.dropdown_nav', this).slideUp(100);			
    		}
    		);
    		
    		});
    
