$(document).ready(function(){
	$('.otherOper li').mouseover(function() {
		var _this = $(this);
		_this.find(' > a > img').removeClass("display");
		_this.find(" > .level-1").addClass("hover");
		var _width = _this.find(' > a').width();
		$('#test li').removeClass('hovered');
		_this.find('div.b_1').css('left', _width+25);
		_this.addClass('hovered');
	}).mouseout(function() {
		$('.otherOper li').removeClass('hovered');
		$('.otherOper li .level-1').removeClass('hover');
		$('.otherOper li img').addClass("display");
	});
});
