function hide1()
{
document.getElementById('img1').style.display = 'none';
}
function show1()
{
document.getElementById('img1').style.display = 'block';
}
function hide2()
{
document.getElementById('img2').style.display = 'none';
}
function show2()
{
document.getElementById('img2').style.display = 'block';
}
function hide3()
{
document.getElementById('img3').style.display = 'none';
}
function show3()
{
document.getElementById('img3').style.display = 'block';
}
function hide4()
{
document.getElementById('img4').style.display = 'none';
}
function show4()
{
document.getElementById('img4').style.display = 'block';
}
function hide5()
{
document.getElementById('img5').style.display = 'none';
}
function show5()
{
document.getElementById('img5').style.display = 'block';
}


