[JQuery]模拟开心网消息提示

<script type="text/javascript">
$(document).ready(
function()
{
    setInterval(shine,
1000);
}
);
var shine=function()
{
    
//document.title = new Date().getTime();
    document.title = (document.title=='你有新的短消息'?'':'你有新的短消息')
}
</script>