jQuery(function($) {
	$("#infoTextBlock").load("./load/info.html");
	$('#nav a img.ro,#sidenav a img,#sidenav2 a img,#conceptnav a img,#formBtnBlock .ro').rollover();
	$("img.ov").fadeTo(0,1.0);
	$("img.ov").hover(function(){
        $(this).fadeTo(180,0.6);
    },
    function(){
        $(this).fadeTo(180,1.0);
    });
	
	
	$('ul#topSlide').innerfade({
                  speed: 2000,
                  timeout: 6000,
                  type: 'sequence',
                  containerheight: '380px'
      });
	
	//scroll
	 // #で始まるアンカーをクリックした場合に処理
	$('a[href^=#]').click(function() {
      // スクロールの速度
      var speed = 400;// ミリ秒
      // アンカーの値取得
      var href= $(this).attr("href");
      // 移動先を取得
      var target = $(href == "#" || href == "" ? 'html' : href);
      // 移動先を数値で取得
      var position = target.offset().top;
      // スムーススクロール
      $($.browser.safari ? 'body' : 'html').animate({scrollTop:position}, speed, 'swing');
      return false;
   });
   
});

