$(function() {
	var zoomFunc = function(dimension) {
	return dimension * 1.5;
}
	var shrinkFunc = function(dimension) {
	return dimension * 0.5;
}
	$('div.gallery img').slidingGallery({
	'slideSpeed':'slow',
	'Lzoom':zoomFunc,
	'Pzoom':zoomFunc,
	'Lshrink':shrinkFunc,
	'Pshrink':shrinkFunc,
	'defaultLayout':'landscape'
	});
});

$(document).ready(function(){
  $(".tweet").tweet({
      username: "umsuk",
      join_text: "auto",
      avatar_size: 32,
      count: 6,
      auto_join_text_default: "we said,",
      auto_join_text_ed: "we",
      auto_join_text_ing: "we were",
      auto_join_text_reply: "we replied to",
      auto_join_text_url: "we were checking out",
      loading_text: "loading tweets..."
  });
});
$(document).ready(function(){
  $('li').livequery(function(){
  $('.tweet_list').innerfade({ 
    animationtype: 'fade', 
    speed: 750, 
    timeout: 8000, 
    type: 'sequence', 
    containerheight: '1em'
  }); 
  }); 
});
