/*
-----------------------------------------------------
ameba Home 検索切り替え
FileName:   change_search.js
$Date: 2006/09/29 09:03:59 $
$Revision: 1.2 $
-----------------------------------------------------
*/

//検索切り替え（ブログ・スクラップブック・キーワード）
//@param string obj リンクオブジェクト
//@param string type 検索種別判定文字列
//@return null
function changeSearch(obj,type){
	//全てのリンクの親ノード（li）のID属性値を初期化
	var l=document.getElementById("searchMenu").getElementsByTagName("li");
	for (var i = 0; i < l.length; i++){
		l[i].className="";
	}

	//選択したリンクの親ノード（li）のID属性値を変更
	obj.parentNode.className="check";
	
	//検索種別によってフォームの値を変更
	if(type=="blog"){
		document.searchform.method="get";
		document.searchform.action="http://ameblo.blog.goo.ne.jp/search/ameblo_search.php";
		document.getElementById("search_text").name="MT";
	}
	if(type=="book"){
		document.searchform.method="post";
		document.searchform.action="http://scrapbook.ameba.jp/SearchBook.do";
		document.getElementById("search_text").name="keywords";
	}
	if(type=="web"){
		document.searchform.method="get";
		document.searchform.action="http://partners.search.goo.ne.jp/ameba/web.jsp";
		document.getElementById("search_text").name="MT";
	}
	if(type=="prof"){
		document.searchform.method="get";
		document.searchform.action="http://profile.ameba.jp/general/profile/searchProfile.do";
		document.getElementById("search_text").name="MT";
	}
}


