// JavaScript Document

var value_url = window.location.href.slice(window.location.href.indexOf('?') + 1);

function page1()//chaning image on load for dropdown
{
if(value_url.indexOf('html')<0)
{
document.getElementById("img"+value_url).style.display="block";
document.getElementById("img1").style.display="none";
}
}

function page(a)
{
for(i=1;i<=6;i++)
{

document.getElementById("test"+i).style.display='none';
}
document.getElementById("test"+a).style.display='block';

}

