var rsslounge = {
    
    /**
     * initialize all events
     */
    init: function() {
        jQuery(document).ready(function() {
            // initialize carousel
            $("#carousel").simplecarousel({
                next: $('.next'),
                prev: $('.prev'),
                slidespeed: 700,
                auto: 5000,
                width: 480,
                height: 280
            });
            
            $('#badge').mouseenter(function() {
                $('#badgeinfo').fadeIn();
            });
            
            $('#badge').mouseleave(function() {
                $('#badgeinfo').fadeOut();
            });

            $("#contact a[rel=screenshots]").fancybox();            
        });
    }
    
}
