I will be not able to provide you a exact solution to fix until you host your site live.
So I will tell you how to delete the arrow image
Find this css code in your /templates/ja_teline_iv/css/menu/mega.css file
.ja-megamenu .childcontent-inner {
background: url("../templates/ja_teline_iv/images/arrow-down.gif") no-repeat scroll 26px top #FFFFFF;
border: 1px solid #000000;
color: #333333;
margin-left: -2px;
margin-top: -4px;
padding-top: 4px;
}
and replace with the below code to hide the Arrow
.ja-megamenu .childcontent-inner {
background: none;
border: 1px solid #000000;
color: #333333;
margin-left: -2px;
margin-top: -4px;
padding-top: 4px;
}