меню:
[CODE]
$aMenuLinks = Array(
Array(
"Конкурс прогнозов Formula1",
"/formula1/",
Array(),
Array("IMG"=>"/bitrix/templates/f1prognoz/i/top_f1.gif"),
""
),
...........
);
[/CODE]
шаблон меню:
[CODE]
<?
$sTmpl = "";
$cnt=count($arMENU)-1;
for ( $n = $cnt; $n >= 0; $n-- )
{
extract($arMENU[$n]);
if ( $SELECTED )
$sTmpl .= "<td> </td><td class='toprazdeltd' style='cursor:hand' onmouseover=\"this.className='toprazdeltd_y'\" onmouseout=\"this.className='toprazdeltd'\" onclick=\"window.location='$LINK'\" title='$TEXT'><a href='$LINK'><img src='".$PARAMS["IMG"]."' border='0' width='200' height='130' alt='$TEXT'></a></td>";
else
$sTmpl = "<td> </td><td class='toprazdeltd' style='cursor:hand' onmouseover=\"this.className='toprazdeltd_y'\" onmouseout=\"this.className='toprazdeltd'\" onclick=\"window.location='$LINK'\" title='$TEXT'><a href='$LINK'><img src='".$PARAMS["IMG"]."' border='0' width='200' height='130' alt='$TEXT'></a></td>".$sTmpl;
}
$sMenu = "<table width='100%' cellspacing='0' cellpadding='0' border='0'><tr>";
$sMenu .= "<td width='170px'><a href='/'><img src='/bitrix/templates/f1prognoz/i/logo.jpg' border='0' width='170' height='135'></a></td>";
$sMenu .= $sTmpl;
$sMenu .= "</tr></table>";
?>
[/CODE]