$(document).ready(function(){
	
	$('#feature-images').cycle();
	
	var contentWrapperType = $('#content-wrapper').attr('class');
	
	if( contentWrapperType == 'transparent-sidebar'){
		$('#content').prepend('<div id="shadow-transparent"></div>');
	} else {
		$('#content').prepend('<div id="shadow-opaque"></div>');
	}
	
	$.ajax({
		type: 'GET',
		url: 'http://twitter.com/statuses/user_timeline/kylepetty.json?count=1',
		dataType: 'jsonp',
		success: function(json){
			$.each(json, function(i, item){
				$('#tweet').html(item.text);
			});
		}
	});
	
});
