// JavaScript Document
$(document).ready(function() {
    $(".navi > li").bind("mouseenter", function(e) {
        $(this).css({ 'background-image': 'url(images/nav-hover-bg.jpg)', 'background-repeat': 'repeat-x' });
        $(this).children('ul').css({ 'display': 'block' });
        //$(this).children('ul').fadeIn('fast');
        var left = $('.navi').position().left;
        $(this).children('ul').css({ 'left': left });
    })
    $(".navi > li").bind("mouseleave", function(e) {
        $(this).css({ 'background-image': 'none' });
        $(this).children('ul').css({ 'display': 'none' });

        //$(this).children('ul').fadeOut('fast');

    })
});
