//-- Navigation Rollovers

	if (document.images) {
		homeOff = new Image
		homeOn = new Image
		aboutOff = new Image
		aboutOn = new Image
		galleryOff = new Image
		galleryOn = new Image
		blogOff = new Image
		blogOn = new Image
		contactOff = new Image
		contactOn = new Image

		homeOff.src = "images/navigation/home_off.jpg"
		homeOn.src = "images/navigation/home_on.jpg"
		aboutOff.src = "images/navigation/about_off.jpg"
		aboutOn.src = "images/navigation/about_on.jpg"
		galleryOff.src = "images/navigation/gallery_off.jpg"
		galleryOn.src = "images/navigation/gallery_on.jpg"
		blogOff.src = "images/navigation/blog_off.jpg"
		blogOn.src = "images/navigation/blog_on.jpg"
		contactOff.src = "images/navigation/contact_off.jpg"
		contactOn.src = "images/navigation/contact_on.jpg"
	}
	else {
		homeOff = ""
		homeOn = ""
		aboutOff = ""
		aboutOn = ""
		galleryOff = ""
		galleryOn = ""
		blogOff = ""
		blogOn = ""
		contactOff = ""
		contactOn = ""
		document.Home = ""
		document.about = ""
		document.gallery = ""
		document.blog = ""
		document.contact = ""
	}
	
//-- End Rollovers

//-- Form Validation

	function validEmail(email) {
			invalidChars = " /:,;"
	
			if (email == "") {						
				return false
			}
			for (i=0; i<invalidChars.length; i++) {	
				badChar = invalidChars.charAt(i)
				if (email.indexOf(badChar,0) > -1) {
					return false
				}
			}
			atPos = email.indexOf("@",1)			
			if (atPos == -1) {
				return false
			}
			if (email.indexOf("@",atPos+1) != -1) {	
				return false
			}
			periodPos = email.indexOf(".",atPos)
			if (periodPos == -1) {					
				return false
			}
			if (periodPos+3 > email.length)	{		
				return false
			}
			return true
		}
		
		function submitIt(form) {			

		if (form.name.value == "") {
				alert("Please enter your name")
				form.name.focus()
				form.name.select()
				return false
			}
			
		if (form.email.value == "") {
				alert("You must enter an Email Address")
				form.email.focus()
				form.email.select()
				return false
			}
			
		if (!validEmail(form.email.value)) {
				alert("Invalid Email Address")
				form.email.focus()
				form.email.select()
				return false
			}

			return true
		}

//-- End Validation



//-- Roll over submit button

		if (document.images) {
			submitOn = new Image
			submitOff = new Image
	
			submitOn.src = "images/navigation/submit_over.jpg"
			submitOff.src = "images/navigation/submit_off.jpg"
		}
		else {
			submitOn = ""
			submitOff = ""
			document.subButton = ""
		}

		function subForm() {
			if (submitIt(document.form)) {
				document.form.submit()
			}
		}
		
//-- End Rollover submit button

      
/***********************************************
* Ultimate Fade-In Slideshow (v1.51): © Dynamic Drive (http://www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for this script and 100s more.
***********************************************/
 
var fadeimages=new Array()
//SET IMAGE PATHS. Extend or contract array as needed
fadeimages[0]=["images/home_slideshow/img1.jpg", "", ""] //plain image syntax
fadeimages[1]=["images/home_slideshow/img2.jpg", "gallery2.html", "_new"] //image with link syntax
fadeimages[2]=["images/home_slideshow/img3.jpg", "gallery3.html", "_new"] //image with link and target syntax
fadeimages[3]=["images/home_slideshow/img4.jpg", "", ""]
fadeimages[4]=["images/home_slideshow/img5.jpg", "", ""]
fadeimages[5]=["images/home_slideshow/img6.jpg", "", ""]
fadeimages[6]=["images/home_slideshow/img7.jpg", "", ""]
fadeimages[7]=["images/home_slideshow/img8.jpg", "", ""]
fadeimages[8]=["images/home_slideshow/img9.jpg", "", ""]
fadeimages[9]=["images/home_slideshow/img10.jpg", "", ""]
 
