$j(document).ready(function() {
	//if ($('#content').length > 0) vertical_center();
	if ($j('#twitter_feed').length > 0) {
		$j('#feeds').tweetable({username: 'RoosterStL', time: false, limit: 10, replies: false});
		$j('#twitter_feed').mouseenter(function() {
			$j(this).css({'cursor':'pointer'});
			$j(this).animate({'background-color':'#3D3D3D'},300);
		});
		$j('#twitter_feed').mouseleave(function() {
			$j(this).css({'cursor':'default'});
			$j(this).animate({'background-color':'#000000'},300);
		});
		$j('#twitter_feed').click(function() {
			var url = $j('#b_follow_us').attr('href');
			window.location = url;
			return false;
		});
	}
});
/*
function vertical_center() {
	var h = 480;
	
	$(window).bind('resize', function () {
		if ($(window).height() < h) {
			$('#content').attr('class','short');
		} else {
			$('#content').attr('class','tall');
		}
	});
}
*/
