
function navMetaOver(divElm, isLast) {
	var imgPosType = (isLast) ? 'right' : 'any';
	divElm.style.backgroundImage = 'url(/img/metaNav/bg_active_' + imgPosType + '.gif)';
	try {
		var imgElm = divElm.firstChild.firstChild.firstChild;
		imgElm.src = imgElm.src.replace('posY_19', 'posY_23');
	} catch(e) {
	}
}
function navMetaOut(divElm, isLast) {
	var imgPosType = (isLast) ? 'right' : 'any';
	divElm.style.backgroundImage = 'url(/img/metaNav/bg_passive_' + imgPosType + '.gif)';
	try {
		var imgElm = divElm.firstChild.firstChild.firstChild;
		imgElm.src = imgElm.src.replace('posY_23', 'posY_19');
	} catch(e) {
	}
}


function navSectorOver(divElm, isLast) {
	var imgPosType = (isLast) ? 'right' : 'any';
	divElm.style.backgroundImage = 'url(/img/sectorNav/bg_active_' + imgPosType + '.gif)';
	try {
		var imgElm = divElm.firstChild.firstChild.firstChild;
		imgElm.src = imgElm.src.replace('posY_23', 'posY_19');
	} catch(e) {
	}
}
function navSectorOut(divElm, isLast) {
	var imgPosType = (isLast) ? 'right' : 'any';
	divElm.style.backgroundImage = 'url(/img/sectorNav/bg_passive_' + imgPosType + '.gif)';
	try {
		var imgElm = divElm.firstChild.firstChild.firstChild;
		imgElm.src = imgElm.src.replace('posY_19', 'posY_23');
	} catch(e) {
	}
}

function navLanguageOver(tblElm, isLast) {
	try {
		tblElm.style.marginTop = '9px';
		var imgPosType = (isLast) ? 'right' : 'any';
		tblElm.parentNode.parentNode.style.backgroundImage = 'url(/img/languageNav/bg_active_' + imgPosType + '.gif)';
	} catch(e) {
	}
}
function navLanguageOut(tblElm, isLast) {
	try {
		tblElm.style.marginTop = '3px';
		var imgPosType = (isLast) ? 'right' : 'any';
		tblElm.parentNode.parentNode.style.backgroundImage = 'url(/img/languageNav/bg_passive_' + imgPosType + '.gif)';
	} catch(e) {
	}
}

