// Requiredparams = file, id, width, height, version
swfobject.embedSWF('swf/splash.swf', 'splash', '960', '252', '6', '');
swfobject.embedSWF('swf/alaway_widget.swf', 'widget', '294', '241', '6', '');

$(document).ready(function(){
  $('#globalheader .drop ul').css({'opacity':'.8'});
  var to = null;
  $(this).delegate('#globalheader .drop','mouseenter',function() {
    var t = $(this);
    to = setTimeout(function(){
      t.find('ul').stop(true,true).slideDown(500);
    },250);
  }).delegate('#globalheader .drop','mouseleave',function() {
    clearTimeout(to);
    $(this).find('ul').stop(true,true).slideUp(500);
  });
});
