Your links are made with the code
Code:
<a href="wjp/batman/batman.php" target='_top'>Batman</a>
The files are however located in "/home/cpaneluser/public_html/public_html/wjp/batman/batman.php" so the code really should be
Code:
<a href="public_html/wjp/batman/batman.php" target='_top'>Batman</a>
When you copied the file over you created an extra
public_html folder, if you take all files out of
/home/cpaneluser/public_html/public_html and put them in
/home/cpaneluser/public_html/ then the links as they currently are would work.
You do have an index.php located in
/home/cpaneluser/public_html/ which is the one that is currently loaded up when going to your domain, so when you move the files, make sure you don't unintentionally overwrite this one with an improper index.php, I saw there was one inside the extra public_html folder as well.