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

	// Hide "cmc2:" from tweets
	//var el = $('div.tweets');
	$('div.tweets').each(function(){
		$(this).html($(this).html().replace(/cmc2:/ig, ""));
	})
	
	//Alternate tweet box colours
	$("div.tweets:nth-child(odd)").addClass("light-brown");
	
	//Correct positioning of enjoysthin.gs images	
	$('div.enjoys').each(function(){
		var bgimage = $(this).find("p a img").attr('src');		
		$(this).find("p a").css('background-image', "url("+bgimage+")");
		$(this).find("p a").css('background-position', 'center');
		$(this).find("p a").css('background-repeat', 'repeat');				
		$(this).find("p a").text('');
		//window.console.log(bgimage);
	})
	
});