Hi jamesyfx,
Thnx for helping my. This is what i have searched

. Butt what i want to that the pm color change again to other color en near 1 second color change again to the yellow color en change again to a green color en again to yellow about 1 second.
I hope you know howe now.
Thnx en sorry for my broking english.
--------------- Added [DATE]1276204090[/DATE] at [TIME]1276204090[/TIME] ---------------
I have search on the other site..
Butt i see this in the script: I dont now howe to use it butt maybe sombody now it:
PHP Code:
<script language="JavaScript"> <!-- Begin
pmnotbox = document.getElementById('pmNotifybox');
pmnotbox.style.background='#F1F1F1';
setInterval("Timer()", 500);
x=1;
function Timer() {
set=1;
if(x==0 && set==1) {
pmnotbox.style.background='#F1F1F1';
x=1;
set=0;
}
if(x==1 && set==1) {
pmnotbox.style.background='#aba811';
x=0;
set=0;
}
}