// JavaScript Document
if (document.images)
   {
     pic1on= new Image(60,60);
     pic1on.src="/images/Jax/JaxImage1_60screen.jpg";  

     pic1off= new Image(60,60);
     pic1off.src="/images/Jax/JaxImage1_60.jpg";
	 
	 pic2on= new Image(60,60);
     pic2on.src="/images/Jax/JaxImage2_60screen.jpg";  

     pic2off= new Image(60,60);
     pic2off.src="/images/Jax/JaxImage2_60.jpg";
	 
	 pic3on= new Image(60,60);
     pic3on.src="/images/Jax/JaxImage3_60screen.jpg";  

     pic3off= new Image(60,60);
     pic3off.src="/images/Jax/JaxImage3_60.jpg";
	
	 pic4on= new Image(60,60);
     pic4on.src="/images/Jax/JaxImage4_60screen.jpg";  

     pic4off= new Image(60,60);
     pic4off.src="/images/Jax/JaxImage4_60.jpg";
	 
	 pic1big= new Image(250,250);
     pic1big.src="/images/Jax/JaxImage1_250.jpg";
	 
	 pic2big= new Image(250,250);
     pic2big.src="/images/Jax/JaxImage2_250.jpg";
	 
	 pic3big= new Image(250,250);
     pic3big.src="/images/Jax/JaxImage3_250.jpg";
	 
	 pic4big= new Image(250,250);
     pic4big.src="/images/Jax/JaxImage4_250.jpg";
	 
	 pic5on= new Image(60,60);
     pic5on.src="/images/PPines/PPinesImage1_60screen.jpg";  

     pic5off= new Image(60,60);
     pic5off.src="/images/PPines/PPinesImage1_60.jpg";
	 
	 pic6on= new Image(60,60);
     pic6on.src="/images/PPines/PPinesImage2_60screen.jpg";  

     pic6off= new Image(60,60);
     pic6off.src="/images/PPines/PPinesImage2_60.jpg";
	 
	 pic7on= new Image(60,60);
     pic7on.src="/images/PPines/PPinesImage3_60screen.jpg";  

     pic7off= new Image(60,60);
     pic7off.src="/images/PPines/PPinesImage3_60.jpg";
	
	 pic8on= new Image(60,60);
     pic8on.src="/images/PPines/PPinesImage4_60screen.jpg";  

     pic8off= new Image(60,60);
     pic8off.src="/images/PPines/PPinesImage4_60.jpg";
	 
	 pic5big= new Image(250,250);
     pic5big.src="/images/PPines/PPinesImage1_250.jpg";
	 
	 pic6big= new Image(250,250);
     pic6big.src="/images/PPines/PPinesImage2_250.jpg";
	 
	 pic7big= new Image(250,250);
     pic7big.src="/images/PPines/PPinesImage3_250.jpg";
	 
	 pic8big= new Image(250,250);
     pic8big.src="/images/PPines/PPinesImage4_250.jpg";
   }


function loadJaxImg(img){
	var imgName = "locationmain"; // name of the big image
	var srcs = ["/images/Jax/JaxImage1_250.jpg","/images/Jax/JaxImage2_250.jpg","/images/Jax/JaxImage3_250.jpg","/images/Jax/JaxImage4_250.jpg"]; // array of SRC's for the big images
	
	// Change small image to screened thumb
	var smimgName = "location" + img; // name of the image
	var smsrcs = ["/images/Jax/JaxImage1_60screen.jpg","/images/Jax/JaxImage2_60screen.jpg","/images/Jax/JaxImage3_60screen.jpg","/images/Jax/JaxImage4_60screen.jpg"]; // array of SRC's for the small images
	
	// Change Images
	document.images[imgName].src=srcs[img];
	document.images[smimgName].src=smsrcs[img];
	
	var tsrcs = ["/images/Jax/JaxImage1_60.jpg","/images/Jax/JaxImage2_60.jpg","/images/Jax/JaxImage3_60.jpg","/images/Jax/JaxImage4_60.jpg"]; // array of SRC's for the small images
	
	// Clear any screened images
	for (i=0; i<4; i++){
		var tName = "location" + i;
		if (i != img){
			document.images[tName].src=tsrcs[i];
		}
	}

}

function loadPImg(img){
	var imgName = "locationmain"; // name of the big image
	var srcs = ["/images/PPines/PPinesImage1_250.jpg","/images/PPines/PPinesImage2_250.jpg","/images/PPines/PPinesImage3_250.jpg","/images/PPines/PPinesImage4_250.jpg"]; // array of SRC's for the big images
	
	// Change small image to screened thumb
	var smimgName = "location" + img; // name of the image
	var smsrcs = ["/images/PPines/PPinesImage1_60screen.jpg","/images/PPines/PPinesImage2_60screen.jpg","/images/PPines/PPinesImage3_60screen.jpg","/images/PPines/PPinesImage4_60screen.jpg"]; // array of SRC's for the small images
	
	// Change Images
	document.images[imgName].src=srcs[img];
	document.images[smimgName].src=smsrcs[img];
	
	var tsrcs = ["/images/PPines/PPinesImage1_60.jpg","/images/PPines/PPinesImage2_60.jpg","/images/PPines/PPinesImage3_60.jpg","/images/PPines/PPinesImage4_60.jpg"]; // array of SRC's for the small images
	
	// Clear any screened images
	for (i=0; i<4; i++){
		var tName = "location" + i;
		if (i != img){
			document.images[tName].src=tsrcs[i];
		}
	}

}

function changeStyle(p){
		var curStyle = document.getElementById(p).className;
		if (curStyle == "bullet_down"){
			document.getElementById(p).className = "bullet_up";
		}
		else if (curStyle == "bullet_up") {
			document.getElementById(p).className = "bullet_down";
		}
	}
