Her er mit menu script: (jeg ved godt der er meget)
<style type="text/css">
body{
font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;
margin-top:5px;
background-color: #808080; /* Background color of main menu */
}
.bodyText{
padding-left:10px;
padding-right:10px;
border-top:1px solid #000000;
}
.bodyText p{
margin-top:5px;
}
#mainContainer{
width:760px;
height:700px;
border:1px solid #afbec5;
border-color:#afbec5 #afbdc5 #afbdc5 #b0bfc6;
margin:0 auto;
background-color: #FFF; /* Background color of main menu */
background-image:url('images/logo.gif');
background-repeat:no-repeat;
padding-top:85px;
}
#mainbottom{
width:760px;
height:20px;
border-left:1px solid #afbec5;
border-bottom:1px solid #afbdc5;
border-right:1px solid #afbdc5;
margin:0 auto;
background-image:url(images/grd-1px_1.1.gif);
background-repeat:repeat-x;
background-position:0 -300px;
padding-top 685px;
font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif; /* Fonts of main menu items */
font-size:0.8em; /* Font size of main menu items */
color: #afbec5; /* Text color */
text-align: center;
}
#mainMenu{
font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif; /* Fonts of main menu items */
font-size:0.9em; /* Font size of main menu items */
height:30px; /* Height of main menu */
background-color:#fcfcfc; /* Background color of sub menu items */
position:relative; /* Don't change this position attribute */
}
#mainMenu a{
padding-left:20px; /* Spaces at the left of main menu items */
padding-right:20px; /* Spaces at the right of main menu items */
font-weight:bold;
background-color:#fcfcfc; /* Background color of sub menu items */
/* Don't change these two options */
position:absolute;
bottom:-1px; /* Change this value to -2px if you're not using a strict doctype */
}
#submenu{
font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif; /* Font of sub menu items */
background-color:#fbfbfb; /* Background color of sub menu items */
width:100%; /* Don't change this option */
border-top:1px solid #afbdc5;
border-bottom:1px solid #b0bfc6;
}
#submenu div{
white-space:nowrap; /* Don't change this option */
}
/*
Style attributes of active menu item
*/
#mainMenu .activeMenuItem{
/* Border options */
background-image:url(images/grd-1px_1.1.gif);
background-repeat:repeat-x;
background-position:0 -310px;
border-top:1px solid #afbdc5;
border-right:1px solid #afbdc5;
cursor:pointer; /* Cursor like a hand when the user moves the mouse over the menu item */
}
#mainMenu2 .activeMenuItem{
/* Border options */
background-image:url(images/grd-1px_1.1.gif);
background-repeat:repeat-x;
background-position:0 -310px;
border-left:1px solid #afbec5;
border-top:1px solid #afbdc5;
border-right:1px solid #afbdc5;
cursor:pointer; /* Cursor like a hand when the user moves the mouse over the menu item */
}
#mainMenu .activeMenuItem img{
position:absolute;
bottom:0px;
right:0px;
}
/*
Style attributes of inactive menu items
*/
#mainMenu .inactiveMenuItem{
color: #afbec5; /* Text color */
background-image:url(images/grd-1px_1.1.gif);
background-repeat:repeat-x;
background-position:0 -300px;
border-top:1px solid #afbdc5;
border-right:1px solid #afbdc5;
border-bottom:1px solid #b0bfc6;
cursor:pointer; /* Cursor like a hand when the user moves the mouse over the menu item */
}
#mainMenu2 .inactiveMenuItem{
color: #afbec5; /* Text color */
background-image:url(images/grd-1px_1.1.gif);
background-repeat:repeat-x;
background-position:0 -300px;
border-left:1px solid #afbec5;
border-top:1px solid #afbdc5;
border-right:1px solid #afbdc5;
border-bottom:1px solid #b0bfc6;
cursor:pointer; /* Cursor like a hand when the user moves the mouse over the menu item */
}
#submenu a{
text-decoration:none; /* No underline on sub menu items - use text-decoration:underline; if you want the links to be underlined */
padding-left:15px; /* Space at the left of each sub menu item */
padding-right:5px; /* Space at the right of each sub menu item */
color: #afbec5; /* Text color */
font-size:0.9em;
}
#submenu a:hover{
color: #000; /* Red color when the user moves the mouse over sub menu items */
}
</style>
<script type="text/javascript">
var topMenuSpacer = 0; // Horizontal space(pixels) between the main menu items
var activateSubOnClick = false; // if true-> Show sub menu items on click, if false, show submenu items onmouseover
var leftAlignSubItems = false; // left align sub items t
var activeMenuItem = false; // Don't change this option. It should initially be false
var activeTabIndex = 0; // Index of initial active tab (0 = first tab) - If the value below is set to true, it will override this one.
var rememberActiveTabByCookie = false; // Set it to true if you want to be able to save active tab as cookie
var MSIE = navigator.userAgent.indexOf('MSIE')>=0?true:false;
var Opera = navigator.userAgent.indexOf('Opera')>=0?true:false;
var navigatorVersion = navigator.appVersion.replace(/.*?MSIE ([0-9]\.[0-9]).*/g,'$1')/1;
/*
These cookie functions are downloaded from
http://www.mach5.com/support/analyzer/manual/html/General/CookiesJavaScript.htm */
function Get_Cookie(name) {
var start = document.cookie.indexOf(name+"=");
var len = start+name.length+1;
if ((!start) && (name != document.cookie.substring(0,name.length))) return null;
if (start == -1) return null;
var end = document.cookie.indexOf(";",len);
if (end == -1) end = document.cookie.length;
return unescape(document.cookie.substring(len,end));
}
// This function has been slightly modified
function Set_Cookie(name,value,expires,path,domain,secure) {
expires = expires * 60*60*24*1000;
var today = new Date();
var expires_date = new Date( today.getTime() + (expires) );
var cookieString = name + "=" +escape(value) +
( (expires) ? ";expires=" + expires_date.toGMTString() : "") +
( (path) ? ";path=" + path : "") +
( (domain) ? ";domain=" + domain : "") +
( (secure) ? ";secure" : "");
document.cookie = cookieString;
}
function showHide()
{
if(activeMenuItem){
activeMenuItem.className = 'inactiveMenuItem';
var theId = activeMenuItem.id.replace(/[^0-9]/g,'');
document.getElementById('submenu_'+theId).style.display='none';
var img = activeMenuItem.getElementsByTagName('IMG');
if(img.length>0)img[0].style.display='none';
}
var img = this.getElementsByTagName('IMG');
if(img.length>0)img[0].style.display='inline';
activeMenuItem = this;
this.className = 'activeMenuItem';
var theId = this.id.replace(/[^0-9]/g,'');
document.getElementById('submenu_'+theId).style.display='block';
if(rememberActiveTabByCookie){
Set_Cookie('dhtmlgoodies_tab_menu_tabIndex','index: ' + (theId-1),100);
}
}
function initMenu()
{
var mainMenuObj = document.getElementById('mainMenu');
var menuItems = mainMenuObj.getElementsByTagName('A');
if(document.all){
mainMenuObj.style.visibility = 'hidden';
document.getElementById('submenu').style.visibility='hidden';
}
if(rememberActiveTabByCookie){
var cookieValue = Get_Cookie('dhtmlgoodies_tab_menu_tabIndex') + '';
cookieValue = cookieValue.replace(/[^0-9]/g,'');
if(cookieValue.length>0 && cookieValue<menuItems.length){
activeTabIndex = cookieValue/1;
}
}
var currentLeftPos = 0;
for(var no=0;no<menuItems.length;no++){
if(activateSubOnClick)menuItems[no].onclick = showHide; else menuItems[no].onmouseover = showHide;
menuItems[no].id = 'mainMenuItem' + (no+1);
menuItems[no].style.left = currentLeftPos + 'px';
currentLeftPos = currentLeftPos + menuItems[no].offsetWidth + topMenuSpacer;
var img = menuItems[no].getElementsByTagName('IMG');
if(img.length>0){
img[0].style.display='none';
if(MSIE && !Opera){
img[0].style.bottom = '-1px';
img[0].style.right = '-1px';
}
}
if(no==activeTabIndex){
menuItems[no].className='activeMenuItem';
activeMenuItem = menuItems[no];
var img = activeMenuItem.getElementsByTagName('IMG');
if(img.length>0)img[0].style.display='inline';
}else menuItems[no].className='inactiveMenuItem';
if(!document.all)menuItems[no].style.bottom = '-1px';
if(MSIE && navigatorVersion < 6)menuItems[no].style.bottom = '-2px';
}
var mainMenuLinks = mainMenuObj.getElementsByTagName('A');
var subCounter = 1;
var parentWidth = mainMenuObj.offsetWidth;
while(document.getElementById('submenu_' + subCounter)){
var subItem = document.getElementById('submenu_' + subCounter);
if(leftAlignSubItems){
// No action
}else{
var leftPos = mainMenuLinks[subCounter-1].offsetLeft;
document.getElementById('submenu_'+subCounter).style.paddingLeft = leftPos + 'px';
subItem.style.position ='absolute';
if(subItem.offsetWidth > parentWidth){
leftPos = leftPos - Math.max(0,subItem.offsetWidth-parentWidth);
}
subItem.style.paddingLeft = leftPos + 'px';
subItem.style.position ='static';
}
if(subCounter==(activeTabIndex+1)){
subItem.style.display='block';
}else{
subItem.style.display='none';
}
subCounter++;
}
if(document.all){
mainMenuObj.style.visibility = 'visible';
document.getElementById('submenu').style.visibility='visible';
}
document.getElementById('submenu').style.display='block';
}
window.onload = initMenu;
</script>
<script type="text/javascript">
var current = null;
function visskjul(id) {
var elm = document.getElementById(id);
if (elm.style.display=="block") {
elm.style.display = "none";
current = null;
} else {
elm.style.display = "block";
billeder.location.reload();
if (current != null) {
current.style.display = "none";
}
current = elm;
}
}
</script>
Og her er min menu:
<div id="mainContainer">
<!-- This is the start of the menu -->
<div id="mainMenu" >
<a >Punkt 1</a>
<div id="mainMenu2" >
<a>Punkt 2</a>
<a>Punkt 3</a>
</div>
</div>
<div id="submenu">
<!-- The first sub menu -->
<div id="submenu_1">
<a href="#" onclick="visskjul('div1')">Underpunkt1</a>
</div>
<!-- Second sub menu -->
<div id="submenu_2">
<a href="#" onclick="visskjul('div2')">Underpunkt2</a>
<a href="#" onclick="visskjul('div3')">Underpunkt3</a>
<a href="#" onclick="visskjul('div4')">Underpunkt4</a>
<a href="#" onclick="visskjul('div5')">Underpunkt5</a>
<a href="#" onclick="visskjul('div6')">Underpunkt6</a>
</div>
<!-- Third sub menu -->
<div id="submenu_3">
<a href="#" onclick="visskjul('div7')">Underpunkt7</a>
<a href="#" onclick="visskjul('div8')">Underpunkt8</a>
<a href="#" onclick="visskjul('div9')">Underpunkt9</a>
</div>
</div>
<br>
<div id="div1" class="tabcontent" style="display:none">
<iframe width="100%" height="85%" src="minside.htm" frameborder="0"></iframe>
</div>