$(document).ready(function(){  
    var nav = $("#navigation");  
    nav.find("li").each(function() {  
        if ($(this).find("ul").length > 0) {  
  
        $(this).mouseenter(function() {  
            $(this).parent('ul').stop();
            $(this).find("ul").stop(true, true).slideDown();  
        });  
  
        $(this).mouseleave(function() {  
            $(this).parent('ul').stop();
            $(this).find("ul").stop(true, true).slideUp();  
        });  
        }  
    });           
});  

$(document).ready(function() {
    $('#feature').cycle({
                fx: 'fade'
    });
});

