$(document).ready(function() {



/* ------------------------------

	Twitter Feed 

------------------------------ */

	jQuery(function($){
		$(".tweet").tweet({
			username: "mikeprecious",
			join_text: "auto",
			avatar_size: 0,
			count: 1,
			auto_join_text_default: "",
			auto_join_text_ed: "",
			auto_join_text_ing: "",
			auto_join_text_reply: "",
			auto_join_text_url: "",
			loading_text: "loading tweets...",
			template: "<p><span class='quote'>&ldquo;</span>{text}<span class='quote'>&rdquo;</span><span id='author-time'><span id='at_sign'>@</span>{user} {time}</span></p>"
		});
	});



/* ------------------------------

	Dribbble Feed 

------------------------------ */

	$.jribbble.getShotsByPlayerId('mikeprecious', function (playerShots) {
		var html = [];
		$.each(playerShots.shots, function (i, shot) {
			html.push('<a href="' + shot.url + '"><img src="' + shot.image_url + '"alt="' + shot.title + '"></a>');
		});
		$('#shotsByPlayerId').html(html.join(''));
	},
	{page: 1, per_page: 1});

});
