
I think this trick is easier...

[quote]function editcss(){
document.getElementById('[color=red][b]DIV_ID[/b][/color]').style.[b][color=blue]CSSPROPERTY[/color][/b]='[b][color=green]VALUE[/color][/b]';
}
setTimeout("editcss()",10000);[/quote]
Red - The Friendster Div_ID You want to edit
Blue - Type of CSS Property
Green - Values for Modifications..
[b]

Sample[/b] (Scrollable Comment Box)
[quote]function editcss(){
document.getElementById('[color=red][b]content_18[/b][/color]').style.[b][color=blue]height[/color][/b]='[b][color=green]200px[/color][/b]';
}
setTimeout("editcss()",10000);[/quote]