function vote(en, word) {
$('button1').down().disable();
$('button2').down().disable();
$('button3').down().disable();





	$('image1').show();
	$('image2').show();
	$('image3').show();

url='ajax.php?en='+en+'&word='+word;

new Ajax.Request(url, {
  method: 'get',
  onSuccess: function(transport) {
    
    
  }
});


}
