$(function () {
$('div.rating li a').click(
		function() {
			$(this).parents('ul').children('li.voted').removeClass('voted');
			$(this).parent().addClass('voted');
			return !1;
		}
	);
});
	
	
function showDiv(objectID) {
var theElementStyle = document.getElementById(objectID);

if(theElementStyle.style.display == "none")
{
theElementStyle.style.display = "block";
}
else
{
theElementStyle.style.display = "none";
}
};

