$(document).ready(function() {
    
    $('div.item').hover(
        function () {
            $(this).children('div.slide_up').show ();
        }, 
        function () {
            $(this).children('div.slide_up').hide ();
        }
    );
    
    
    $('#slide').cycle({
        fx:         'fade',
        timeout:    4000,
        pager:      '#slide_nav', 
        pagerEvent: 'click',
        pause:      1
    });
    
    // if theres only 1 item remove paginator
    // get the latest status update
    $.getJSON('http://twitter.com/statuses/user_timeline/RedSquare90.json?callback=?', function(data) {
        $('#last_tweet').html(data[0].text);
        $('#last_tweet').append ('&quot;');
        $('#last_tweet').prepend ('&quot;');
    });
    
    
    $('#topnav li').hover(
        function () {
            $(this).children('div').slide_up ();
            
        }, 
        function () {
            $(this).children('div').hide ();
        }
    );
        
        

        
});
