var thumbs = document.getElementById("thumbnails");


var images = new Array (
'Ader',
'Rep._Thielen',
'Newt_Gingrich__William_R_Fo',
'North__and_Barbara',
'Opening_Day_2', 
'Governor_Lingle_and_Pine',  
'Ethanol_and_Rep._Meyer',    
'Finnegan__Senator_Trimble_',  
'Football__Player_and_Meyer', 
'First_lady_Laura_Bush_and_Rep_Lynn_Finnegan',
'Grammy_winner_ching_and_Marumoto',
'Junior_Achievement_Hall_of_Fame_members',
'Malia_and_Carrie',
'ching_and_doctor',
'fallon_thielen',
'heritage_house_and_ching',
'michael_steele_and_gene_ward',
'Philippine_caucus_on_floor',
'Red_Cross_with_reps',
'Representative_Colleen_Meye_and_Gayle',
'Tad_and_Lynn',
'Priests_and_Pine'
	
);

var captions = new Array (
'Representative Gene Ward',
'Representative Cynthia Thielen',

'Former Speaker of the House Newt Gingrich well-known as the architect of the Contract with America that led the Republican Party to victory in 1994 by capturing the majority in the U.S. House for the first time in forty years with Representative Barbara Marumoto and   William R Forstchen co author of Pearl Harbor', 

'Oliver L. North is a combat decorated Marine, and a #1 best-selling author with Representative Barbara Marumoto',

'Opening day at the Hawaii State Legislative  House of Representative chambers',
'Governor Lingle and Representative Kymberly Pine',


'Left to Right:  Testifiers for HB701, William Mossman,Capt Michael Trask, Terry Thomas, Bruce Vandermark, Representative Colleen Meyer and Aan Wehmer.', 


'Representative Lynn Finnegan, celebrates  Senator Gordon Trimble\\\'s birthday with his father and Representative Collen Meyer.', 

'Colt Brennan who joined Hawai\\\'i in 2005 and quickly grabbed the starting spot at quarterback talks with Representative Colleen Meyer',


'First Lady Laura Bush and Lynn Finnegan to unveil the chosen name Papahanaumokuakea, at Washington Place',


'Grammy Winner Legends of Hawaiian Slack Key Guitar – Live from Maui , the winner of the 49th Annual Grammy Award for Best Hawaiian Music Album of the Year - George Kahumoku, Jr. with Representatives Barbara Marumoto and Corinne Ching',

'Hawaii Business Hall of Fame laureates for 2007 are celebrated on the chamber floor:Paul Loo of Morgan Stanley; Joe Nicolai of JN Automotive Group, Harold Tanouye of Green Point Nurseries. And Legacy Laureate Dwayne Steele of Grace Pacific Construction.Pictured with Representatives Corinne Ching, Gene Ward and Colleen Meyer',

'Representative Lynn Finnegan\\\'s office Personnel: Maila Grary, Majority Leader Assistant, Mailia Gray and office manager Carrie Kealoha',

'Representative Corinne Ching and Dr. Jeffrey Akaka and his wife Gayln Kong Akaka',

'Representative Cynthia Thielen with Admiral Fallon',

'Representative Corinne W.L. Ching with the President of Heritage House',

'Former Lieutenant Governor of Maryland, Michael Steel and Representative Gene Ward',

'Philippine Caucus on the Floor',

'Red Cross with Representatives Barbara Marumoto and Colleen Meyer',

'Representative Colleen Meyer and Gail Mukaihata Hannemann, CEO',

'Tad Fujikawa and Representative Lynn Finnegan',

'Representative Pine and Pastor David Wilson of New Hope Westside, Father Scott Bush from Our Lady of Perpetual Help, Pastor Gregory Burgess of Reflame Ministries and Pastor Jerry Kraesig of the Anuenue Christian Church'




);

function changeImage(source,caption)
{
	
	document.getElementById("image").src= source;
	var newNode = document.createTextNode(caption);
	var oldNode = document.getElementById("caption").firstChild;
	document.getElementById("caption").replaceChild(newNode,oldNode);		
}




function countPages()
{
	var numPages = images.length%5;
	if(numPages>0)
	{
		numPages = (images.length/5) - ( (images.length%5)/5 ) +1;
	}
	else
	{
		numPages = images.length/5;
	}

	return numPages;
}

