// JavaScript Document
// Created:2010.11.3
// Copyright; 2011 Digitalmix  All rights reserved.

$(function(){
	//ドロップダウン表示	   
	$("ul.topmenu li").hover(function () {
    	$("ul:not(:animated)",this).show();
 	},
  	function () {
    	$("ul:not(:animated)",this).hide();
  });
});



