<script language="javascript">
//Firefox Version by Edw @ forum.scriptshelf.com
//http://forum.scriptshelf.com/viewtopic.php?t=883 (v2.1.3)
//Sets blog opacity (0-100)
opcty = 15;
//Sets rollover opacity
msvropcty = 100;
//for Firefox
mozopcty = opcty/100;
mozmsvropcty = msvropcty/100;
if (document.all){
tables = document.getElementsByTagName('table');
for(var j=0;j<tables.length;j++){
if(tables[j].className.match(/\bblogbody\b/)){
tables[j].style.filter = "alpha(opacity=" + opcty + ")";
if(msvropcty > 99){
tables[j].onmouseover = function(){this.style.filter = "none";}}
else{
tables[j].onmouseover = function(){this.style.filter = "alpha(opacity=" + msvropcty + ")";}}
tables[j].onmouseout = function(){this.style.filter = "alpha(opacity=" + opcty + ")";}
}}}else{
document.write('<style>table.blogbody{opacity: ');
document.write(mozopcty)
document.write(';}</style>');
tables = document.getElementsByTagName('table');
for(var j=0;j<tables.length;j++){
if(tables[j].className.match(/\bblogbody\b/)){
tables[j].onmouseover = function(){this.style.opacity = mozmsvropcty;}
tables[j].onmouseout = function(){this.style.opacity = mozopcty;}
}}}
//--></script>