The ‘home’ thingy is called the pathway. Some call it breadcrumbs. If you want to get rid of it, you have to edit your index.php file.
Look for:
<div id="pathway"><?php mosPathway(); ?></div>
and either comment it out or remove it.
The grey line is actually an image for the footer section. It is defined in your css/template_css.css file as:
#ja-footer {
background: url(../images/footer-bg.gif) repeat-x top left #666666;
color: #FFFFFF;
clear: both;
line-height: 28px;
height: 28px;
position: relative;
padding: 0 5px;
border-top: 10px solid #FFFFFF;
}
You can remove that bar by commenting out or removing the ‘background’ line. If you just want a different color, I would just edit the footer-bg.gif file with an image editor.
Hope that helps.