// JavaScript Document

//ナビのプルダウンメニュー制御

$(document).ready(function() {
	$('ul#navi01-list').droppy({speed: 100});
	$('ul#navi01-2-list').droppy({speed: 100});
});

//ページ上部へのスクロール

$(function scrollToTop() {
        $('.to_top a').click(function () {
            $(this).blur();
            $('html,body').animate({ scrollTop: 0 }, 'slow');
            return false;
        });
});
 
//リンク

$(document).ready( function() {
    $("div#header li a").each( function() {
        var url = document.URL.split("#");

        if ( this == url[0] || this + "index.html" == url[0]) {
            $(this).addClass("current");
        }
    });
});



//ボックス要素の高さ揃える
//jquery.flatheights.js

//$(function() {
//    $('div#main,div#sub').flatHeights();//ショッピングの商品タイトル
//});








