// JavaScript Document

function thumbSet1()
	{
		document.getElementById("thumbHold").innerHTML = '<li id="couple"><a href="javascript:imgCouple()">Couple</a></li><li id="self_portrait"><a href="javascript:imgSelfPortrait()">Self Portrait</a></li><li id="girl"><a href="javascript:imgGirl()">Girl</a></li><li id="jamie"><a href="javascript:imgJamie()">Jamie</a></li><li id="pete"><a href="javascript:imgPete()">Pete</a></li><li id="thumbNum"><a href="javascript:thumbSet2()">Next</a></li>';
	}
function thumbSet2()
	{
		document.getElementById("thumbHold").innerHTML = '<li id="tricia"><a href="javascript:imgTricia()">Tricia</a></li><li id="steph"><a href="javascript:imgSteph()">Steph</a></li><li id="food_illustration"><a href="javascript:imgFoodIllustration()">Food Illustration</a></li><li id="lab_amazon"><a href="javascript:imgLabAmazon()">Amaderm Logo</a></li><li id="tony"><a href="javascript:imgTony()">Tony</a></li><li id="thumbNum"><a href="javascript:thumbSet1()">Previous</a></li>';
	}

function imgPete()
	{
		document.mainImg.src = 'artwork/pete.jpg';
		document.getElementById("imgDescrip").innerHTML = '<strong><em>Pete</em></strong>, oil on canvas, 24 x 18 in. 2006';
}
function imgCouple()
	{
		document.mainImg.src = 'artwork/couple.jpg';
		document.getElementById("imgDescrip").innerHTML = '<strong><em>Couple</em></strong>, acrylic on masonite, 31 x 16 in. 2007';
}
function imgGirl()
	{
		document.mainImg.src = 'artwork/girl.jpg';
		document.getElementById("imgDescrip").innerHTML = '<strong><em>Girl</em></strong>, oil on canvas, 40 x 30 in. 2003';
}
function imgSelfPortrait()
	{
		document.mainImg.src = 'artwork/self_portrait.jpg';
		document.getElementById("imgDescrip").innerHTML = '<strong><em>Self Portrait</em></strong>, oil on canvas, 40 x 30 in. 2006';
}
function imgJamie()
	{
		document.mainImg.src = 'artwork/jamie.jpg';
		document.getElementById("imgDescrip").innerHTML = '<strong><em>Jamie</em></strong>, acrylic on masonite, 24 x 31 in. 2007';
}
function imgTricia()
	{
		document.mainImg.src = 'artwork/tricia.jpg';
		document.getElementById("imgDescrip").innerHTML = '<strong><em>Tricia</em></strong>, oil on canvas, 18 x 24 in. 2007';
}
function imgSteph()
	{
		document.mainImg.src = 'artwork/steph.jpg';
		document.getElementById("imgDescrip").innerHTML = '<strong><em>Steph</em></strong>, acrylic on canvas, 30 x 40 in. 2007';
}
function imgFoodIllustration()
	{
		document.mainImg.src = 'artwork/food_illustration.jpg';
		document.getElementById("imgDescrip").innerHTML = '<strong><em>Textbook Illustration</em></strong>, 2009';
}
function imgLabAmazon()
	{
		document.mainImg.src = 'artwork/lab_amazon.jpg';
		document.getElementById("imgDescrip").innerHTML = '<strong><em>Logo Development</em></strong>, Lab Amazon, Fall 2007';
}
function imgTony()
	{
		document.mainImg.src = 'artwork/tony.jpg';
		document.getElementById("imgDescrip").innerHTML = '<strong><em>Tony</em></strong>, acrylic on masonite, 24 x 32 in. 2007';
}
