$(document).ready(function() {
	$('.alignnone').after('<div class="if"></div>');

	// Setup thumbnail actions
		$('.thumb').fadeTo(0, 0.7);
		$('a.footer-sharebutton').fadeTo(0, 0.7);

		$('a.recent-post').hover(function() {
				$('.'+$(this).attr('id')).fadeTo('fast', 1)
			}, function() {
				$('.'+$(this).attr('id')).fadeTo('fast', 0.7)
		});

		$('a.related-post').hover(function() {
				$('.'+$(this).attr('id')).fadeTo('fast', 1)
			}, function() {
				$('.'+$(this).attr('id')).fadeTo('fast', 0.7)
		});
		
		$('a.footer-sharebutton').hover(function() {
				$(this).fadeTo(0, 1)
			}, function() {
				$(this).fadeTo(0, 0.7)
		});
		
		
});
