

/* dropdown.js */

$(document).ready(function(){
    $('.expandable').bind('mouseenter',function (){
        $(this).addClass('expanded');
        $(this).bind('mouseleave',function (){
            $(this).removeClass('expanded');
            $(this).unbind('mouseleave');
        });
    });
    $('.unexpandable').bind('mouseenter',function (){
        $(this).addClass('highlight');
        $(this).bind('mouseleave',function (){
            $(this).removeClass('highlight');
            $(this).unbind('mouseleave');
        });
    });
});
