	//<![CDATA[

		jQuery.noConflict();

		var open0 = null;
		var open1 = null;
		var open2 = null;

		jQuery(document).ready(function(){

			loadAction();

			jQuery('a.popup').click(function(){
				window.open(jQuery(this).attr('href'), 'a', jQuery(this).attr('option'));
				return false;
			});

			open0 = jQuery("#navigator").attr("class").split(" ");
			open1 = (open0[0].replace("open1-", "") == undefined) ? 0 : parseInt(open0[0].replace("open1-", "")) - 1;
			open2 = (open0[1].replace("open2-", "") == undefined) ? 0 : parseInt(open0[1].replace("open2-", "")) - 1;

			jQuery("a.depth-1-link").hover(
				function(){
					var eq = jQuery("a.depth-1-link").index(this);
					jQuery("#" + jQuery(this).attr("id") + "-sub").show();
					if(open1 != eq){
						jQuery(this).find("img").attr("src", jQuery(this).find("img").attr("src").replace(".gif", "-on.gif"));
						defualtHide();
					}
				},
				function(){
					var eq = jQuery("a.depth-1-link").index(this);
					jQuery("#" + jQuery(this).attr("id") + "-sub").hide();
					if(open1 != eq){
						jQuery(this).find("img").attr("src", jQuery(this).find("img").attr("src").replace("-on.gif", ".gif"));
					}
					defualtShow();
				}
			);

			jQuery("ul.navigator-sub a").hover(
				function(){
					var eq1 = jQuery("ul.navigator-sub").index(jQuery(this).parent().parent());
					var eq2 = jQuery(this).parent().parent().find("a").index(this);
					jQuery(this).parent().parent().show();
//					document.title = "default " + open1 + " - " + eq1 + " / " + open2 + " - " + eq2;
					if(open1 != eq1){
						defualtHide();
						jQuery("#" + jQuery(this).parent().parent().attr("id").replace("-sub", "-src")).attr("src", jQuery("#" + jQuery(this).parent().parent().attr("id").replace("-sub", "-src")).attr("src").replace(".gif", "-on.gif"));
					}
					if(open1 != eq1 || (open1 == eq1 && open2 != eq2)){
						jQuery(this).find("img").attr("src", jQuery(this).find("img").attr("src").replace(".gif", "-on.gif"));
					}
				},
				function(){
					var eq1 = jQuery("ul.navigator-sub").index(jQuery(this).parent().parent());
					var eq2 = jQuery(this).parent().parent().find("a").index(this);
					jQuery(this).parent().parent().hide();
					if(open1 != eq1){
						jQuery("#" + jQuery(this).parent().parent().attr("id").replace("-sub", "-src")).attr("src", jQuery("#" + jQuery(this).parent().parent().attr("id").replace("-sub", "-src")).attr("src").replace("-on.gif", ".gif"));
					}
					if(open1 != eq1 || (open1 == eq1 && open2 != eq2)){
						jQuery(this).find("img").attr("src", jQuery(this).find("img").attr("src").replace("-on.gif", ".gif"));
					}
					defualtShow();
				}
			);

			if(open1 >= 0){
				jQuery("#navigator li ul").eq(open1).show().find("img").eq(open2).attr("src", jQuery("#navigator li ul").eq(open1).find("img").eq(open2).attr("src").replace(".gif", "-on.gif"));
				jQuery("a.depth-1-link img").eq(open1).attr("src", jQuery("a.depth-1-link img").eq(open1).attr("src").replace(".gif", "-on.gif"));
			}

		});

		function defualtShow(){
			if(open1 >= 0){
				jQuery("#navigator li ul").eq(open1).show();
			}
		};

		function defualtHide(){
			if(open1 >= 0){
				jQuery("#navigator li ul").eq(open1).hide();
			}
		};

	//]]>

