// JavaScript Document

jQuery(document).ready(function(){
$("#about").hover(
function(){
$(this).find("ul").animate({ height: "40px" }, {queue:false, duration:"normal"} );
$(this).find("ul").css({'border-width' : '1px', 'border-style' : 'solid', 'border-color' : '#888', 'border-top' : 'none'});
$(this).find("li").animate({opacity: "show"}, "fast");
},
function(){
$(this).find("ul").animate({ height: "0" }, {queue:false, duration:"normal"} );
$(this).find("ul").css({'border-bottom' : 'none'});
$(this).find("li").animate({opacity: "hide"}, "fast");
});
$("#contact").hover(
function(){
$(this).find("ul").animate({ height: "60px" }, {queue:false, duration:"normal"} );
$(this).find("ul").css({'border-width' : '1px', 'border-style' : 'solid', 'border-color' : '#888', 'border-top' : 'none'});
$(this).find("li").animate({opacity: "show"}, "fast");
},
function(){
$(this).find("ul").animate({ height: "0" }, {queue:false, duration:"normal"} );
$(this).find("ul").css({'border-bottom' : 'none'});
$(this).find("li").animate({opacity: "hide"}, "fast");
});
});
