
<!--

image = new Array ()

image[00]  =  "images/exp.gif"
image[01]  =  "images/nav_off_01.gif"
image[02]  =  "images/nav_off_02.gif"
image[03]  =  "images/nav_off_03.gif"	
image[04]  =  "images/nav_off_04.gif"	
image[05]  =  "images/nav_off_05.gif"	
image[06]  =  "images/nav_off_06.gif"
image[07]  =  "images/nav_off_07.gif"	
image[08]  =  "images/nav_off_08.gif"
image[09]  =  "images/nav_on_01.gif"
image[10]  =  "images/nav_on_02.gif"	
image[11]  =  "images/nav_on_03.gif"	
image[12]  =  "images/nav_on_04.gif"	
image[13]  =  "images/nav_on_05.gif"
image[14]  =  "images/nav_on_06.gif"
image[15]  =  "images/nav_on_07.gif"
image[16]  =  "images/nav_on_08.gif"
image[17]  =  "images/nav_in_01.gif"
image[18]  =  "images/nav_in_02.gif"
image[19]  =  "images/nav_in_03.gif"
image[20]  =  "images/nav_in_04.gif"
image[21]  =  "images/nav_in_05.gif"
image[22]  =  "images/nav_in_06.gif"
image[23]  =  "images/nav_in_07.gif"
image[24]  =  "images/nav_in_08.gif"							
image[25]  =  "images/on_4.gif"							
image[26]  =  "images/on_5.gif"							
image[27]  =  "images/on_2.gif"							
image[28]  =  "images/on_6.gif"							
image[29]  =  "images/on_3.gif"							
image[30]  =  "images/on_1.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 content()
{
document.getElementById('content').style.visibility='visible'
document.getElementById('loading').style.visibility='hidden'
}

function guestbook()
{
parent.location='gbook_push.html'
}


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 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+40)
temp2=parseInt(z.style.top+40)
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")
//-->

