$(document).ready(function(){ 
  var url = "http://twitter.com/status/user_timeline/MistCreative.json?count=3&callback=?"; 
  var str = "";
  $.getJSON(url, 
    function(data){ 
      $.each(data, function(i, item) {
        str = "<div class=\"footer_ttt_post\">\n";
        str += item.text + "&nbsp;&nbsp;";
		str += "<a href=\"http://www.twitter.com/mistcreative\" class=\"ttxtlink\">" + item.created_at + "</a>\n";
        str += "</div>\n";
		$("#twitter_col").append(str);
      }); 
  }); 

  $("#SliderContent").easySlider({
      prevText: '',
      nextText: '',
	  auto: true,
      speed: 800,
      auto: false,
      pause: 10,
	  continuous: true
  });
});