$(function() {

   $('a.LBox').lightBox();
   //$("ul.jqGalScroll").jqGalScroll({height:268,width:400,ease:'easeInOutCubic',speed:1000});
   $("ul.submenu").hide();

   $("span.Stoptitle").hover(function(){   
   // 対象オブジェクトに入った
   $(this).addClass("hover").removeClass("Stoptitle");
   }, function(){
   // 対象オブジェクトから抜けた
      $(this).addClass("Stoptitle").removeClass("hover");  
      }).click(function(){
      $(this).next().toggle();
     });
});