////////////////////////////////////
// Inbox Flasher 1.0 //
// By Choco of ZB Support //
// June 4th, 2008 //
///////////////////////////////////

color = [];
interval = 500; //Flash rate in milliseconds
color[0] = "steelblue"; //Color one
color[1] = "red"; //Color two -- script flashes between these two

l=0;function flash() {z=$("#menu_pm a")[0];$(z).css("color",color[l]);l=(0-l)+1;}
$(function(){$("#menu_pm a").each(function() {x=$(this).html();if(x.match(/small\>(\d+)</gi)) {y=RegExp.$1;if(y>0){q=setInterval("flash()",interval);$(this).attr("id","flash");}}});});
