$(document).ready(function() {	
	$("#twitter_update_list").html('<img src="images/ajax_loading.gif" style="position: relative; top: 3px;" alt="Loading..." />&nbsp;Loading twitter feed...');
	$.getScript("http://twitter.com/javascripts/blogger.js", function() {
		$.getScript("http://twitter.com/statuses/user_timeline/TweetSmartTwo.json?callback=twitterCallback2&count=1", function() {
			$("#twi_wrapper").prepend('<img src="images/ourlatesttweet_title.gif" width="142" height="11" alt="Our Latest Tweet" />');	
			$("#twi_wrapper").append('<a id="twitter_follow" href="http://twitter.com/#!/TweetSmartTwo"><span>Follow Us</span></a>');
			$("#twi_wrapper").vAlign();
			//$("#twi_wrapper noscript").remove(this);
		});
	});
	
	$("#noscript").remove();
	$('#image_holder').cycle( {fx: 'fade', pause: 0, timeout: 8500} );
	
	$.fn.vAlign = function() {
		return this.each(function(i) {
			var ah = $(this).height();
			var ph = $(this).parent().height();
			var mh = Math.ceil(((ph-ah) / 2) - 10);
			$('#twi_wrapper').css('padding-top', mh);
		})
	};
});


