var myrules = {
'#block_container .content_block' : function(el){
el.onmouseover = function(){
this.style.backgroundPosition='18px center';

},
el.onmouseout = function(){
this.style.backgroundPosition='0 center';

}
}
};
if($('block_container')){
Behaviour.register(myrules);
}