Note: These Filters work only works in Internet Explorer
to add this effect to one image:
<
img src="URL" style="filter:gray;" />
all images:
<style>
img {filter:gray;}
</style>
hovered images:
<style>
img {filter:none;}
a:hover img {filter:gray;}
</style>
filtered images, normal when hovered:
<style>
img {filter:gray;}
a:hover img {filter:none;}
</style>
use this to make just your top friends black and white:
<style>
.friendSpace a img {filter:gray;}
</style>
use this to make just the people who leave comments black and white:
<style>
.friendsComments a img {filter:gray;}
</style>
use this to make just your default picture black and white:
<style>
.profileInfo td.text a img {filter:gray;}
</style>
use this to make just your default picture black and white on hover:
<style>
.profileInfo td.text a:hover img {filter:gray;}
</style>