/* Copyright, Pinion Services Limited 2008 */

$(document).ready(function() {
  
  $("#navlist li a.top-menu").mouseover(function() {
    $(".lower-menu").hide();
    var pos = $(this).position();
    $(this).next("ul:first").attr("style", "left: " + (pos.left-5) + "px; top: " + (pos.top+50) + "px; width: " + ($(this).outerWidth()-10) + "px;").show(); 
   });

   $(document).mousedown(function() {
     $(".lower-menu").hide();
   });

   $(".lower-menu").mousedown(function() { return false; });
   
});
