function optionON(a) {
	a.style.background = '#653A22';
}

function optionOFF(b) {
	b.style.background = 'transparent';
}

function newsON(c, d) {  
	c.style.cursor = "pointer";
	e = c.getElementsByTagName('img');
	f = 'images/newsSmallTIT' + d + 'ON.gif'
	e[0].setAttribute('src', f);
	e[1].setAttribute('src', 'images/newsMoreBUTON.gif');
}

function newsOFF(g, h) {  
	i = g.getElementsByTagName('img');
	j = 'images/newsSmallTIT' + h + 'OFF.gif'
	i[0].setAttribute('src', j);
	i[1].setAttribute('src', 'images/newsMoreBUTOFF.gif');
}

function careerON(k, l) {  
	k.style.cursor = "pointer";
	k.style.background = "#653A22";
	m = k.getElementsByTagName('img');
	n = 'images/' + l + 'TIT.gif'
	o = 'images/' + l + 'SUB.gif'
	m[0].setAttribute('src', n);
	m[1].setAttribute('src', o);
}

function careerOFF(p, q) {  
	p.style.background = "transparent";
	r = p.getElementsByTagName('img');
	s = 'images/' + q + 'TITOFF.gif'
	t = 'images/' + q + 'SUBOFF.gif'
	r[0].setAttribute('src', s);
	r[1].setAttribute('src', t);
}