// JavaScript Document

/* image swapping */


function showlargeimage(imgshow){
	document.getElementById('image').src=imgshow;
} 	

function showthumbimage(imgshow){
	document.getElementById('img').src=imgshow;
} 	
function tooltip(Id){

	document.getElementById(Id).style.display='block';
}
function toolout(Id){

	document.getElementById(Id).style.display='none';
}
