// *******************************************
// Rating script source code
// Copyright 2006 WMTIPS. All Rights Reserved.
// http://www.wmtips.com
// *******************************************

var oldOnload = window.onload;

window.onload = function() 
{
 window.onload = null;
 replaceRates();
 if (typeof(oldOnload) == "function")
  oldOnload();
}

function replaceRates() 
{
 var s = document.getElementsByTagName('div');
 for (var i=0; i<s.length; i++) 
 {
 	attrs = s[i].attributes;
 	cl = attrs.getNamedItem("class");
 	if (cl != null && cl.value == "rat")
 	{
 		var r = new String(s[i].childNodes[0].nodeValue);
 		r = r.match('Rating: (.*?) stars');
 		if (r.length > 1)
 		{
 		r = r[1];
 		rw = r * 20;
 		t = '<ul class="star-rating"><li class="current-rating" style="width:'+
 		rw + 'px;" title="'+ r + ' out of 5 Stars">Rating: '+r+'</li></ul>'
 		s[i].innerHTML = t;
 		}
 	}
 }
}