function writePages()
{
	var pages = document.getElementById("pages");
	var beginningIndex = 0;
	var endingIndex = 4;
	
	for(var i = 1 ; i<countPages()+1; i++)
	{
		var link = document.createElement("a");
		link.id = "page"+i;
		
		while( (endingIndex+1)>images.length)
		{
			endingIndex--;
		}
		var currIndex = i -1;
		var totalIndex = countPages()-1;
		
		link.href="javascript:writeImages("+beginningIndex+","+endingIndex+","+currIndex+","+totalIndex+");";
		
		var text = document.createTextNode(i);
		link.appendChild(text);
		pages.appendChild(link);
		
			
		beginningIndex+=5;
		endingIndex+=5;
		
	}

	var counter = 10;
	while(images.length<=counter)
	{
		counter-=1;
	}
	writeImages(0,counter,0,countPages()-1);


}

function writeImages(startingIndex,endingIndex,pageIndex,pagesTotal)
{
	var img1 = document.getElementById("a");
	var img2 = document.getElementById("b");
	var img3 = document.getElementById("c");
	var img4 = document.getElementById("d");
	var img5 = document.getElementById("e");
	var link1 = document.getElementById("link_a");
	var link2 = document.getElementById("link_b");
	var link3 = document.getElementById("link_c");
	var link4 = document.getElementById("link_d");
	var link5 = document.getElementById("link_e");
	changeImage('../images/full-size/'+images[startingIndex]+'_full.jpg',captions[startingIndex]);
	
	
	for(var i = 0; i<pagesTotal+1; i++)
	{
		var pageRef = "page"+(i+1);
		var currentLink = document.getElementById(pageRef);
		currentLink.style.color = "blue";
		
	}

	var linkToChange = document.getElementById("page"+(pageIndex+1));
	linkToChange.style.color = "red";	
	
	



	img1.src="";
	link1.href="";
	if(startingIndex <= endingIndex)
	{
		img1.src = "../images/thumbnails/" + images[startingIndex] + "_thumb.jpg";
		link1.href = "javascript:changeImage(\'../images/full-size/"+images[startingIndex]+"_full.jpg\',\'"+captions[startingIndex]+"\');";
	}
	else
	{
		img1.src = "../images/blank.gif";
		img1.style.border = "0px";
	}
	


	img2.src="";
	link2.href="";
	startingIndex++;
	if(startingIndex <= endingIndex)
	{
		img2.src = "../images/thumbnails/" + images[startingIndex] + "_thumb.jpg";
		link2.href = "javascript:changeImage(\'../images/full-size/"+images[startingIndex]+"_full.jpg\',\'"+captions[startingIndex]+"\');";
	}
	else
	{
		img2.src = "../images/blank.gif";
		img2.style.border = "0px";
	}
	

	img3.src="";
	link3.href="";
	startingIndex++;
	if(startingIndex <= endingIndex)
	{
		img3.src = "../images/thumbnails/" + images[startingIndex] + "_thumb.jpg";
		link3.href = "javascript:changeImage(\'../images/full-size/"+images[startingIndex]+"_full.jpg\',\'"+captions[startingIndex]+"\');";
	}
	else
	{
		img3.src = "../images/blank.gif";
		img3.style.border = "0px";
	}


	img4.src="";
	link4.href="";
	startingIndex++;
	if(startingIndex <= endingIndex)
	{
		img4.src = "../images/thumbnails/" + images[startingIndex] + "_thumb.jpg";
		link4.href = "javascript:changeImage(\'../images/full-size/"+images[startingIndex]+"_full.jpg\',\'"+captions[startingIndex]+"\');";
	}
	else
	{
		img4.src = "../images/blank.gif";
		img4.style.border = "0px";
	}

	img5.src="";
	link5.href="";
	startingIndex++;
	if(startingIndex <= endingIndex)
	{
		img5.src = "../images/thumbnails/" + images[startingIndex] + "_thumb.jpg";
		link5.href = "javascript:changeImage(\'../images/full-size/"+images[startingIndex]+"_full.jpg\',\'"+captions[startingIndex]+"\');";
	}
	
	else
	{
		img5.src = "../images/blank.gif";
		img5.style.border = "0px";
	}
	
	
}



