/**
 * StripTweet framework
 *
 * @fileOverview	StripTweet_Galery
 * @author			Matej Keglevic, Copyright (c) 2009, ThirdFrameStudios
 */

/**
 * Loaded on all pages.
 * 
 * @name domready
 * @event
 */
window.addEvent('domready', function() {
    // new StripTweet_Rotation_Fadeing('#phone img');
    new StripTweet_Navigation_Carousel('carousel_container', 'prev', 'next');
    
    $$('a.android').addEvents({
        'click': function() {
            this.addClass('active');
        },
        'mouseout': function() {
            this.removeClass('active');
        }
    });
});