$( function() {
	nav_highlight();
	
	$('#iso').attr('src', '/media/img/iso-ukas-dim.gif');
	$('#iso').mouseover(function() {
	    $(this).attr('src', '/media/img/iso-ukas.gif');
	});
	$('#iso').mouseout(function() {
	    $(this).attr('src', '/media/img/iso-ukas-dim.gif');
	});
});

//Highlight the right menu item for non-pageCMS pages
function nav_highlight() {
	var total_lit = $('#nav_main ul li').hasClass('here');
	var body_class = $('body').attr('class').split('/');
	
	if ( ! total_lit && body_class != '') {
		$('#nav_main ul li a').each( function() {
			if ($(this).attr('href') == $('body').attr('class')) {
				$(this).addClass('here');
			}
			else if ($(this).attr('href').indexOf(body_class[1]) != -1 && total_lit == 0) {
				$(this).addClass('here');
				total_lit++;
			}	
		});
	};
}

