I need to make changes to my navigation bar but don't know how

Permalink
Right now when I hover on my nav bar, the drop downs instantly come out and when I move away it instantly slides back in. I need to edit my nav bar so that when I hover on it and move away- there is a 2 second delay before it slides back in. Is there an easy solution to this or something complicated that involves me changing a bunch of coding and having to ftp into the site?
this is my site: http://eforcesport.com/dev/

 
ConcreteOwl replied on at Permalink Reply
ConcreteOwl
You can do this with css, try adding this to your nav hover css code
-webkit-transition:all 2s ease-in-out;
   -moz-transition:all 2s ease-in-out;
     -o-transition:all 2s ease-in-out;
        transition:all 2s ease-in-out;