﻿$(function() {

    //  Create the navigation
    $("#navigation ul li").hover(
        function() {
            $(this).find("ul").show();
        },
        function() {
            $(this).find("ul").hide();
        }
    );

    $(function () {
        $(".accordian").accordion({
            event: "mouseover",
            header: ".header"
        });
    });

});
