I think you are talking about the breadcrumb -
this thread gives you hints on how to make changes to it.
If you want to have something different just on your home page instead of the breadcrumb, you could do something like this:
in skin1/customer/home.tpl
replace
Code:
{include file="location.tpl"}
with
Code:
{if $main eq "catalog" and $current_category.category eq ""}
<!-- put the header and style you want for the home page here -->
{else}
<!-- this will be the normal breadcrumb on all your other pages -->
{include file="location.tpl"}
{/if}