$(document).ready(
	function ()
	{		
			
		// API Ref: http://api.dribbble/players/:id/shots
		$.jribbble.getShotsByPlayerId('adambutler',
			function (playerShots)
			{
				var html = [];
				$.each(playerShots.shots, function (i, shot)
				{
					html.push('<li><a href="' + shot.url + '">');
					html.push('<img src="images/leak-mask.png" style="z-index:500;">');
					html.push('<img src="' + shot.image_teaser_url + '" style="z-index:100;" ');
					html.push('alt="' + shot.title + '"></a>');
				});
				
				$('#shotsByPlayerId').html(html.join(''));
			},
			{page: 1, per_page: 3}
		);
	}
);
