$(document).ready(function(){

	//if looking at a post syndicated from culturalcarepresident.com do a redirect
	var presidentLink = $('a.link[href^="http://culturalcarepresident.com"]');
	if (location.pathname.search('/post/') >= 0 && presidentLink.length > 0) {
		window.location.replace(presidentLink.attr('href'));
	}
	else {
		//build the tag cloud
		buildCloud();
	
		//show the thank you message if subscribing to blog
		if(location.search.substring(1) == 'thanks') $("#thanks").show('medium');
	}
	
});

