jQuery(document).ready(function() {
setInterval(function(){
$.post('servlet/newNcheCheck',function(data){
if(data=="true"){
setTimeout(function () {
//document.getElementById("sound").src="<%=basePath%>admin/media/global.wav";
var unique_id = $.gritter.add({
title: '<font color="#5a0101">新消息</font>',
text:'你有新商机消息未处理<br><a href="modules/shniche/diallogMaint.jsp" style="color:#ccc">商机信息管理</a>',
image: 'images/msg.png',
sticky: true,
time: '',
class_name: 'gritter-light'
});
setTimeout(function () {
$.gritter.remove(unique_id, {
fade: true,
speed: 'slow'
});
}, 12000);
}, 2000);
}
});
},2000);
});