/***************************************************
 ** 
 ** Handcrafted by Engaged Labs Inc, and 
 ** Mortified to perfection by Angel Ceballos for BaoHaus NYC, http://angelceballos.com/
 **
 ****************************************************/	
		
	$(document).ready(function(){
		$('div#lastfm').lastFM({
			username: 'baohausnyc', /* Last.fm User Name */
			apikey: '4f474013dbb7a2d565197001535f1449', /* Last.fm API Key*/
			number: 8, /* Number of recent to display */
			artSize: 'medium', /* Size of the album work*/
			noart: 'noartwork.gif', /* If no artwork show this */
			onComplete: function(){
				//Done
			}
		});
	});
	
	
/**
 **  Load the latest tweet
 **/		

	var twitter_username = 'BaohausNYC';	// change the twitter account
	
	$('.tweet span').tweetable({'username':twitter_username, 'callback':function(){
		$('.tweet').fadeIn('slow');
	}});

