// remap jQuery to $
(function($){

 	
	var _ = {};
	
	// FIX NAVIGATION
	_.navigation = $('#header .navigation');
	if($('.left-posts', _.navigation).text() === '' && $('.selected-post', _.navigation).text() !== 'Stuart Elmore is digitalgravy'){
		$('.left-posts', _.navigation).html('<p><a href="/stuart-elmore-is-digitalgravy/" title="Click to read Stuart Elmore is digitalgravy">Stuart Elmore is digitalgravy</a></p>');
	}

	_.shuffleLayout = function(){
		_.windowSpace = $(window).width() - $('.selected-post', _.navigation).outerWidth(true);
		$('.left-posts', _.navigation).width(parseInt(_.windowSpace / 2 - 12));
	};
	
	_.shuffleLayout();
	$(window).resize(function(){
		_.shuffleLayout();
	});

 



})(window.jQuery);