var fadeimages2=new Array() //2nd array set example. Remove or add more sets as needed.
//SET IMAGE PATHS. Extend or contract array as needed
fadeimages2[0]=["images/navigation/sponsor1.jpg", "www.bbc.co.uk", ""] //plain image syntax
fadeimages2[1]=["images/navigation/sponsor2.jpg", "www.facebook.com", ""] //image with link syntax
fadeimages2[2]=["images/navigation/sponsor3.jpg", "www.bbc.co.uk", ""] //image with link and target syntax
fadeimages2[3]=["images/navigation/sponsor4.jpg", "www.sumatransurfariis.com", ""]
 
var fadebgcolor="white"

////NO need to edit beyond here/////////////
 
var fadearray=new Array() //array to cache fadeshow instances
var fadeclear=new Array() //array to cache corresponding clearinterval pointers
 
var dom=(document.getElementById) //modern dom browsers
var iebrowser=document.all
 
function fadeshow(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){
this.pausecheck=pause
this.mouseovercheck=0
this.delay=delay
this.degree=10 //initial opacity degree (10%)
this.curimageindex=0
this.nextimageindex=1
fadearray[fadearray.length]=this
this.slideshowid=fadearray.length-1
this.canvasbase="canvas"+this.slideshowid
this.curcanvas=this.canvasbase+"_0"
if (typeof displayorder!="undefined")
theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :)
this.theimages=theimages
this.imageborder=parseInt(borderwidth)
this.postimages=new Array() //preload images
for (p=0;p<theimages.length;p++){
this.postimages[p]=new Image()
this.postimages[p].src=theimages[p][0]
}
 
var fadewidth=fadewidth+this.imageborder*2
var fadeheight=fadeheight+this.imageborder*2
 
if (iebrowser&&dom||dom) //if IE5+ or modern browsers (ie: Firefox)
document.write('<div id="master'+this.slideshowid+'" style="position:relative;width:'+fadewidth+'px;height:'+fadeheight+'px;overflow:hidden;"><div id="'+this.canvasbase+'_0" style="position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;top:0;left:0;filter:progid:DXImageTransform.Microsoft.alpha(opacity=10);opacity:0.1;-moz-opacity:0.1;-khtml-opacity:0.1;background-color:'+fadebgcolor+'"></div><div id="'+this.canvasbase+'_1" style="position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;top:0;left:0;filter:progid:DXImageTransform.Microsoft.alpha(opacity=10);opacity:0.1;-moz-opacity:0.1;-khtml-opacity:0.1;background-color:'+fadebgcolor+'"></div></div>')
else
document.write('<div><img name="defaultslide'+this.slideshowid+'" src="'+this.postimages[0].src+'"></div>')
 
if (iebrowser&&dom||dom) //if IE5+ or modern browsers such as Firefox
this.startit()
else{
this.curimageindex++
setInterval("fadearray["+this.slideshowid+"].rotateimage()", this.delay)
}
}

function fadepic(obj){
if (obj.degree<100){
obj.degree+=10
if (obj.tempobj.filters&&obj.tempobj.filters[0]){
if (typeof obj.tempobj.filters[0].opacity=="number") //if IE6+
obj.tempobj.filters[0].opacity=obj.degree
else //else if IE5.5-
obj.tempobj.style.filter="alpha(opacity="+obj.degree+")"
}
else if (obj.tempobj.style.MozOpacity)
obj.tempobj.style.MozOpacity=obj.degree/101
else if (obj.tempobj.style.KhtmlOpacity)
obj.tempobj.style.KhtmlOpacity=obj.degree/100
else if (obj.tempobj.style.opacity&&!obj.tempobj.filters)
obj.tempobj.style.opacity=obj.degree/101
}
else{
clearInterval(fadeclear[obj.slideshowid])
obj.nextcanvas=(obj.curcanvas==obj.canvasbase+"_0")? obj.canvasbase+"_0" : obj.canvasbase+"_1"
obj.tempobj=iebrowser? iebrowser[obj.nextcanvas] : document.getElementById(obj.nextcanvas)
obj.populateslide(obj.tempobj, obj.nextimageindex)
obj.nextimageindex=(obj.nextimageindex<obj.postimages.length-1)? obj.nextimageindex+1 : 0
setTimeout("fadearray["+obj.slideshowid+"].rotateimage()", obj.delay)
}
}
 
