//スムーススクロール
$(function () {
    if (! $.browser.safari) {
        $('#link_to_top').click(function () {
            $(this).blur();

            $('html,body').animate({ scrollTop: 0 }, 'slow');

            return false;
        });
    }
});

//文字サイズの変更

function font(size){
  $("#contents,.pan,h2.name .sub_name,h2,name .name_title").css("font-size",size);
	//文字サイズを変更したいCSSプロパティー値を入力
}

//検索ボックスの文字を消す
//#aから#hまではアンケートページ
//#iから#mまでは登録確認＆ログインページ
//#nは会員登録の流れページ

$(function(){
    $("#a,#b,#c,#d,#e,#f,#g,#h,#i,#j,#k,#l,#m,#n,  #q,#s,#t,#u,#z,#word,#uid,#keyword,").focus(function() {
        if($(this).val() == $(this).attr('defaultValue'))
            $(this).val('');
    }).blur(function() {
        if(jQuery.trim($(this).val()) == "") {
            $(this).val($(this).attr('defaultValue'));
        }
    });
});
