	$(document).ready(function() {
		try {
		$('#left-column> div.left_menu_container').hide();
		$('#left-column> div.green_top_left_menu, #left-column> div.green_left_menu, #left-column> div.green_bottom_left_menu').bind( "hover", { speed:100, delay:100 },
			function() {
				menuHighlight($(this),'left_menu_container');
			}
 		);
		$('#left-column> div.green_top_left_menu').hover(
			function() {
				$(this).find('a').removeClass('green_top_left_menu');
				$(this).find('a').addClass('green_top_left_menu_highlight');
			},
			function() {
				$(this).find('a').removeClass('green_top_left_menu_highlight');
				$(this).find('a').addClass('green_top_left_menu');
			}
		);	
		$('#left-column> div.green_left_menu').hover(
			function() {
				$(this).find('a').removeClass('green_left_menu');
				$(this).find('a').addClass('green_left_menu_highlight');
			},
			function() {
				$(this).find('a').removeClass('green_left_menu_highlight');
				$(this).find('a').addClass('green_left_menu');
			}
		);	
		$('#left-column> div.green_bottom_left_menu').hover(
			function() {
				$(this).find('a').removeClass('green_bottom_left_menu');
				$(this).find('a').addClass('green_bottom_left_menu_highlight');
			},
			function() {
				$(this).find('a').removeClass('green_bottom_left_menu_highlight');
				$(this).find('a').addClass('green_bottom_left_menu');
			}
		);	
		} catch(err) {}
		
		try {
		$("#left-column").find("a.blue_left_menu").each(function(i,n) {
			var current_href = $(this).attr("href");
						
			if (window.location == n.toString()) {
				$(this).parent().parent().show();
			}
		});
		} catch(err) {}

		try {
		$('#right-column> div.right_menu_container').hide();
		$('#right-column> div.section_right_menu').bind( "hover", { speed:100, delay:100 },
			function() {
				menuHighlight($(this),'right_menu_container');
			}
		);
		} catch(err) {}
		
		try {
		$("#right-column").find("a.blue_right_menu").each(function(i,n) {
			var current_href = $(this).attr("href");
						
			if (window.location == n.toString()) {
				$(this).parent().parent().show();
			}
		});
		} catch(err) {}
	});
	
	function menuHighlight(obj, style) {
		var $nextDiv = obj.next();
		var $visibleSiblings = $nextDiv.siblings('div.'+style+':visible');
		if ($visibleSiblings.length) {
			$(document.body).queue(
				function() {
					$visibleSiblings.slideUp('fast', 
						function() { 
							$(document.body).dequeue(); 
						}
					);
				}
			);
		}
		
		if ($nextDiv.attr('class') == style) {
			$(document.body).queue(
				function() {
					$nextDiv.slideDown('fast', 
						function() { 
							$(document.body).dequeue(); 
						}
					);
				}
			);
		}
	}
