$(function(){
	$("#left-menu li").mouseover(function(){
		$(this).addClass("hover");
	}).mouseout(function(){
		$(this).removeClass("hover");
	});
	
	$("#left-menu li a").each(function(){
		if($(this).text().length < 18)
			$(this).addClass("line"); 
	});
	
	$('.oper_inf img[title]').qtip({
		position : {
			target : 'mouse',
			adjust : {
				mouse : true
			}
		},
		style : {
			style : 'dark'
		}
	});
});
