jQuery.noConflict();

jQuery(document).ready(function(){

    // twitter
    jQuery.jTwitter('equinautic', 10, function(data){
        jQuery('#posts').empty();
        jQuery.each(data, function(i, post){
            jQuery('#posts').append(
                '<div class="post">'
                +' <div class="txt">'
                +    post.text
                +' </div>'
                +'</div>'
            );
        });
    });
    
});
