/**
 * @author syn
 * Gamona Newsfeed-list effects powered by Mootools Framework
 * www.startrek-online.info
 */

//<![CDATA[
window.addEvent('domready', function(){


    var list = $$('.gamonanews');
    list.each(function(element){
    
        var fx = new Fx.Styles(element, {
            duration: 300,
            wait: false,
			transition: Fx.Transitions.Sine.easeInOut
        });
        
        element.addEvent('mouseenter', function(){
            fx.start({
                'height': '120px',
				'background-color' : '#28486a'
            });
        });
        
        element.addEvent('mouseleave', function(){
            fx.start({
                'height': 17,
				'background-color' : '#517295'
            });
        });
    });
});
//]]> 