﻿var hasReqestedVersion = DetectFlashVer(8,0,0);
var alternateContent = '';

function topmenu_DoFSCommand(command, args) 
{ 
  if (command == "rollout") {
        if($('#topmenu').height())
            $('#topmenu').height('32px');
        else if($("embed[name=topmenu]").height())
            $("embed[name=topmenu]").height('32px');
        else
            $("object[name=topmenu]").height('32px');
  }
  else if (command == "rollin") { 
        if($('#topmenu').height())
            $('#topmenu').height('145px');
        else if($("embed[name=topmenu]").height())
            $("embed[name=topmenu]").height('145px');
        else
            $("object[name=topmenu]").height('145px');
  }
}
