/*
 * js.js
 *
 * Copyright (c) 2007 Media Promotion Link
 * Licensed under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 *
 * Since:     2007-08-31
 */

/*----------------------------------------------------------------------------
スタートアップ
----------------------------------------------------------------------------*/
$(function(){

  //スムーズスクロール設定(jQuery)
  $('a[@href^="#"]').click(function(){$('#'+($(this).attr("href").split('#')[1])).ScrollTo(900,'easeout'); return false;});
  
  //title属性自動設定(jQuery)
  for(var i=0; i<$('img').length; i++)  {  $('img')[i].title = ($('img')[i].alt) ? $('img')[i].alt : "";  }

  //別ウィンドウ自動設定(jQuery)
  $('a[@href^="http://"]').click(function(){ window.open(this.href, '_blank');	return false; });

	//別ウィンドウ自動設定(jQuery)
  $('a[@href^="https://"]').click(function(){ window.open(this.href, '_blank');	return false; });

	//別ウィンドウ自動設定:class="externalLink"(jQuery)
  $('a[@class^="externalLink"]').click(function(){ window.open(this.href, '_blank');	return false; });

});

