
<!--

image = new Array ()

image[00]  =  "images/exp.gif"
image[01]  =  "images/nav_disco.gif"
image[02]  =  "images/nav_downloads.gif"
image[03]  =  "images/nav_gbook.gif"	
image[04]  =  "images/nav_merch.gif"	
image[05]  =  "images/nav_news.gif"	
image[06]  =  "images/nav_shows.gif"
image[07]  =  "images/nav_street.gif"	
image[08]  =  "images/nav_disco-on.gif"
image[09]  =  "images/nav_downloads-on.gif"
image[10]  =  "images/nav_gbook-on.gif"	
image[11]  =  "images/nav_merch-on.gif"	
image[12]  =  "images/nav_news-on.gif"	
image[13]  =  "images/nav_shows-on.gif"
image[14]  =  "images/nav_street-on.gif"
image[15]  =  "images/index_03on.gif"
image[16]  =  "images/index_03off.gif"
image[17]  =  "images/index_03.gif"
image[18]  =  "images/index_03start.gif"
								

function haha(num, imgname)
{
        imgname.src = im[num].src
}
//setting sizing
im = new Array()
for (var i = 0; i < image.length; i++)
{
        im[i] = new Image ()
        im[i].src = image[i]
}

function countgo() 
{
setTimeout("init();",9000);
}

function init()
{
document.getElementById('nav').style.visibility='visible'
document.getElementById('head').style.visibility='visible' 
haha(17,theemph)  
}

function init()
{
document.getElementById('nav').style.visibility='visible'
document.getElementById('head').style.visibility='visible' 
haha(17,theemph)  
}

function content()
{
document.getElementById('content').style.visibility='visible'
}

function mlist_on()
{
document.getElementById('mailinglist').style.visibility='visible'
setTimeout("mlist_off();",30000);
}

function mlist_off()
{
document.getElementById('mailinglist').style.visibility='hidden'
}

function guestbook()
{
parent.ifr1.location='inc_gbook.php'
parent.ifr2.location='inc_gbook_entries.php'
}

function gbook_cnt()
{
setTimeout("guestbook();",5000);
}

function player_on()
{
parent.ifr3.location='content/purevolume.html'
document.getElementById('purevolume').style.visibility='visible'

}

function pv_on()
{
document.getElementById('pv_site').style.visibility='visible'
document.getElementById('pvloading').style.visibility='hidden'
}

function player_off()
{
parent.document.getElementById('purevolume').style.visibility='hidden'
parent.ifr3.location='content/blank.html'
}


function qtply_on()
{
parent.ifr4.location='content/quicktime.html'
document.getElementById('quicktime').style.visibility='visible'

}

function qtply_off()
{
parent.document.getElementById('quicktime').style.visibility='hidden'
parent.ifr4.location='content/blank.html'
}


function newWindow(mypage, myname, w, h, scroll, resizable) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable='+resizable+''
popupWin = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { popupWin.window.focus(); }
}

//Generic Drag Script- © Dynamic Drive (www.dynamicdrive.com)
//For full source code and terms of usage,
//visit http://www.dynamicdrive.com

var ie=document.all
var ns6=document.getElementById&&!document.all

var dragapproved=false
var z,x,y

function move(e){
if (dragapproved){
z.style.left=ns6? temp1+e.clientX-x: temp1+event.clientX-x
z.style.top=ns6? temp2+e.clientY-y : temp2+event.clientY-y
return false
}
}

function drags(e){
if (!ie&&!ns6)
return
var firedobj=ns6? e.target : event.srcElement
var topelement=ns6? "HTML" : "BODY"

while (firedobj.tagName!=topelement&&firedobj.className!="purevolume"){
firedobj=ns6? firedobj.parentNode : firedobj.parentElement
}

if (firedobj.className=="purevolume"){
dragapproved=true
z=firedobj
temp1=parseInt(z.style.left+548)
temp2=parseInt(z.style.top+283)
x=ns6? e.clientX: event.clientX
y=ns6? e.clientY: event.clientY
document.onmousemove=move
return false
}
}
document.onmousedown=drags
document.onmouseup=new Function("dragapproved=false")
//-->


