
// JavaScript Document
function init(){
	$$('.castimage a','.castlist ul li p').each(function(elem) {elem.addEvent('click',  function(){
	  var cm = elem.getProperty('id');
	  //var myXHR = new XHR({async:'false',method:'post'}).send('/votecast.php','cm='+cm);
	})});
}
window.addEvent('domready', init) ;