$(function() {

	// search
	if ( $('#search') ) {
		$('#search #searchicon').toggle(function() {
			$('#search').animate({left: '250px'}, { queue:false, duration:1000 } )
		},
		function () {
			$('#search').animate({left: '440px'}, { queue:false, duration:1000 } )
		});
	}

	// tabs
	$('#tabs-container').tabs({ fxFade: true, fxSpeed: 'fast', fxAutoHeight: true });


	// twitternews
	if ( $('.twitternews') ) {
		$(".twitternews").tweet({
			username: "b0li",
			avatar_size: 32,
			count: 3
		});
	}

});

