var menu0=new Array()
menu0[0]='<a href=\"/home\">Home</a>'

var menu1=new Array()
menu1[0]='<a href=\"/news\" onmouseover=\"imgOn(\'news\')\" onmouseout=\"imgOff(\'news\')\">Latest News</a>'

var menu2=new Array()
menu2[0]='<a href=\"/gallery_photo\" onmouseover=\"imgOn(\'gallery\')\" onmouseout=\"imgOff(\'gallery\')\">Photo Gallery</a>'

var menu3=new Array()
menu3[0]='<a href=\"/dates_currentschedule\" onmouseover=\"imgOn(\'dates\')\" onmouseout=\"imgOff(\'dates\')\">Current Schedule</a>'
menu3[1]='<a href=\"/dates_pastschedule\" onmouseover=\"imgOn(\'dates\')\" onmouseout=\"imgOff(\'dates\')\">Past Schedule</a>'

var menu4=new Array()
menu4[0]='<a href=\"/shop_cds\" onmouseover=\"imgOn(\'shop\')\" onmouseout=\"imgOff(\'shop\')\">Shop CDs</a>'
menu4[1]='<a href=\"/shop_dvds\" onmouseover=\"imgOn(\'shop\')\" onmouseout=\"imgOff(\'shop\')\">Shop DVDs, Videos, Drumbooks</a>'
menu4[2]='<a href=\"/store\" onmouseover=\"imgOn(\'shop\')\" onmouseout=\"imgOff(\'shop\')\">Shop Store (new!)</a>'

var menu5=new Array()
menu5[0]='<a href=\"http://www.myspace.com/marcominnemann\" target=\"_blank\" onmouseover=\"imgOn(\'myspace\')\" onmouseout=\"imgOff(\'myspace\')\">View MySpace</a>'

var menu6=new Array()
menu6[0]='<a href=\"/guestbook_sign\" onmouseover=\"imgOn(\'guestbook\')\" onmouseout=\"imgOff(\'guestbook\')\">Sign Guestbook</a>'
menu6[1]='<a href=\"/guestbook_view\" onmouseover=\"imgOn(\'guestbook\')\" onmouseout=\"imgOff(\'guestbook\')\">View Guestbook</a>'

var menu7=new Array()
menu7[0]='<a href=\"/about_biography\" onmouseover=\"imgOn(\'about\')\" onmouseout=\"imgOff(\'about\')\">Biography</a>'
menu7[1]='<a href=\"/about_records\" onmouseover=\"imgOn(\'about\')\" onmouseout=\"imgOff(\'about\')\">Marco Records</a>'
menu7[2]='<a href=\"/about_discography\" onmouseover=\"imgOn(\'about\')\" onmouseout=\"imgOff(\'about\')\">Selected Discography</a>'
menu7[3]='<a href=\"/about_endorsements\" onmouseover=\"imgOn(\'about\')\" onmouseout=\"imgOff(\'about\')\">Endorsements/Setup</a>'
menu7[4]='<a href=\"/about_press\" onmouseover=\"imgOn(\'about\')\" onmouseout=\"imgOff(\'about\')\">Selected Press Releases</a>'
menu7[5]='<a href=\"/about_links\" onmouseover=\"imgOn(\'about\')\" onmouseout=\"imgOff(\'about\')\">Links</a>'
menu7[6]='<a href=\"/about_contact\" onmouseover=\"imgOn(\'about\')\" onmouseout=\"imgOff(\'about\')\">Contact</a>'

var menuwidth='195px'      //default menu width (165px)
var menubgcolor=''         //menu bgcolor
var disappeardelay=200     //menu disappear speed onmouseout (in miliseconds) (100)
var hidemenu_onclick="yes" //hide menu when user clicks within menu?

var ie4=document.all
var ns6=document.getElementById&&!document.all

if (ie4||ns6)
document.write('<div id="dropmenudiv" style="visibility:hidden;width:'+menuwidth+';background-color:'+menubgcolor+'" onmouseover="clearhidemenu()" onmouseout="dynamichide(event)"></div>')

function getposOffset(what, offsettype){
var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop;
var parentEl=what.offsetParent;
while (parentEl!=null){
totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
parentEl=parentEl.offsetParent;
}
return totaloffset;
}


function showhide(obj, e, visible, hidden, menuwidth){
if (ie4||ns6)
dropmenuobj.style.left=dropmenuobj.style.top="-500px"
if (menuwidth!=""){
dropmenuobj.widthobj=dropmenuobj.style
dropmenuobj.widthobj.width=menuwidth
}
if (e.type=="click" && obj.visibility==hidden || e.type=="mouseover")
obj.visibility=visible
else if (e.type=="click")
obj.visibility=hidden
}

