$(document).ready(function() {
    $(".orbitzIcon").mouseover(function() {
        $(".orbitzFlyout", this.parentNode).toggleClass('hid');
    });
    $(".orbitzFlyout").mouseout(function() {
        $(this).toggleClass('hid');
    });
});
