Oh I see you want the website and support login to have different icons than the home link, right?
Thats going to be in the main.css file around line 125 on a fresh install.
#nav a.home { background(../images/home.gif) 0 5px no-repeat; }
#nav a.new_ticket { background(../images/new_ticket.gif) 0 5px no-repeat; }
#nav a.my_tickets { background(../images/my_tickets.gif) 0 5px no-repeat; }
#nav a.ticket_status { background(../images/ticket_status.gif) 0 5px no-repeat; }
#nav a.log_out { background(../images/logout.gif) 0 5px no-repeat; }
Does that help?
i cant find that but i found this in header</head>
<body>
<div id="container">
<div id="header">
<a id="logo" href="index.php" title="FreeWebs support"><img src="./images/logo2.jpg" border=0 alt="FreeWebs support"></a>
<p><span>FREEWEBS SUPPORT</span> SYSTEM</p>
</div>
<ul id="nav">
<?
if($thisclient && is_object($thisclient) && $thisclient->isValid()) {?>
<li><a class="log_out" href="logout.php">Log Out</a></li>
<li><a class="my_tickets" href="tickets.php">My Tickets</a></li>
<?}else {?>
<li><a class="ticket_status" href="tickets.php">Ticket Status</a></li>
<?}?>
<li><a class="new_ticket" href="open.php">New Ticket</a></li>
<li><a class="home" href="index.php">Home</a></li>
<li><a class="home" href="http://Freewebssupport.webs.com">website</a></li>
<li><a class="home" href="http://freewebs.bugs3.com/support/scp">support login</a></li>
</ul>
<div id="content">