//$関数はjQueryとしてではなく、他のライブラリで定義された$関数として動作する
	jQuery.noConflict();
	jQuery(function($){
		
		//*------------------------------------------------------------*//
		//サービスリストをjavascriptで非表示(DreamWearverで編集する為)
		//*------------------------------------------------------------*//
		$("#serviceListDialogWrapper").hide();
		
		//*------------------------------------------------------------*//
		//サービスリストのジャンルをタブで切り替える処理
		//*------------------------------------------------------------*//
		$("#serviceMenu01, #serviceMenu02, #serviceMenu03").hide();
		$("#serviceMenu01").show();
		$("#serviceListDialog .tab01 img").css("opacity",0);
		
		$("#serviceListDialog .tab01").mouseover(function(){
			$("#serviceMenu01, #serviceMenu02, #serviceMenu03").hide();
			$("#serviceMenu01").show();
			$("#serviceListDialog .tab01 img, #serviceListDialog .tab02 img, #serviceListDialog .tab03 img").css("opacity",1);
			$("#serviceListDialog .tab01 img").css("opacity",0);
		});
		$("#serviceListDialog .tab02").mouseover(function(){
			$("#serviceMenu01, #serviceMenu02, #serviceMenu03").hide();
			$("#serviceMenu02").show();
			$("#serviceListDialog .tab01 img, #serviceListDialog .tab02 img, #serviceListDialog .tab03 img").css("opacity",1);
			$("#serviceListDialog .tab02 img").css("opacity",0);
		});
		$("#serviceListDialog .tab03").mouseover(function(){
			$("#serviceMenu01, #serviceMenu02, #serviceMenu03").hide();
			$("#serviceMenu03").show();
			$("#serviceListDialog .tab01 img, #serviceListDialog .tab02 img, #serviceListDialog .tab03 img").css("opacity",1);
			$("#serviceListDialog .tab03 img").css("opacity",0);
		});
		
		
		//*------------------------------------------------------------*//
		//FIXEDグループのマウスオーバー処理
		//*------------------------------------------------------------*//
		$("#fixedGroup a").hover(
			function(){
			
			$(this).animate({
				right : "-2px"
			},100);
		},function(){
		
			$(this).animate({
				right : "0px"
			});
		});
		
		//*------------------------------------------------------------*//
		//g_menuグループのマウスオーバー処理
		//*------------------------------------------------------------*//
		//$("#g_menu li").hover(
		//	function(){
		//	
		//	$("a",this).css("position","relative").animate({
		//		top : "5px"
		//	},100);
		//},function(){
		//
		//	$("a",this).animate({
		//		top : "0"
		//	},100);
		//});
		//
		////*------------------------------------------------------------*//
		////footerMenuグループのマウスオーバー処理
		////*------------------------------------------------------------*//
		//$("#footer ul li").hover(
		//	function(){
		//	
		//	$("a",this).css("position","relative").animate({
		//		top : "-5px"
		//	},100);
		//},function(){
		//
		//	$("a",this).animate({
		//		top : "0"
		//	},100);
		//});
		
		
	});
// スコープの外では、他のライブラリで定義された$関数として動作する





