/* function to fix opacity problems in the home page */
window.addEvent('domready',function(){
        $$('div#campaigns ul li').extend($$('div#mainnews-img')).extend($$('div#othernews ul li')).extend($$('div#campaigns-asia ul li')).each(function(item,index){
                item.addEvent('mouseover',function(){
                        this.getElement('img').setStyle('opacity','0.9');
                });
                item.addEvent('mouseout',function(){
                        this.getElement('img').setStyle('opacity','1');
                });
        });
});

