﻿//Initiliase navigation hover-hover function
$(document).ready(function()
{
    $(".navi li").unbind('mouseenter mouseleave').hover(
        function()
        {
            $(this).addClass("hover");
            $(this).find("> div.sub").fadeIn("fast");
        },
        function()
        {
            $(this).removeClass("hover");
            $(this).find("> div.sub").hide();
        }
    );
});
  
