$(function() {
    //記事本文の検索
    $('#body_search_botton').click(function() {
        //イメージの置換
        $("#body_search_botton").html("<img src=\"img/search_tab1_.gif\" width=\"116\" height=\"33\" border=\"0\">");
        $("#subject_search_botton").html("<img src=\"img/search_tab2.gif\" width=\"116\" height=\"33\" border=\"0\">");
        $("#yahoo_search_botton").html("<img src=\"img/search_tab3.gif\" width=\"116\" height=\"33\" border=\"0\">");
        //検索フォームの置換
        $("#search_title").html("<form method=\"post\"><input type=\"hidden\" value=\"true\" name=\"action_blogsearch\"/><input type=\"text\" value=\"\" name=\"keyword\" size=\"70\"/>　<input type=\"submit\" value=\"　検索　\" name=\"body\"/></form>");
    });
    //タイトルの検索
    $('#subject_search_botton').click(function() {
        //イメージの置換
        $("#body_search_botton").html("<img src=\"img/search_tab1.gif\" width=\"116\" height=\"33\" border=\"0\">");
        $("#subject_search_botton").html("<img src=\"img/search_tab2_.gif\" width=\"116\" height=\"33\" border=\"0\">");
        $("#yahoo_search_botton").html("<img src=\"img/search_tab3.gif\" width=\"116\" height=\"33\" border=\"0\">");
        //検索フォームの置換
        $("#search_title").html("<form method=\"post\"><input type=\"hidden\" value=\"true\" name=\"action_blogsearch\"/><input type=\"text\" value=\"\" name=\"keyword\" size=\"70\"/>　<input type=\"submit\" value=\"　検索　\" name=\"subject\"/></form>");
    });
    //yahoo検索
    $('#yahoo_search_botton').click(function() {
        //イメージの置換
        $("#body_search_botton").html("<img src=\"img/search_tab1.gif\" width=\"116\" height=\"33\" border=\"0\">");
        $("#subject_search_botton").html("<img src=\"img/search_tab2.gif\" width=\"116\" height=\"33\" border=\"0\">");
        $("#yahoo_search_botton").html("<img src=\"img/search_tab3_.gif\" width=\"116\" height=\"33\" border=\"0\">");
        //検索フォームの置換
        $("#search_title").html("<form action=\"http://search.dog1.marchs.co.jp/\" method=\"get\"><input type=\"text\" size=\"70\" value=\"\" name=\"Keywords\"/>　<input type=\"submit\" value=\"　検索　\" name=\"subject\"/><input type=\"hidden\" value=\"web\" name=\"search_type\" /></form>");
    });
});
