Suche im Forum:
Suchen


Autor Nachricht
Beitrag09.04.2009 um 20:27 (UTC)    
Titel: cool menü

Hallo

ich habe aus einer von euren seiten mir den quelltext "geklaut" weil ich auch so ein coolmenü haben wollte. ich habe diesen aber geändert und an meine seite angepasst.
was muss ich jetzt aus dem text nehmen und wo muss ich es einfügen, damit ich das menü auf meine seite kriege?? DANKE

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de" lang="de">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-15" />
<link rel="shortcut icon" href="http://img.webme.com/pic/a/abenteuergeschichte/kingdom.jpg"

type="image/vnd.microsoft.icon" />
<meta name="description" content="Diese Website handelt von meinem Buch, das ich kürzlich beendet habe." />
<meta name="keywords" content="Abenteuergeschichte, Abenteuergeschichte.de.tl, Fantasy, Buch, Jonas Kaufmann" />
<meta name="author" content="Jonas" />
<meta name="robots" content="index,follow" />
<title>Abenteuergeschichte - Home</title>
<style type="text/css">
<!--
h1#title{display: none;}
#sidebar_container{display: none;}
#nav_container{display: none;}
body {background:#9a9ea2;}
div.header{display:none;}
li.nav_element{list-style-type: none;}
a{color#FFFFFF; font-size: 12px; text-decoration: none;}
a:hover {color: #000000; font-size: 12px; text-decoration: none;}
a:link {color: #FFFFFF; font-size: 12px; text-decoration: none;}
a:active {color: #000000; font-size: 12px; text-decoration: none;}
a:visited {color: #000000; font-size: 12px; text-decoration: none;}
#Design {
width: 1000px;
height: 598px;
background:;
background-image:url(http://img13.imageshack.us/img13/3731/contenthm0.png);
color: ;
margin: 0px 0px 0px 0px;
padding: 10px;
float: left;overflow:auto;
z-index: 2;
position:absolute;left:125px;top:174px;}
#content {
height: 530px;
width: 980px;
z-index:1;
background:;
background-image:url();
color: #000000;
margin: 0px 0px 0px 0px;
padding: 0px;
display: inline;
float: left;
overflow:auto;
z-index: 4;
position:absolute;left:150px;top:218px;}
h2#title span {display:none}
#counter{
position:absolute;
left: 140px;
top: 760px;
z-index: 10;
color: #FFFFFF;
}
#Header {
width: 995px;
height: 94px;
background:;
background-image:url(http://www.loaditup.de/files/344064.jpg);
color: ;
margin: 0px 0px 0px 0px;
padding: 10px;
float: left;overflow:auto;
z-index: 10;
position:absolute;left:126px;top:60px;} //-->
</style>

</head>
<body id="hpb_cssonly">
<table height="27">
<tr>
<td height="27" valign="middle"><span style="font-size: 14px; color:#6edede; font-family: Arial, Helvetica,

Verdana, sans-serif;"><a href="http://www.homepage-baukasten.de/klick.php?c=91&t=1071" style="font-size: 14px; color:#6edede;

font-family: Arial, Helvetica, Verdana, sans-serif;" target="_blank">Eigene Community erstellen - kostenlos? <img

src="http://img.webme.com/images/smiley_thumb.gif" border="0">
</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href="http://www.homepage-baukasten.de/klick.php?c=99&t=1199" style="font-size: 14px;

color:#6edede; font-family: Arial, Helvetica, Verdana, sans-serif;" target="_blank">TOP 60x40 Poster - GRATIS! <img

src="http://img.webme.com/images/smiley_thumb.gif" border="0"></a></span></td>
</tr>
</table> <style type="text/css">
<!--
body{
background-image: url(http://www.crystalxp.net/galerie/img/img-wallpapers-blue-wallpaper-juliomino-9957.jpg);
background-color: #XXXXXX;
color: #000000 !important;}

</style>

<style type="text/css">
<!--
#coolmenu{
border: 1px solid black;
width: 170px;
background-color: #E6E6E6;
}
#coolmenu a{
font: bold 13px Verdana;
padding: 2px;
padding-left: 4px;
display: block;
width: 100%;
color: black;
text-decoration: none;
border-bottom: 1px solid black;
}
html>body #coolmenu a{
width: auto;
}
#coolmenu a:hover{
background-color: black;
color: white;
}
#tabledescription{
width: 100%;
height: 3em;
padding: 2px;
filter:alpha(opacity=0);
-moz-opacity:0;
}
-->
</style>

<script type="text/javascript">
<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->
<!-- Cool CSS Menu by JavaScriptKit.com -->
<!-- Begin
var baseopacity=0
function showtext(thetext){
if (!document.getElementById)
return
textcontainerobj=document.getElementById("tabledescription")
browserdetect=textcontainerobj.filters? "ie" : typeof textcontainerobj.style.MozOpacity=="string"? "mozilla" : ""
instantset(baseopacity)
document.getElementById("tabledescription").innerHTML=thetext
highlighting=setInterval("gradualfade(textcontainerobj)",50)
}
function hidetext(){
cleartimer()
instantset(baseopacity)
}
function instantset(degree){
if (browserdetect=="mozilla")
textcontainerobj.style.MozOpacity=degree/100
else if (browserdetect=="ie")
textcontainerobj.filters.alpha.opacity=degree
else if (document.getElementById && baseopacity==0)
document.getElementById("tabledescription").innerHTML=""
}

function cleartimer(){
if (window.highlighting) clearInterval(highlighting)
}
function gradualfade(cur2){
if (browserdetect=="mozilla" && cur2.style.MozOpacity<1)
cur2.style.MozOpacity=Math.min(parseFloat(cur2.style.MozOpacity)+0.2, 0.99)
else if (browserdetect=="ie" && cur2.filters.alpha.opacity<100)
cur2.filters.alpha.opacity+=20
else if (window.highlighting)
clearInterval(highlighting)
}
// End -->
</script>

<!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html>
<body>

<!--

===== DHTML MENU START =========================================================

Copyright (C) 2005 Ilya S. Lyubinskiy. All rights reserved.
Technical support: http://www.php-development.ru/

YOU MAY NOT
(1) Remove or modify this copyright notice.
(2) Distribute this code, any part or any modified version of it.
Instead, you can link to the homepage of this code:
http://www.php-development.ru/javascripts/menu.php.

YOU MAY
(1) Use this code on your website.
(2) Use this code as a part of another product provided that
its main use is not creating javascript menus.

NO WARRANTY
This code is provided "as is" without warranty of any kind, either
expressed or implied, including, but not limited to, the implied warranties
of merchantability and fitness for a particular purpose. You expressly
acknowledge and agree that use of this code is at your own risk.

-->


<script type="text/javascript">

var at_timeout = 50;


function at_show_aux(parent, child)
{
var p = document.getElementById(parent);
var c = document.getElementById(child);

p.className = "active";

var top = (c["at_position"] == "y") ? p.offsetHeight+2 : 0;
var left = (c["at_position"] == "x") ? p.offsetWidth +2 : 0;

for (; p; p = p.offsetParent)
{
if (p.style.position != 'absolute')
{
left += p.offsetLeft;
top += p.offsetTop;
}
}

c.style.position = "absolute";
c.style.top = top +'px';
c.style.left = left+'px';
c.style.visibility = "visible";
}


function at_hide_aux(parent, child)
{
document.getElementById(parent).className = "parent";
document.getElementById(child ).style.visibility = "hidden";
}


function at_show()
{
var p = document.getElementById(this["at_parent"]);
var c = document.getElementById(this["at_child" ]);

at_show_aux(p.id, c.id);

clearTimeout(c["at_timeout"]);
}


function at_hide()
{
var c = document.getElementById(this["at_child"]);

c["at_timeout"] = setTimeout("at_hide_aux('"+this["at_parent"]+"', '"+this["at_child" ]+"')", at_timeout);
}


function at_attach(parent, child, position)
{
p = document.getElementById(parent);
c = document.getElementById(child );

p["at_child"] = c.id;
c["at_child"] = c.id;
p["at_parent"] = p.id;
c["at_parent"] = p.id;
c["at_position"] = position;

p.onmouseover = at_show;
p.onmouseout = at_hide;
c.onmouseover = at_show;
c.onmouseout = at_hide;
}


function dhtmlmenu_build_aux(parent, child, position)
{
document.getElementById(parent).className = "parent";

document.write('<div class="vert_menu" id="'+parent+'_child">');

var n = 0;
for (var i in child)
{
if (i == '-')
{
document.getElementById(parent).href = child[i];
continue;
}

if (typeof child[i] == "object")
{
document.write('<a class="parent" id="'+parent+'_'+n+'">'+i+'</a>');
dhtmlmenu_build_aux(parent+'_'+n, child[i], "x");
}
else document.write('<a id="'+parent+'_'+n+'" href="'+child[i]+'">'+i+'</a>');
n++;
}

document.write('</div>');

at_attach(parent, parent+"_child", position);
}


function dhtmlmenu_build(menu)
{
for (var i in menu) dhtmlmenu_build_aux(i, menu[i], "y");
}

</script>

<style type="text/css" media="screen">
<!--


body
{
font-family: Verdana, sans-serif;
font-size: 14px;
overflow: auto;
padding: 10px;
margin: 0px;
}

ul, li
{
list-style-type: none;
padding: 0px;
margin: 0px;
}


li a
{
padding-right: 20px;padding-top: 5px;
}


div.menu
{
position: absolute;
z-index: 3;
top: 124px;
left: 50%;
margin-left:-405px;
width:905px;
}


.menu li
{
width: 160px;
float: left;
}


.menu a
{
border: 0px solid #000000;
background-color: #000000;
background-image: url(URL);
text-decoration: none;
text-align: center;
font-weight: bold;
cursor: pointer;
margin: 0px;
display: block;
height: 23px;
color: #00CCFF;
}


.menu a:hover
{
background-color: #00CCFF;
background-image: url(URL);
}


#smenu1, #smenu2, #smenu3, #smenu4, #smenu5
{
font-size: 12px;
display: none;
width: 160px;
float: left;
}


#smenu1 a, #smenu2 a, #smenu3 a, #smenu4 a, #smenu5 a
{
font-weight: bold;
padding-top: 5px;
border-top: 0px;
cursor: pointer;
color: #FFFFFF;
}
//-->

</style>



<script type="text/javascript">
<!--
function montre(id)
{
with (document)
{
if (getElementById)
getElementById(id).style.display = 'block';
else if (all)
all[id].style.display = 'block';
else
layers[id].display = 'block';
}
}

function cache(id)
{
with (document)
{
if (getElementById)
getElementById(id).style.display = 'none';
else if (all)
all[id].style.display = 'none';
else
layers[id].display = 'none';
}
}
//-->
</script>






<a href="http://abenteuergeschichte.de.tl/%26%238226%3B%26%239679%3B%B7Home%26%238226%3B%26%239679%3B%B7.htm">Home</a>
<a href="http://abenteuergeschichte.de.tl/%26%238226%3B%26%239679%3B%B7Guestbook%26%238226%3B%26%239679%3B%

B7.htm">Guestbook</a>
<a href="http://abenteuergeschichte.de.tl/%26%238226%3B%26%239679%3B%B7Handlung%26%238226%3B%26%239679%3B%

B7.htm">Handlung</a>
<a href="http://abenteuergeschichte.de.tl/%26%238226%3B%26%239679%3B%B7Biografie%26%238226%3B%26%239679%3B%

B7.htm">Biografie</a>
<a href="http://abenteuergeschichte.de.tl/%26%238226%3B%26%239679%3B%B7News%26%238226%3B%26%239679%3B%B7.htm">News</a>
<a href="http://abenteuergeschichte.de.tl/%26%238226%3B%26%239679%3B%B7Galerie%26%238226%3B%26%239679%3B%

B7/index.htm">Galerie</a>

<a href="http://abenteuergeschichte.de.tl/%26%238226%3B%26%239679%3B%B7Buchtipp%26%238226%3B%26%239679%3B%

B7.htm">Buchtipp</a>
<a href="http://abenteuergeschichte.de.tl/%26%238226%3B%26%239679%3B%B7Trailer%26%238226%3B%26%239679%3B%B7.htm">Trailer</a>



<div id="Header"></div></div>
<div id="Design"></div></div>

</div></div>



<style type="text/css"> <!--
td.edit_header_full{background-image: url(http://www.loaditup.de/files/344064.jpg); width: 921px; height: 200px;}
--> </style> <div id="container">
<div id="header_container">
<div id="pre_header"></div>

<div class="header"><h1 id="header"><span>Abenteuergeschichte</span></h1></div>
<div id="post_header"></div>
</div>
<div id="nav_container">
<h2 id="nav_heading"><span></span></h2>
<ul id="nav">

<li class="nav_element checked_menu" id="nav_Home"><a href="/Home.htm"

class="menu"><span><font color=#27942B>Home</font></span></a></li>

<li class="nav_element" id="nav_Guestbook"><a href="/Guestbook.htm"

class="menu"><span><font color=#BB3D3D>Guestbook</font></span></a></li>


<li class="nav_element" id="nav_Umfrage"><a href="/Umfrage.htm"

class="menu"><span>Umfrage</span></a></li>

<li class="nav_element" id="nav_Handlung"><a href="/Handlung.htm"

class="menu"><span><font color=#2E8B32>Handlung</font></span></a></li>

<li class="nav_element" id="nav_Biografie"><a href="/Biografie.htm"

class="menu"><span><font color=#2E8831>Biografie</font></span></a></li>

<li class="nav_element" id="nav_News"><a href="/News.htm" class="menu"><span><font

color=#2C812F>News</font></span></a></li>

<li class="nav_element" id="nav_Galerie"><a href="/Galerie/index.htm"

class="menu"><span>Galerie</span></a></li>

<li class="nav_element" id="nav_Buchtipp"><a href="/Buchtipp.htm"

class="menu"><span><font color=#217924>Buchtipp</font></span></a></li>


<li class="nav_element" id="nav_Teilnahmen"><a href="/Teilnahmen.htm"

class="menu"><span>Teilnahmen</span></a></li>
</ul>
</div>
<div id="content_container">
<div id="pre_content"></div>
<div id="content">
<h2 id="title"><span>Home</span></h2>
<font color="#808000"><br style="background-color: rgb(128, 0, 128);" />

<font size="6" style="color: rgb(255, 0, 0);">Die Homepage ist neu er&ouml;ffnet,<br />
mit einem neuen Design.<br />
Nun ist auch noch eine Umfrage<br />
vorhanden.<br />
</font> <br style="color: rgb(255, 0, 0);" />
<br style="color: rgb(255, 0, 0);" />
<br style="color: rgb(255, 0, 0);" />
<br style="color: rgb(255, 0, 0);" />
<em><font size="6" color="#3366ff" style="color: rgb(255, 0, 0);">liebe Gr&uuml;sse Jonas</font><br />

</em></font> <br />
<font size="5"> <img src="http://img.webme.com/pic/a/abenteuergeschichte/legion.jpg" alt="" /></font><br style="color: rgb

(255, 0, 0);" />
<font size="5"> </font></div>
<div id="counter"><span><font color="#B92626"> 758 Besucher</font></span></div>
<div id="post_content"></div>
<div id="sidebar_container">
<h2 id="sidebar_heading"><span></span></h2>
<div id="sidebar_content"><br><br><TABLE align="center" cellpadding="0"

cellspacing="0"><TR><TD valign="TOP" width="150"><FORM action="" method="POST"><TABLE align="center"

width="150"><TR><TD><b>Soll ich einen Newsletter herausgeben?</b></TD></TR><TR><TD><input type="radio" name="antwort"

value="15">Ja</TD></TR><TR><TD><input type="radio" name="antwort" value="16">Nein</TD></TR><TR><TD>Die Umfrage läuft noch 51

Tage, 21 Stunden, 31 Minuten und 27 Sekunden<br><input type="hidden" name="uid" value="4"><input type="hidden" name="vote"

value="notmain"><input type="submit" value=""><br>(<a href="?uid=4">Ergebnis anzeigen</a>)

</TABLE></FORM></TD></TR></TABLE></CENTER><br><br></div>

</div>
</div>
</div>
<style type="text/css" media="screen">
<!--

body
{
font-family: Arial, sans-serif;
font-size: 14px;
overflow: auto;
padding: 10px;
margin: 0px;
}

ul, li
{
list-style-type: none;
padding: 0px;
margin: 0px;
}


li a
{
padding-right: 0px;padding-top: 7px;
}


div.menu
{
position: absolute;
z-index: 5;
top: 177px;
left: 52%;
margin-left:-405px;
width:905px;
}


.menu li
{
width: 186px;
float: left;
}


.menu a
{
border: 0px solid #000000;
background-color: #000000;
background-image: url(http://img.webme.com/pic/b/bundesligastatistik/jefkajsdfk.bmp );
text-decoration: none;
text-align: center;
font-weight: bold;
cursor: pointer;
color: #000000;
margin: 0px;
display: block;
height: 29px;
}


.menu a:hover
{
background-image: url(http://img.webme.com/pic/b/bundesligastatistik/hintergrund.bmp);
}

#smenu1, #smenu2, #smenu3, #smenu4, #smenu5
{
font-size: 12px;
display: none;
width: 160px;
float: left;
}

#smenu1 a, #smenu2 a, #smenu3 a, #smenu4 a, #smenu5 a
{
font-weight: bold;
padding-top: 5px;
border-top: 0px;
cursor: pointer;
color: #000000;
}
//-->

</style>



<script type="text/javascript">
<!--
function montre(id)
{
with (document)
{
if (getElementById)
getElementById(id).style.display = 'block';
else if (all)
all[id].style.display = 'block';
else
layers[id].display = 'block';
}
}

function cache(id)
{
with (document)
{
if (getElementById)
getElementById(id).style.display = 'none';
else if (all)
all[id].style.display = 'none';
else
layers[id].display = 'none';
}
}
//-->
</script>



<div class="menu">

<li><a href="javascript:void(0);" onmouseover="montre('smenu1');" onmouseout="cache('smenu1');">Videozusammenfassungen</a>
<ul id="smenu1" onmouseover="montre('smenu1');" onmouseout="cache('smenu1');">
<li><a href="http://bundesligastatistiken.de/Highlights-vom-26-.--Spieltag.htm">Bundesliga</a></li>
<li><a href="http://www.bundesligastatistiken.de/Champions-League.htm">Champions League</a></li>
<li><a href="http://www.bundesligastatistiken.de/Uefa-Cup.htm">Uefa Cup</a></li>
<li><a href="http://www.bundesligastatistiken.de/WM-Qualifikation.htm">WM Qualifikation</a></li>

</ul>
</li>


<li><a href="javascript:void(0);" onmouseover="montre('smenu2');" onmouseout="cache('smenu2');">News</a>
<ul id="smenu2" onmouseover="montre('smenu2');" onmouseout="cache('smenu2');">
<li><a href="http://www.bundesligastatistiken.de/Aktuell-Ergebnisse-s-Tabellen.htm">Aktuelle Ergebnisse & Tabellen</a></li>
<li><a href="http://www.bundesligastatistiken.de/Fu.ss.ballnews.htm">Fußballnachrichten</a></li>



</ul>
</li>

<li><a href="javascript:void(0);" onmouseover="montre('smenu3');" onmouseout="cache('smenu3');">Statistiken</a>
<ul id="smenu3" onmouseover="montre('smenu3');" onmouseout="cache('smenu3');">

<li><a href="http://www.bundesligastatistiken.de/1-.--Bundesliga.htm">1. Bundesliga</a></li>
<li><a href="http://www.bundesligastatistiken.de/2-.--Bundesliga.htm">2. Bundesliga</a></li>
<li><a href="http://www.bundesligastatistiken.de/DFB_Pokal.htm">DFB Pokal</a></li>
<li><a href="http://www.bundesligastatistiken.de/Liga_Pokal.htm">Liga Pokal</a></li>
<li><a href="http://www.bundesligastatistiken.de/Nationalmannschaft.htm">Nationalmannschaft</a></li>
<li><a href="http://www.bundesligastatistiken.de/Ewige-Tabelle.htm">Ewige Tabelle</a></li>

</ul>
</li>


<li><a href="javascript:void(0);" onmouseover="montre('smenu4');" onmouseout="cache('smenu4');">Sonstiges</a>
<ul id="smenu4" onmouseover="montre('smenu4');" onmouseout="cache('smenu4');">


<li><a href="http://www.bundesligastatistiken.de/Vodcast.htm">Vodcast</a></li>
<li><a href="http://www.bundesligastatistiken.de/Partner.htm">Partner</a></li>
<li><a href="http://www.bundesligastatistiken.de/G.ae.stebuch.htm">Gästebuch</a></li>
<li><a href="http://www.bundesligastatistiken.de/Fu.ss.ballforum/index.htm">Fußballforum</a></li>
<li><a href="http://www.bundesligastatistiken.de/Kontakt.htm">Kontakt</a></li>
<li><a href="http://www.bundesligastatistiken.de/Umfrage.htm">Umfrage</a></li>


</ul>
</li>


</div> <iframe src="http://www.homepage-baukasten.de/cookie.php?

visit=abenteuergeschichte&auth1=43edb75638460b6950c4f28d494b7d23&auth2=bd5d443d28f306877511fd7d1360a1e1&auth3=7038ec52d366745

0b91172a63a1a21d9&auth4=05a04e7b7b002c27035fccd243c5b26d&auth5=4dae7987122c9130b979ab680550e32c&mode=track"

style="display:none;width:1px;height:1px;"></iframe>
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript" ></script>
<script type="text/javascript">
_uacct = "UA-2594508-8";
urchinTracker();

</script> <div id="extraDiv1"><span></span></div><div id="extraDiv2"><span></span></div><div

id="extraDiv3"><span></span></div>
<div id="extraDiv4"><span></span></div><div id="extraDiv5"><span></span></div><div

id="extraDiv6"><span></span></div>
</body>
</html>
Beitrag09.04.2009 um 21:24 (UTC)    
Titel:

bei Iceblue:

Code unter Design einfügen,
bei CSS weiß nicht genau, glaube aber ebenfalls dorthin, wenn nicht in CSS ohne Style-Tags

Hier der Code, den du einfügen musst:
Musst du allerdings nochmal anpassen


Code:


<style type="text/css" media="screen">
<!--
body
{
font-family: Verdana, sans-serif;
font-size: 14px;
overflow: auto;
padding: 10px;
margin: 0px;
}

ul, li
{
list-style-type: none;
padding: 0px;
margin: 0px;
}

li a
{
padding-right: 20px;padding-top: 5px;
}

div.menu
{
position: absolute;
z-index: 3;
top: 124px;
left: 50%;
margin-left:-405px;
width:905px;
}

.menu li
{
width: 160px;
float: left;
}

.menu a
{
border: 0px solid #000000;
background-color: #000000;
background-image: url(URL);
text-decoration: none;
text-align: center;
font-weight: bold;
cursor: pointer;
margin: 0px;
display: block;
height: 23px;
color: #00CCFF;
}

.menu a:hover
{
background-color: #00CCFF;
background-image: url(URL);
}

#smenu1, #smenu2, #smenu3, #smenu4, #smenu5
{
font-size: 14px;
display: none;
width: 160px;
float: left;
}

#smenu1 a, #smenu2 a, #smenu3 a, #smenu4 a, #smenu5 a
{
font-weight: bold;
padding-top: 5px;
border-top: 0px;
cursor: pointer;
color: #FFFFFF;
}
//-->

</style>

<script type="text/javascript">
<!--
function montre(id)
{
with (document)
{
if (getElementById)
getElementById(id).style.display = 'block';
else if (all)
all[id].style.display = 'block';
else
layers[id].display = 'block';
}
}

function cache(id)
{
with (document)
{
if (getElementById)
getElementById(id).style.display = 'none';
else if (all)
all[id].style.display = 'none';
else
layers[id].display = 'none';
}
}
//-->
</script>
<div class="menu">
<li><a href="LINK1"> TITEL1</a> </li>
<li><a onmouseout="cache('smenu2');" onmouseover="montre('smenu2');" href="javascript:void(0);"> TITEL2</a>
<ul onmouseout="cache('smenu2');" onmouseover="montre('smenu2');" id="smenu2">
<li><a href="UNTERLINK2.3">Titel</a></li>
<li><a href="UNTERLINK2.3">Titel</a></li>
<li><a href="UNTERLINK2.4">Titel</a></li>
<li><a href="UNTERLINK2.5">Titel</a></li>
<li><a href="UNTERLINK2.6">Titel</a></li>
<li><a href="UNTERLINK2.7">Titel</a></li>
<li><a href="UNTERLINK2.8">Titel</a></li>
<li><a href="UNTERLINK2.9">Titel</a></li>
</ul>
</li>
<li><a onmouseout="cache('smenu3');" onmouseover="montre('smenu3');" href="javascript:void(0);"> TITEL3</a>
<ul onmouseout="cache('smenu3');" onmouseover="montre('smenu3');" id="smenu3">
<li><a href="UNTERLINK3.2">Titel</a></li>
<li><a href="UNTERLINK3.3">Titel</a></li>
<li><a href="UNTERLINK3.4">Titel</a></li>
<li> </li>
</ul>
</li>
<li><a href="LINK4"> TITEL4</a></li>
<li><a onmouseout="cache('smenu5');" onmouseover="montre('smenu5');" href="javascript:void(0);"> TITEL5</a>
<ul onmouseout="cache('smenu5');" onmouseover="montre('smenu5');" id="smenu5">
<li><a href="LINK5.1">Titel</a></li>
<li><a href="LINK5.2">Titel</a></li>
</ul>
</li>
</div>

______________
Ich werde im Forum bleiben, meine seiten werden allerdings gelöscht
Beiträge der letzten Zeit anzeigen:   


Powered by phpBB © 2001, 2005 phpBB Group
Deutsche Übersetzung von phpBB.de