var CurElem = 'sub0';
var ParElem = 'menu0';


// подсветка строк таблицы
function highlight (th, status) {
  	if (status) {
  		th.style.backgroundColor = '#afc6db'
  		th.style.color = '#353774'
  	} else {
	  	th.style.backgroundColor = ''
	  	th.style.color = ''
  	}
}

$(document).ready(function() {
	$("ul.mainmenu > li").mouseover(function() {
		$(this).css({'background-color': '#afc6db'});
	});
	$("ul.mainmenu > li").mouseout(function() {
		$(this).css({'background-color': ''});
	});
});