fadeshow.prototype.populateslide=function(picobj, picindex){
var slideHTML=""
if (this.theimages[picindex][1]!="") //if associated link exists for image
slideHTML='<a href="'+this.theimages[picindex][1]+'" target="'+this.theimages[picindex][2]+'">'
slideHTML+='<img src="'+this.postimages[picindex].src+'" border="'+this.imageborder+'px">'
if (this.theimages[picindex][1]!="") //if associated link exists for image
slideHTML+='</a>'
picobj.innerHTML=slideHTML
}
 
 
fadeshow.prototype.rotateimage=function(){
if (this.pausecheck==1) //if pause onMouseover enabled, cache object
var cacheobj=this
if (this.mouseovercheck==1)
setTimeout(function(){cacheobj.rotateimage()}, 100)
else if (iebrowser&&dom||dom){
this.resetit()
var crossobj=this.tempobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas)
crossobj.style.zIndex++
fadeclear[this.slideshowid]=setInterval("fadepic(fadearray["+this.slideshowid+"])",50)
this.curcanvas=(this.curcanvas==this.canvasbase+"_0")? this.canvasbase+"_1" : this.canvasbase+"_0"
}
else{
var ns4imgobj=document.images['defaultslide'+this.slideshowid]
ns4imgobj.src=this.postimages[this.curimageindex].src
}
this.curimageindex=(this.curimageindex<this.postimages.length-1)? this.curimageindex+1 : 0
}
 
fadeshow.prototype.resetit=function(){
this.degree=10
var crossobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas)
if (crossobj.filters&&crossobj.filters[0]){
if (typeof crossobj.filters[0].opacity=="number") //if IE6+
crossobj.filters(0).opacity=this.degree
else //else if IE5.5-
crossobj.style.filter="alpha(opacity="+this.degree+")"
}
else if (crossobj.style.MozOpacity)
crossobj.style.MozOpacity=this.degree/101
else if (crossobj.style.KhtmlOpacity)
crossobj.style.KhtmlOpacity=this.degree/100
else if (crossobj.style.opacity&&!crossobj.filters)
crossobj.style.opacity=this.degree/101
}
 
 
fadeshow.prototype.startit=function(){
var crossobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas)
this.populateslide(crossobj, this.curimageindex)
if (this.pausecheck==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER
var cacheobj=this
var crossobjcontainer=iebrowser? iebrowser["master"+this.slideshowid] : document.getElementById("master"+this.slideshowid)
crossobjcontainer.onmouseover=function(){cacheobj.mouseovercheck=1}
crossobjcontainer.onmouseout=function(){cacheobj.mouseovercheck=0}
}
this.rotateimage()
}

//-- End Fade in Slideshow (homepage)


//-- Refernce number arrays
//-- Gallery 1
		ref = new Array
		ref[1] = "Ref: w32425"
		ref[2] = "Ref: 43w4534"
		ref[4] = "Ref: 435435f"
		ref[6] = " Maui"
		ref[7] = "Kauai\rTodd's Birthday"
		ref[8] = "Disembark in Honolulu\rFly back to CA"
		ref[13] = "Last day of school"
		ref[15] = "Father's Day\rOpen mike readings"
		ref[17] = "NCMUG meeting"
		ref[20] = "3rd Friday Book Club\rCarol and Bob's anniversary"
		ref[25] = "Parent's anniversary"
		ref[27] = "Howard's Birthday"
	
		function showInfo(thisDay) {
			document.gallery.ref.value = ref[thisDay]
		}
//-- End Gallery 1

//-- Gallery 2
		ref2 = new Array
		ref2[1] = "Ref: w32425"
		ref2[2] = "Ref: 43w4534"
		ref2[4] = "Ref: 435435f"
		ref2[6] = " Maui"
		ref2[7] = "Kauai\rTodd's Birthday"
		ref2[8] = "Disembark in Honolulu\rFly back to CA"
		ref2[13] = "Last day of school"
		ref2[15] = "Father's Day\rOpen mike readings"
		ref2[17] = "NCMUG meeting"
		ref2[20] = "3rd Friday Book Club\rCarol and Bob's anniversary"
		ref2[25] = "Parent's anniversary"
		ref2[27] = "Howard's Birthday"
	
		function showInfo2(thisDay) {
			document.gallery2.ref2.value = ref2[thisDay]
		}
//-- End Gallery 2

//-- end Reference number array

