
window.addEvent('domready', function() {

$$('a.ppc').each(function(el){

	el.addEvent('mouseover', function() {
            window.status=this.title;
            return true;
	});
  el.addEvent('mouseout', function() {
            window.status='';
            return true;
	});
});

}); 

