/**
 * Created by JetBrains PhpStorm.
 * User: imac
 * Date: 11/02/03
 * Time: 17:05
 * To change this template use File | Settings | File Templates.
 */

$(function() {

    //トップヘのスクロールここから
    $('#toTop img').click(function() {
        $('html, body').animate({scrollTop:0}, { easing: "easeOutExpo", duration: 1000 });
        return false;
    });
    //トップヘのスクロールここまで    
$("#menu li").hover(function() {
	$(this).children('ul').show("fast");
    }, function() {
	$(this).children('ul').hide();
});



});


