// JavaScript Document

jQuery(document).ready(function(){
jQuery(".nav li").hover(
function(){
jQuery(this).find("ul").animate({opacity: "show"}, "fast");
},
function(){
jQuery(this).find("ul").animate({opacity: "hide"}, "fast");
});
});