function iover(o) {
	var ie = o.firstChild;
	if(ie.src.indexOf('_off')>-1) {
		ie.src = ie.src.replace(/_off./, '_on.');
	}
}

function iout(o) {
	var ie = o.firstChild;
	if(ie.src.indexOf('_on')>-1) {
		ie.src = ie.src.replace(/_on./, '_off.');
	}
}

function tarkasta() {
	return true;
}
