path="media/layout/";

//---------- Haupt-Navigation ------------
 function nav_rollon(a,img) {
 a.style.backgroundColor='#0066FF';
 //a.style.border = '#FFFFFF solid 1px';
 a.style.cursor = 'hand';
 img.src=path+'nav_arrow.gif';
 }	

 function nav_rolloff(a,img) {
 a.style.backgroundColor='#000099';	
 //a.style.border = '#003399 solid 1px';
 img.src=path+'blind.gif';
 }

 function nav_rolloff_select(a,img) {
 a.style.backgroundColor='#000099';	
 //a.style.border = '#003399 solid 1px';
 img.src=path+'nav_arrow.gif';
 }


//---------- Sub-Navigation ----------
function cat_rollon(a,img) {
 //a.style.backgroundColor='#0066FF';
 //a.style.border = '#FFFFFF solid 1px';
 //a.style.cursor = 'hand';
 img.src=path+'cat_arrow.gif';
 }	

 function cat_rolloff(a,img) {
 //a.style.backgroundColor='#000099';	
 //a.style.border = '#003399 solid 1px';
 img.src=path+'blind.gif';
 }

 function cat_rolloff_select(a,img) {
 //a.style.backgroundColor='#000099';	
 //a.style.border = '#003399 solid 1px';
 img.src=path+'cat_arrow.gif';
 }

//---------- OnClick-Ziel ----------
function go(link) {
 window.location.href = link;
}