// JavaScript Document

//fade
$(function(){
    if ($.browser.msie && $.browser.version == 7)
	{$(".fade").hover(function(){
       $(this).stop(true, false).fadeTo("fast", 0.5);
    },function(){
       $(this).stop(true, false).fadeTo("fast", 1.0,function(){this.style.removeAttribute('filter'); });
    });
	} else if ($.browser)
	{$(".fade").hover(function(){
       $(this).stop(true, false).fadeTo("fast", 0.5);
    },function(){
       $(this).stop(true, false).fadeTo("fast", 1.0);
    });
	}
  });

$(function(){
   $('a[href^=#]').click(function() {
      var speed = 300;// ƒ~ƒŠ•b
      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;
   });
});

