
Contact UsEast Village
212-228-2004
Chelsea
212-792-9200
Greenwich Village
646-278-6100
|
FeedbackName: Message |
jQuery(function($){
$("#ticker").tweet({
username: "artichokepizza",
page: 1,
avatar_size: 16,
count: 20,
loading_text: "loading ..."
}).bind("loaded", function() {
var ul = $(this).find(".tweet_list");
var ticker = function() {
setTimeout(function() {
ul.find('li:first').animate( {marginTop: '-4em'}, 500, function() {
$(this).detach().appendTo(ul).removeAttr('style');
});
ticker();
}, 8000);
};
ticker();
});
});