function showImage(whichImage){
	
	var theImages = new Array();
	var theStyle = new Array();
	var theFabric = new Array();
	var thePrice = new Array();
	var alttag = new Array();
	
	var pathprefix = 'images/shirtstudio_gallery/';
	
	
	theImages[0] = 'shirt1_b.jpg' // replace with names of images
	theStyle[0] = "Tab Collar with Rounded French Cuffs."
	theFabric[0] = "Two-Ply Superfine, 100% Cotton Ice Gray."
	thePrice[0] = "$65"
	alttag[0] = "Tab Collar with Rounded French Cuffs"
	
	theImages[1] = 'shirt2_b.jpg' // replace with names of images
	theStyle[1] = "English Wide Spread Collar with Rounded French Cuffs."
	theFabric[1] = "Luxury Cotton, 120s Blue White."
	thePrice[1] = "$125"
	alttag[1] = "English Wide Spread Collar with Rounded French Cuffs"
	
	theImages[2] = 'shirt3_b.jpg' // replace with names of images
	theStyle[2] = "Classic Straight Collar with Two Button Cut Away Cuffs."
	theFabric[2] = "Two-Ply Superfine 100%, cotton Tan."
	thePrice[2] = "$65 "
	alttag[2] = "Classic Straight Collar with Two Button Cut Away Cuffs"
	
	theImages[3] = 'shirt4_b.jpg' // replace with names of images
	theStyle[3] = "Hidden Button Down Collar with Two Button Square cuffs. "
	theFabric[3] = "Two-Ply Superfine, Royal Oxford in Dark Gray. "
	thePrice[3] = "$65"
	alttag[3] = "Hidden Button Down Collar with Two Button Square cuffs"
	
	theImages[4] = 'shirt5_b.jpg' // replace with names of images
	theStyle[4] = "Rounded Pinhole White Collar with Convertible Cuffs."
	theFabric[4] = "Two-Ply Superfine 100%, Cotton Navy Stripe. "
	thePrice[4] = "$65"
	alttag[4] = "Rounded Pinhole White Collar with Convertible Cuffs"
	
	theImages[5] = 'shirt6_b.jpg' // replace with names of images
	theStyle[5] = "Classic Straight Collar with Single Cut Away Cuffs."
	theFabric[5] = "Two Ply Superfine 100% Cotton, Black stripe."
	thePrice[5] = "$65"
	alttag[5] = "Classic Straight Collar with Single Cut Away Cuffs"

	theImages[6] = 'shirt7_b.jpg' // replace with names of images
	theStyle[6] = "Classic button down with one button rounded cuff."
	theFabric[6] = "Executive Collection - Two Ply 100’s Superfine Cotton - Multi color Stripes."
	thePrice[6] = "$95"
	alttag[6] = "Classic button down with one button rounded cuff"

	theImages[7] = 'shirt8_b.jpg' // replace with names of images
	theStyle[7] = "Classic button down with one button rounded cuff."
	theFabric[7] = "Two Ply Superfine Cotton - Multi color Stripes."
	thePrice[7] = "$65"
	alttag[7] = "Classic button down with one button rounded cuff"
	
	theImages[8] = 'shirt9_b.jpg' // replace with names of images
	theStyle[8] = "Classic button down with one button rounded cuff."
	theFabric[8] = "Two Ply Superfine Cotton - Multi color Stripes."
	thePrice[8] = "$65"
	alttag[8] = "Classic button down with one button rounded cuff"
	
	theImages[9] = 'shirt10_b.jpg' // replace with names of images
	theStyle[9] = "to be defined"
	theFabric[9] = "to be defined"
	thePrice[9] = "$00"
	alttag[9] = "to be defined"
		
		document.getElementById('imgShirt').src = pathprefix + theImages[whichImage];
		document.getElementById('collar').innerHTML = theStyle[whichImage];
		document.getElementById('fabricName').innerHTML = theFabric[whichImage];
		document.getElementById('amount').innerHTML = thePrice[whichImage];

}