function iecompattest(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function clearbrowseredge(obj, whichedge){
var edgeoffset=0
if (whichedge=="rightedge"){
var windowedge=ie4 && !window.opera? iecompattest().scrollLeft+iecompattest().clientWidth-15 : window.pageXOffset+window.innerWidth-15
dropmenuobj.contentmeasure=dropmenuobj.offsetWidth
if (windowedge-dropmenuobj.x < dropmenuobj.contentmeasure)
edgeoffset=dropmenuobj.contentmeasure-obj.offsetWidth
}
else{
var topedge=ie4 && !window.opera? iecompattest().scrollTop : window.pageYOffset
var windowedge=ie4 && !window.opera? iecompattest().scrollTop+iecompattest().clientHeight-15 : window.pageYOffset+window.innerHeight-18
dropmenuobj.contentmeasure=dropmenuobj.offsetHeight
if (windowedge-dropmenuobj.y < dropmenuobj.contentmeasure){ //move up?
edgeoffset=dropmenuobj.contentmeasure+obj.offsetHeight
if ((dropmenuobj.y-topedge)<dropmenuobj.contentmeasure) //up no good either?
edgeoffset=dropmenuobj.y+obj.offsetHeight-topedge
}
}
return edgeoffset
}

function populatemenu(what){
if (ie4||ns6)
dropmenuobj.innerHTML=what.join("")
}


function dropdownmenu(obj, e, menucontents, menuwidth){
if (window.event) event.cancelBubble=true
else if (e.stopPropagation) e.stopPropagation()
clearhidemenu()
dropmenuobj=document.getElementById? document.getElementById("dropmenudiv") : dropmenudiv
populatemenu(menucontents)

if (ie4||ns6){
showhide(dropmenuobj.style, e, "visible", "hidden", menuwidth)
dropmenuobj.x=getposOffset(obj, "left")
dropmenuobj.y=getposOffset(obj, "top")
dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, "rightedge")+"px"
dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+obj.offsetHeight+"px"
}

return clickreturnvalue()
}

function clickreturnvalue(){
if (ie4||ns6) return false
else return true
}

function contains_ns6(a, b) {
while (b.parentNode)
if ((b=b.parentNode) == a)
return true;
return false;
}

