$(document).ready(function() {

/* 別窓リンク 　*/

$('a[href$="pdf"],a[href$="doc"],a[href$="ppt"]').not('[onclick]').click(function(){ window.open(this.href, ''); return false;});
$('a[href^="http"]').not('[href*="www.sc-aero.co.jp"],[onclick]').click(function(){ window.open(this.href, ''); return false;});


/*　Googleカスタム検索　ロゴ表示　*/
var $$=$("#searchBox :text");
if($$.val()=='')
{
}
else{
   $("#searchBox :text").removeClass("googleTxtOn");
   $("#searchBox :text").addClass("googleTxtOff");
} 

$("#searchBox :text").focus(function(){
   $(this).removeClass("googleTxtOn");
   $(this).addClass("googleTxtOff");
}).blur(function(){
   var $$=$(this);
   if($$.val()==''){
      $(this).removeClass("googleTxtOff");
      $(this).addClass("googleTxtOn");
   } 
})

});





