You need to rewrite your code so it doesn't call "dropdown.js" or "dropdown.css" from the images folder.
Calling the drop down box:
Code:
<script type="text/javascript" src="images/dropdown.js"></script>
<link rel="stylesheet" href="images/dropdown.css" type="text/css" />
needs to be changed to this:
Code:
<script type="text/javascript" src="clientscript/dropdown.js"></script>
<link rel="stylesheet" href="clientscript/dropdown.css" type="text/css" />
Properly change the Admin & Mod links to work correctly:
Ensure that they are calling to the proper directory. Admin: "admincp/index.php" and Moderators: "modcp/index.php"