﻿(function($){

	$(function(){
		
		//アクティブリンク
		$.gd.activeLink({
			area: '#tmp_gnavi',
			level: 1
		});

		$.gd.activeLink({
			area: '#tmp_lnavi',
			level: 2
		});

		//サーチテキスト表示
		//$.gd.searchText();

		$.gd.googleSearchImage({
			area: '#tmp_query, #tmp_query2',
			backgroundProperty: '#FFFFFF url(/shared/images/gsearch/google_custom_search_watermark.gif) no-repeat left center'		   
		});

		//googleカスタムサーチ切り替え
		var resultHtmlPath = 'http://www.city.toba.mie.jp/search/result.html';//（httpからの絶対パスで指定）
		
		$.gd.googleSearchSetUp({
			resultHtmlPath: resultHtmlPath
		});

		$.gd.googleSearchSetUp({
			formId: '#tmp_event_gsearch',
			resultHtmlPath: resultHtmlPath,
			hiddenBoxId: '#tmp_search_hidden2'
		});
		
		$.gd.googleSearchSetUp({
			formId: '#tmp_faq_gsearch',
			resultHtmlPath: resultHtmlPath,
			hiddenBoxId: '#tmp_search_hidden3'
		});

		//labelの中のimgをクリックした場合でも、任意のinputタグにfocusをあてる
		$.gd.labelClickable();
		
		//google翻訳画像変換
		$('img,input').gTranslate();		
		
		//ロールオーバー
		$.gd.rollover({
			area: '#tmp_gnavi'
		});
		
		//開閉式メニュー
	  	$.gd.switchMenu({
			area: '#tmp_lnavi_cnt'
		});
		
		//ブロックスキップの幅を100%にIE用
		$.gd.blockSkipExpander();

	});

})(jQuery);