function dynamichide(e){
if (ie4&&!dropmenuobj.contains(e.toElement))
delayhidemenu()
else if (ns6&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
delayhidemenu()
}

function hidemenu(e){
if (typeof dropmenuobj!="undefined"){
if (ie4||ns6)
dropmenuobj.style.visibility="hidden"
}
}

function delayhidemenu(){
if (ie4||ns6)
delayhide=setTimeout("hidemenu()",disappeardelay)
}

function clearhidemenu(){
if (typeof delayhide!="undefined")
clearTimeout(delayhide)
}

if (hidemenu_onclick=="yes")
document.onclick=hidemenu
/* ******************************************************************************************************* */
/* image mouseovers ************************************************************************************** */
/* ******************************************************************************************************* */
if (document.images) { 
mmon=new Image();
mmon.src="/images/mm2.jpg"; 
mmoff=new Image(); 
mmoff.src="/images/mm.jpg"; 

newson=new Image();
newson.src="/images/news2.jpg"; 
newsoff=new Image(); 
newsoff.src="/images/news.jpg"; 

galleryon=new Image();
galleryon.src="/images/gallery2.jpg"; 
galleryoff=new Image(); 
galleryoff.src="/images/gallery.jpg";

dateson=new Image();
dateson.src="/images/dates2.jpg"; 
datesoff=new Image(); 
datesoff.src="/images/dates.jpg";

shopon=new Image();
shopon.src="/images/shop2.jpg"; 
shopoff=new Image(); 
shopoff.src="/images/shop.jpg";

myspaceon=new Image();
myspaceon.src="/images/myspace2.jpg"; 
myspaceoff=new Image(); 
myspaceoff.src="/images/myspace.jpg"; 

guestbookon=new Image();
guestbookon.src="/images/guestbook2.jpg"; 
guestbookoff=new Image(); 
guestbookoff.src="/images/guestbook.jpg"; 

abouton=new Image();
abouton.src="/images/about2.jpg"; 
aboutoff=new Image(); 
aboutoff.src="/images/about.jpg";
}
function imgOn(imgName) {
if (document.images) {
document[imgName].src=eval(imgName + "on.src");}
}
function imgOff(imgName) {
if (document.images) {
document[imgName].src=eval(imgName + "off.src");}
}

/* hover */
/*

var house_wife_dog_and_two_kids = "House Wife Dog And Two Kids"
var contraire_de_la_chanson = "The 2 x 80 min. CDs feature my widest variety of songs and instrumentals I released on a production so far! contraire also features some new music to speech efforts such as the long awaited Romans piece which I already introduced on my recent South America/USA/Canada tour.<BR><BR>And I even have a guitar solo trade (!!) with Paul Gilbert on butterflies (featuring also JK Kleutgens on Bass).<BR><BR>There are a few other exciting guest appearances on the CDs ,which you´ll have to find out on your own:-)!"
var mieze = "On MIEZE I played and sang everything myself with additional cool guitar soloing by PAUL GILBERT on 4 songs!!<BR><BR>The CD has 16 tracks on it ....very song orientated from hardcore rock with a bit of 13/16 Funk and 15/16 F#9 to straight crunchy 4/4 G,A,D Pop :-)<BR><BR>Working on this CD made me feel like a small kid unwrapping x-mas presents, because for the 1st time I had the complete control and responsibility over every single note played and sung......and I guess, the result became the most authentic record I ever did. What do you think? ))<BR><BR>I hope you like it......"
var broken_orange = "So here it is-......my long awaited CD BROKEN ORANGE, which goes straight into the Jazz area this time, but GROOVY!!!---and disciplined, that means, everything is arranged so that you don´t need to turn off your stereo when the sax-solo starts after the intro´s over ( there´s no saxophone in there anyways, ----;-)). And no-one (exept for me :-)) solos over more than 16 bars, haahh!!!...But seriously: I think I never did that many drumsolos on a CD ever before, weellll...and my guitar skills were forced to improve as well. STEVE HAMILTON (Earthworks etc etc....) on piano."
var orchids = "ORCHIDS might be the most precious production to me so far. It´s all about authentic, true relationships and the music runs on pure feelings. It was a 2 year process to finish the record in a non hurry well thought way the music deserves. It is not complex virtuos technique, but creating the picture and the mood for this CD took a lot of mental work and experience. ORCHIDS means a lot to me.... "
var motor = "Analog Electronic meets Drums + Guitars. Different and interesting........<BR><BR>Marco´s comment:<BR>This production is very special to me, ´cause I found a new ´work mate´ - Mario Brinkmann. We created this piece of music with lots of  fun, time and without any pressure. Most of the stuff was planned to be released on my forthcoming solo CD. But with Marios unique Soundscapes the whole thing got a new definition. So from now on we worked as follows:<BR><BR>a) each of us brought an idea and we completed it together;<BR><BR>b) tracks like Xperiment or Document were written note for note together.<BR><BR>Mario is responsible for sounds and synths programming. I played all the instruments. Enjoy this unique piece of music<BR><BR>Marco"
var green_mindbomb = "Time and this one were one production and then separated . Time is straight, this one ´out´ and very drummig -wise-. It has some real complex and funny stuff on it.<BR><BR>Favourites: Green, Streets, Militant, Class, 01"
var comfortably_homeless = "What can I say........very out, odd and funny stuff. I still have fun with it.....check it out<BR><BR>Favourites: Kondome, Meter, 3 in a row, plane, blue light, arpeggio, train check" 
var thickness = "My first CD!!! It was a very special feel to make it (cause it´s the first one) and also hard to look back on it, because I would do lots of it different now - like always. However, it has some pearls on it and with Golden Dolphin even a sort of a trademark (....I´m followed by that song for some reason)<BR><BR>Favourites: Drowning, Divorce<BR><BR>Artemis - Vocals<BR>Andy Niewidok - Guitars<BR>Marco Minnemann - Drums, Programming and Guitars<BR>Ben Esen - Bass<BR>Corinna Schneider & Miene Costa - Vocals<BR>Produced By Marco Minnemann"
var red_alibis = "Lots of information, a lot of material in different styles. The sound quality could be better, but is also pretty unique. Some love it, some don´t.......but it still means something to me cause there´s unbelievable strange stuff on it (and some of my most complex tracks as well). A little like: How much info can I put on one CD!! Favourites: Anger, Office, Jamoto, Through the sand, Fearface<BR><BR>Artemis - Vocals<BR>Peter Wölpl - Guitars<BR>Martin Mayrhofer - Guitars, Bass and Programming<BR>Ben Esen - Bass<BR>Marco Minnemann - Drums and Programming<BR>Produced By Marco Minnemann "
var time = "This one has won an audio award for the sound (who cares, hehe). Very clean produktion. Few key-sounds could be better. But along with Green Minbomb still a monument. I´m very satisfied with that one. Straight rock album......<BR><BR>Favourites: Swallow your Kiss, Time, Sleep, Dead on Time, Missing You"
var international_telephone = "Tons of material devided in two phases: a rocky one and a spacy one. Almost 80 min. of stuff.......and lots of audio tracks used!!!!<BR><BR>Favourites: get it like that, snowing, light, during papers, fate...."
var normalizer = "Actually Mario and I did this project just for fun, maybe giving it away to some close friends. But after some incredibly positive reactions, followed by numerous e-mails and strange guestbook entries we´ve decided to sell a very limited amount of hand-made (!!) Normalizer CDs exclusively on this site.<BR><BR>It´s probably the weirdest project I´ve ever done so far.....I played a 56 min drumsolo; then we composed music and put authentic tour-stories from the past 2 years to it (mostly recorded in backstages or restaurants with a MD-Stereo Mic.....and we were able to archivate many famous folks that way;-)).<BR><BR>ATTENTION!<BR><BR>It´s definately not easy-listening....but tons of fun!! And very challenging. If you like the Comfortably Homeless track Kondome, you´ll love this CD!!"
var mao_mak_maa = ""
var senseless_wonder = ""
var culture_shock = ""
var hula = ""
var h_blockx_fly_eyes = ""
var space_ship_live_dvd = ""
var space_ship_one = ""
var burning_organ = ""
var special_kick = ""
var hularama = ""
var nena = ""
var pray_pray_pray = ""
var in_exile = ""
var when_you_sleep = ""
var das_ueberschall_live = ""

var offsetxpoint=-60 //Customize x offset of tooltip
var offsetypoint=20 //Customize y offset of tooltip
var ie=document.all
var ns6=document.getElementById && !document.all
var enabletip=false
if (ie||ns6)
var tipobj=document.all? document.all["dhtmltooltip"] : document.getElementById? document.getElementById("dhtmltooltip") : ""
function ietruebody(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function ddrivetip(thetext, thecolor, thewidth){
if (ns6||ie){
if (typeof thewidth!="undefined") tipobj.style.width=thewidth+"px"
if (typeof thecolor!="undefined" && thecolor!="") tipobj.style.backgroundColor=thecolor
tipobj.innerHTML=thetext
enabletip=true
return false
}
}

function positiontip(e){
if (enabletip){
var curX=(ns6)?e.pageX : event.clientX+ietruebody().scrollLeft;
var curY=(ns6)?e.pageY : event.clientY+ietruebody().scrollTop;
//Find out how close the mouse is to the corner of the window
var rightedge=ie&&!window.opera? ietruebody().clientWidth-event.clientX-offsetxpoint : window.innerWidth-e.clientX-offsetxpoint-20
var bottomedge=ie&&!window.opera? ietruebody().clientHeight-event.clientY-offsetypoint : window.innerHeight-e.clientY-offsetypoint-20

var leftedge=(offsetxpoint<0)? offsetxpoint*(-1) : -1000

//if the horizontal distance isn't enough to accomodate the width of the context menu
if (rightedge<tipobj.offsetWidth)
//move the horizontal position of the menu to the left by it's width
tipobj.style.left=ie? ietruebody().scrollLeft+event.clientX-tipobj.offsetWidth+"px" : window.pageXOffset+e.clientX-tipobj.offsetWidth+"px"
else if (curX<leftedge)
tipobj.style.left="5px"
else
//position the horizontal position of the menu where the mouse is positioned
tipobj.style.left=curX+offsetxpoint+"px"

//same concept with the vertical position
if (bottomedge<tipobj.offsetHeight)
tipobj.style.top=ie? ietruebody().scrollTop+event.clientY-tipobj.offsetHeight-offsetypoint+"px" : window.pageYOffset+e.clientY-tipobj.offsetHeight-offsetypoint+"px"
else
tipobj.style.top=curY+offsetypoint+"px"
tipobj.style.visibility="visible"
}
}

function hideddrivetip(){
if (ns6||ie){
enabletip=false
tipobj.style.visibility="hidden"
tipobj.style.left="-1000px"
tipobj.style.backgroundColor=''
tipobj.style.width=''
}
}

document.onmousemove=positiontip
*/