<!--

//
// Script    :   fes_hj_functions.js
// Author    :   C.E. Berry
// Version   :   4.00.010
// Notes     :   Javascript function library for additional functions for Henry James
//               website
//
//               All material contained within is the intellectual property of SysExcel Ltd.
//               and as such may not be reproduced or modified in any way shape or form without
//               the prior consent of SysExcel Ltd.
//
// Amendment Log
//
//      Version      Date           Author              Notes
//      -------      ----           ------              -----
//
//      5.00.000     10/07/2009     P.I. Gunhouse       Creation
//
//=================================================================================================

function fncFesConrahAlignMenus()
{

//    fncFesGetAbsolutePosition(document.getElementById('availability')).left

    document.getElementById('bookingmenu1').style.left = fncFesGetAbsolutePosition(document.getElementById('availability')).left +
                                                         document.getElementById('availability').clientWidth -
                                                         document.getElementById('bookingmenu1').clientWidth + 'px';

    document.getElementById('bookingmenu1').style.top =  fncFesGetAbsolutePosition(document.getElementById('availability')).top -
                                                         document.getElementById('bookingmenu1').clientHeight + 'px';

    document.getElementById('bookingmenu1').style.clip = 'rect(0px, 0px, 0px, 0px)';
    document.getElementById('bookingmenu1').style.visibility = 'visible';

}


//console = window.open("","Debug","width=400,height=600,resizable=yes,scrollbars=yes");
//console.document.write("Debug output: <br>");
//-->

