/* hide the pm reply button by california */

var img = document.getElementsByTagName("img");
if(location.href.match(/=pmview/)){
for(i=0; i<img.length; i++){
if(img[i].alt.match(/Reply/)){
img[i].style.display = "none";
}
if(img[i].src.match(/quote\.gif/)){
img[i].src = 'http://img524.imageshack.us/img524/7533/replysummerzr8.png';
}
}
}

