/*

  @ Filename      :   navigation.js
  @ Author        :   Prabhakaran R
  @ Created on    :   16/7/2010
  @ Purpose       :   Simple multi level dropdown

*/

$(document).ready(function()  {
  $(".nav li").hover(
    function() {
      $(this).find("ul:first").stop(true, true).fadeIn(300);
    }, 
    function() {
      $(this).find("ul:first").stop(true, true).fadeOut(300);
    }
  );
});
