// JavaScript Document for Bin v1.0
jQuery(function($){
	$(document).ready(function(){
									   
		$('#tabbed_area').tabs({ fxFade: true, fxSpeed: 'fast' });
		
		getTwitters('tweethere', {
			id: 'epalembang', 
			count: 5, 
			enableLinks: true, 
			ignoreReplies: true,
			timeout: 10,
			onTimeout: function () {
				this.innerHTML = '<div id="twStatus">Twitter sedang tidak bisa diakses saat ini, tapi Anda tetap bisa <a href="http://twitter.com/jafis">mengikuti saya</a>.</div>';
			},
			onTimeoutCancel: true, // don't allow twitter to finsih the job
			template: '<div class="sidetweet"><div class="twitterImg"><a title="Follow %user_name%" href="http://twitter.com/%user_screen_name%"><img height="40" width="40" alt="%user_screen_name%" src="%user_profile_image_url%"/></a></div><div class="tweetStatus"><a title="Follow %user_name%" href="http://twitter.com/%user_screen_name%" class="hiLink"><strong>%user_name%</strong></a> %text% <span class="tweet_date">(%time%)</span></div><div class="clear"/></div>'
		});
			
	});
});