jQuery(function () {
	// Hide Flickr description boxes
	//$("div.flickr p:first-child").hide();

	// Hide "jacquilofthouse:" from tweets
	//var el = $('div.tweets');
	$('div#footer').each(function(){
		$(this).html($(this).html().replace(/jacquilofthouse:/ig, ""));
	})
	
	//Alternate tweet box colours
	//$("div.tweets:nth-child(odd)").addClass("light-brown");

	
});