
$(document).ready(function(){
	$("ul.menu li").click (function() {
		var link = $(this).attr('id');
		
		window.open(link, '_self');
	});	
	
	$(".help_content_zone_on").hide();
	$(".help_content_zone_off").click(function() {
		$(".help_content_zone_off").hide();
		$(".help_content_zone_on").show();
	});	
	
	$(".help_content_zone_on").click(function() {
		$(".help_content_zone_on").hide();	
		$(".help_content_zone_off").show();
	});	

/*	$("ul.menu li").hover (
		function () {
			if ($(this).attr('class') != 'selected')
			{
				$(this).find("span.menuLeft").css("background-color", "#bdc1a3");
				$(this).css("background", "url(images/MenuSel.png)");
				$(this).find("span.menuCenter").css("color", "#888888");
				$(this).find("span.menuRight").css("background-color", "#bdc1a3");
			}
		},
		function () {
			if ($(this).attr('class') != 'selected')
			{
				$(this).find("span.menuLeft").css("background-color", "");
				$(this).css("background", "url(images/transparent.gif)");
				$(this).find("span.menuCenter").css("color", "#fff");
				$(this).find("span.menuRight").css("background-color", "");
			}
		}
	);
*/

});

