/*

window.addEvent('load',function(){

   $('content').getElements('div[class=post]').addEvent('mouseover', function(){ 

      this.style.backgroundColor = '#f0f5f8'; 
      this.style.cursor = 'pointer'; 
      this.addEvent('click',function(){ window.location = $E('a', this).href; });

   });

   $('content').getElements('div[class=post]').addEvent('mouseout', function(){ this.style.backgroundColor = '#FFF'; });

});

*/