//-- Thumbnail rollovers
//-- Gallery 1

	if (document.images) {
		gallery1ONE = new Image
		gallery1TWO = new Image
		gallery1THREE = new Image
		gallery1FOUR = new Image
		gallery1FIVE = new Image
		gallery1SIX = new Image
		gallery1SEVEN = new Image
		gallery1EIGHT = new Image
		gallery1NINE = new Image
		gallery1TEN = new Image
		gallery1ELEVEN = new Image
		gallery1TWELVE = new Image
		gallery1THIRTEEN = new Image
		
		gallery1ONE.src = "images/gallery1_medium/LARGE1.jpg"
		gallery1TWO.src = "images/gallery1_medium/LARGE2.jpg"
		gallery1THREE.src = "images/gallery1_medium/LARGE3.jpg"
		gallery1FOUR.src = "images/gallery1_medium/ickleMe_04.jpg"
		gallery1FIVE.src = "images/gallery1_medium/ickleMe_05.jpg"
		gallery1SIX.src = "images/gallery1_medium/ickleMe_06.jpg"
		gallery1SEVEN.src = "images/gallery1_mediumickleMe_07.jpg"
		gallery1EIGHT.src = "images/gallery1_medium/ickleMe_08.jpg"
		gallery1NINE.src = "images/gallery1_medium/ickleMe_09.jpg"
		gallery1TEN.src = "images/gallery1_mediumickleMe_10.jpg"
		gallery1ELEVEN.src = "images/gallery1_medium/ickleMe_11.jpg"
		gallery1TWELVE.src = "images/gallery1_medium/ickleMe_12.jpg"
		gallery1THIRTEEN.src = "images/gallery1_medium/ickleMe_13.jpg"
	}
	else {
		gallery1ONE = ""
		gallery1TWO = ""
		gallery1THREE = ""
		gallery1FOUR = ""
		gallery1FIVE = ""
		gallery1SIX = ""
		gallery1SEVEN = ""
		gallery1EIGHT = ""
		gallery1NINE = ""
		gallery1TEN = ""
		gallery1ELEVEN = ""
		gallery1TWELVE = ""
		gallery1THIRTEEN = ""
		document.arrow = ""
	}
//-- End Gallery #1

//-- Gallery 2

	if (document.images) {
		gallery2ONE = new Image
		gallery2TWO = new Image
		gallery2THREE = new Image
		gallery2FOUR = new Image
		gallery2FIVE = new Image
		gallery2SIX = new Image
		gallery2SEVEN = new Image
		gallery2EIGHT = new Image
		gallery2NINE = new Image
		gallery2TEN = new Image
		gallery2ELEVEN = new Image
		gallery2TWELVE = new Image
		gallery2THIRTEEN = new Image
		
		gallery2ONE.src = "images/gallery2_medium/LARGE1.jpg"
		gallery2TWO.src = "images/gallery2_medium/LARGE2.jpg"
		gallery2THREE.src = "images/gallery2_medium/LARGE3.jpg"
		gallery2FOUR.src = "images/gallery2_medium/ickleMe_04.jpg"
		gallery2FIVE.src = "images/gallery2_medium/ickleMe_05.jpg"
		gallery2SIX.src = "images/gallery2_medium/ickleMe_06.jpg"
		gallery2SEVEN.src = "images/gallery2_medium/ickleMe_07.jpg"
		gallery2EIGHT.src = "images/gallery2_medium/ickleMe_08.jpg"
		gallery2NINE.src = "images/gallery2_medium/ickleMe_09.jpg"
		gallery2TEN.src = "images/gallery2_medium/ickleMe_10.jpg"
		gallery2ELEVEN.src = "images/gallery2_medium/ickleMe_11.jpg"
		gallery2TWELVE.src = "images/gallery2_medium/ickleMe_12.jpg"
		gallery2THIRTEEN.src = "images/gallery2_medium/ickleMe_13.jpg"
	}
	else {
		gallery2ONE = ""
		gallery2TWO = ""
		gallery2THREE = ""
		gallery2FOUR = ""
		gallery2FIVE = ""
		gallery2SIX = ""
		gallery2SEVEN = ""
		gallery2EIGHT = ""
		gallery2NINE = ""
		gallery2TEN = ""
		gallery2ELEVEN = ""
		gallery2TWELVE = ""
		gallery2THIRTEEN = ""
		document.arrow2 = ""
	}
//-- End Gallery #2

//-- End Thumbnail rollovers

//-- New Window

function newWindow() {
		boardWindow = window.open("http://74pants.blogspot.com/")
	}

function newWindow2() {
		boardWindow = window.open("http://www.sumatransurfariis.com/")
	}
//-- End New Window

//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com

var message="74pants images are all protected by copyright";

///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")

//-- End Right Click Disable
