/*
    Horizontal Drop-Down Menus
    Jon Parrott, 2011, Eyesore, Inc
    Requires MooTools
*/
jQuery(document).ready(function() {
    var make_menu = function( selector ){
        jQuery(selector).each( function(elem){
            var that = jQuery(this);
            that.parent().hover(
                function(){ that.show(); },
                function(){ that.hide(); }
            );
        });
    };

    make_menu( '.sub_menu' );
});

