Easy bug finding the theme css:
<link rel="stylesheet" href="http://antebellumturftimes.com/antebellum/plugins/dropdown-menu-widget/themes/.css" type="text/css" />
Got a JS console error that the above stylesheet could not be found. To fix this, I went into plugins/dropdown-menu-widget/shailan.DropDownMenu.php and changed line 542:
if( $theme!='*none*' && $theme != '*custom*' ){
to:
if( $theme!='*none*' && $theme != '*custom*' && $theme != '' ){
Simply put, you need to check to make sure that it was able to find the theme! Could you fix this in your next release?