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

$('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
});

});


