// Navigation Dropdown State
$(function() {
    $('#navigation div > ul > li').hover(function() {
        dropdown_list = $('ul', this);
        if (dropdown_list.length > 0) {
            $('>a', this).addClass('dropdown-selected');
            dropdown_list.show();
        }
    }, function() {
        dropdown_list = $('ul', this);
        if (dropdown_list.length > 0) {
            $('>a', this).removeClass('dropdown-selected');
            dropdown_list.hide();
        }
    });
});
