//アコーディオン

	var j$ = jQuery;
	  j$(function ()
	  {
		j$(".nvList").each(function ()
		{
			j$("li > a", this).each(function (index)
			{
				var $this = j$(this);
				if (index > -1) {
					$this.next().hide();
				}
				$this.click(function ()
				{
					var params = {
						height : "toggle", opacity : "toggle"
					};
					j$(this).next().animate(params).parent().siblings() .children("ul:visible").animate(params);
					return false;
				});
			});
		});
	  });






//ロールオーバー
    var postfix = '_on';
    $('a img.ov').not('[src*="' + postfix + '."]').each(function () 
    {
        var img = $(this);
        var src = img.attr('src');
        var src_on = src.substr(0, src.lastIndexOf('.')) + postfix + src.substring(src.lastIndexOf('.'));
        $('<img>').attr('src', src_on);
        img.hover( function () 
        {
            img.attr('src', src_on);
        },
        function () 
        {
            img.attr('src', src);
        } );
    });


