function gallery(what){
who = document.getElementById;
var items = [ 			["images/gallery/A103IDProduct_th.jpg","images/gallery/A103IDProduct.jpg","What we've done", "ILID has gained a wealth of knowledge, skills and resources that we can now make available to you. We have formed a competent and professional team who understand what it takes to turn an idea into a practical and commercially viable product. The combination of a dedicated team and comprehensive in-house facilities provide a valuable resource for businesses who want to develop and refine an electronic or plastic product in Australia."]
			 ]
			 
document.getElementById('thumb1').innerHTML = '<a href="#"><img src="' + items[0][0] + '" class="thumbs"></a>';
;

document.getElementById('photo_section').innerHTML = '<img src="' + items[what][1] + '">';
document.getElementById('heading_section').innerHTML = items[what][2];
document.getElementById('text_section').innerHTML = items[what][3];
}

function scrollUp(){
well =parseInt(document.getElementById('thumbHolder').style.top);
huh = well - 70 + 'px';
document.getElementById('thumbHolder').style.top = huh;

}
function scrollDown(){
well =parseInt(document.getElementById('thumbHolder').style.top);
huh = well + 70 + 'px';
document.getElementById('thumbHolder').style.top = huh;

}
// JavaScript Document
