(function(){ jQuery(function(){ jQuery.gd.googleSearchImage = function(options){ var c = jQuery.extend({ area: '#tmp_query', backgroundProperty: '#FFFFFF url(http://maruchiba.jp/shared/images/gsearch/google_custom_search_watermark.gif) no-repeat left center', focusBackgroundProperty: '#FFFFFF' },options); jQuery(c.area) .each(function(){ var obj = jQuery(this); obj .css({ background: c.backgroundProperty }) .bind('focus.googleSearchImage', function(){ jQuery(this) .css({ background: c.focusBackgroundProperty }); }) .bind('blur.googleSearchImage', function(){ if(jQuery(this).val() == ''){ jQuery(this) .css({ background: c.backgroundProperty }); } }); if(obj.val() != ''){ obj.css({ background: c.focusBackgroundProperty }) } }); } jQuery.gd.googleSearchImage(); //言語切り替え var selectLang = jQuery('.tk_select_lang'); var selectLangObj = jQuery( '' ); selectLang.html(selectLangObj); selectLangObj.bind('change.selectLang', function(){ var val = jQuery(this).val(); if(val.search('http://') != -1){ location.href = val; } }); function search_back(){ var isMSIE = /*@cc_on!@*/false; //IE判別 if (isMSIE) { if(document.charset!="Shift_JIS"){ //文字コードが変換されているかチェック document.charset="Shift_JIS"; //変換されていたら指定の文字コードに戻す location.reload(); } } } }); })(jQuery);