/**
 * File was modified to scroll back to the original image instead of a blank one.
 *
 * by Adam Horvath
 * 2011 Feb. 20th
 */

function changeimgto(n)
{
	document.getElementById("kockakep").src="images/kocka/"+n;
        if( typeof changeimgto.image == 'undefined' ) {
            changeimgto.image = document.getElementById("kockakep").src;
        }
}

function changeimgback()
{
	document.getElementById("kockakep").src=changeimgto.image;
}
