
$(document).ready(function(){
	
	/*
	 * Последний твит
	 */
	
	$('#tweets').tweets({
	    tweets: 1,
	    username: "touchit_ru"
	});
	
	/*
	 * Активные конкурсы
	 */
	
	$(window).load(function(){
		$('#tweets').fadeIn(100, function(){
			$(this).animate({
				"top": "-100"
			}, 300).animate({
				"top": "100"
			}, 200).animate({
				"top": "70"
			}, 200).animate({
				"top": "86"
			}, 200).animate({
				"top": "82"
			}, 250);
		});
	});
	
	/*
	 * Виджет с активными конкурсами
	 */
	
	$(window).load(function(){
		animateWidget();
	});
	
});
