// image changer
function changeImage(imageSRC)//here we are running the function, and bringing the image source from the onclick command
{
document.getElementById('changingImage').src=imageSRC;//setting source of main image
}

