if (top.location !=self.location) {
					top.location=self.location
			}
			 
			dayName = new Array ("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")

			monName = new Array ("January","February","March","April","May","June","July","August","September","October","November","December")

			now = new Date
			
			var message = "Copyright 2005, David 'Chevron Supreme' Hightower.  All rights reserved.\nContact NGE if you would like to purchase the artwork. Thank you!";
			
			function click(e) {
				if (document.all && (event.button==2 || event.button==3)) {
					alert(message);
					return false;
				}
				if((document.layers || (document.getElementById && !document.all)) && (e.which==2 || e.which==3)){
					alert(message);
					return false;
				}
			} 
			
			if(document.layers){
				document.captureEvents(Event.MOUSEDOWN);
				document.onmousedown=click;
			}
			
			document.onmousedown=click;
			document.onmouseup=click;
			document.oncontextmenu=new Function("return false");
		
			myPix = new Array(
				"images/bluegirl.gif",
				"images/afro.gif",
				"images/braids.gif"/*,
				"images/half.gif",
				"images/bluegirl2.gif"*/
			)
			var whichImage = true;
			imgCt = myPix.length  	
	
			function choosePic(){  				
				if (document.images){ 
					if(navigator.appName == "Netscape"){
						if (document.artPic.complete){
							randomNum = Math.floor((Math.random() * imgCt)) 	
							document.artPic.src = myPix[randomNum]
						}
					}
					else{  					
						randomNum = Math.floor((Math.random() * imgCt)) 					
						document.artPic.src = myPix[randomNum] 
														
						if (whichImage){ 						
							artTrans.style.filter = "blendTrans(duration=5)"; 						
							whichImage = false; 					
						} 					
					
						artTrans.filters("blendTrans").apply(); 					
						artTrans.style.visibility = "visible"; 					
						artTrans.filters("blendTrans").play();	 				 				
					} 			 			
				}
				setTimeout("choosePic()", 10*1000) 		 			
			}  			
