

/*page scroll*/

$(document).ready(function(){
    $('a[href^=#]').click(function(){
        var target;
        target = $( $(this).attr('href') );
        if (target.length == 0) {
            return;
        }
        $('html, body').animate({scrollTop: target.offset().top});
        return false;
    });
});


/*fancybox custom*/

$(document).ready(function() {
  $("a#tms_mark").fancybox({
	'width'				: 500,
	'height'			: 400,
	  'autoScale'			: false,
	  'transitionIn'		: 'none',
	  'transitionOut'		: 'none',
	  'type'				: 'iframe',
	  'overlayOpacity'      : 0.8,
	  'overlayColor'       : "#000"
  });

});




