﻿jQuery.noConflict();
jQuery(document).ready(function($){

/*table coloring*/
$("div#contents table tr:even").css("background-color", "#DFEEFF");

$('div#subnavi li').each(function(){
var theS = $(this).attr('id').split("_")[1];
$(this).find('a').css('background-image','url(img/h2_'+theS+'.gif)');
});

var theN = $('div#body_inner').attr('class');
$('div#subnavi li#s_'+theN+'>a').css('background-position','0 -80px');

/*menu scroll*/
$('#subnavi').scrollFollow({
speed: 100,
offset: 20
});

/*auto scroll*/
$(function () {
        $('a.smsc').click(function () {
            //var tgt = $(this).attr('href');
			//alert(tgt);
			$(this).blur();
			var targetOffset = $($(this).attr('href')).offset().top;
			$('html,body').animate({scrollTop: targetOffset}, 300);

            return false;
        });
    
});


});


