function navon(onthis,topid,idnames) {
navigationContainer = document.getElementById(topid);
navBarLinkCollection = navigationContainer.getElementsByTagName('a');
for (j=0; j <= navBarLinkCollection.length-1; j++) {
if (onthis == navBarLinkCollection[j] || onthis == j) {
navBarLinkCollection[j].className='onit';
document.getElementById(idnames+(j+1)).style.display='block';
}
else {
navBarLinkCollection[j].className='';
document.getElementById(idnames+(j+1)).style.display='none';
}
}
}
function rateon(nmb) {

document.getElementById('ratehid').value=nmb;
onstar = 'star'+nmb;

thehtml = '<ul id="therater" class="rating ' + onstar + '"><li class="one"><a href="#" title="1 Star" onclick="rateon(1);return false;"></a></li><li class="two"><a href="#" title="2 Stars" onclick="rateon(2);return false;"></a></li><li class="three"><a href="#" title="3 Stars" onclick="rateon(3);return false;"></a></li><li class="four"><a href="#" title="4 Stars" onclick="rateon(4);return false;"></a></li><li class="five"><a href="#" title="5 Stars" onclick="rateon(5);return false;"></a></li></ul>';

document.getElementById('replacerate').innerHTML = thehtml;

}
