function prListHover(id,type,element,self) {
  var what0 = element == 'div' ? document.getElementById(id) : self;
  var what1 = element == 'div' ? self : document.getElementById(id);
  if (type == 'over') {
    what0.style.backgroundImage = 'url("../images/design/pr-list-h2-back-hover.gif")';
    what0.style.color = '#000';
    what1.style.backgroundImage = 'url("../images/design/pr-list-img-back-hover.gif")';
  } 
  if (type == 'out') {
    what0.style.backgroundImage = 'url("../images/design/pr-list-h2-back.gif")';
    what0.style.color = '#fff';
    what1.style.backgroundImage = 'url("../images/design/pr-list-img-back.gif")';
  } 
}