@swit
you posted the old code

here are his new codes...lolz...
Provide the url of your 4 animated photos... no need to insert width and height in the code for they will be automatically resized by Friendster's default css... the animated images will also automatically adopt to the image effects you already have in your css file. no need for links also because they already are inside your default photos' links...[quote]get=content_1;
p1="<img src='[color=orange]URL OF 1ST IMAGE[/color]' border='0'>"
p2="<img src='[color=orange]URL OF 2ND IMAGE[/color]' border='0'>"
p3="<img src='[color=orange]URL OF 3RD IMAGE[/color]' border='0'>"
p4="<img src='[color=orange]URL OF 4TH IMAGE[/color]' border='0'>"
get.getElementsByTagName("a")[0].innerHTML=p1;
get.getElementsByTagName("a")[1].innerHTML=p2;
get.getElementsByTagName("a")[2].innerHTML=p3;
get.getElementsByTagName("a")[3].innerHTML=p4;[/quote]
u can also try the code below...[quote]function animateGal(){
get=content_1;
p1="<img src='[color=orange]URL OF 1ST IMAGE[/color]' border='0'>"
p2="<img src='[color=orange]URL OF 2ND IMAGE[/color]' border='0'>"
p3="<img src='[color=orange]URL OF 3RD IMAGE[/color]' border='0'>"
p4="<img src='[color=orange]URL OF 4TH IMAGE[/color]' border='0'>"
get.getElementsByTagName("a")[0].innerHTML=p1;
get.getElementsByTagName("a")[1].innerHTML=p2;
get.getElementsByTagName("a")[2].innerHTML=p3;
get.getElementsByTagName("a")[3].innerHTML=p4}
setTimeout("animateGal()"500);[/quote]