$(function(){
	// Show everything
	$('html').removeClass('no-js');
	// Open all absolute links in a new window
	$('a.external').attr({target: "_blank"});
	// Remove the dumb ass Wordpress height && width
	$('#content .tile img').each(function(){
		$(this).removeAttr('width').removeAttr('height');
	});
	
	// Fancybox and that
	$(".tile a").attr('rel', 'kitsonian').fancybox();
	// How tall is the sidebar?
	function redoSidebar(){
		if( $windowHeight < $sidebarHeight ){
			$('#sidebar').css({ 'overflow-y' : 'scroll' });
		}
	}
	var $sidebarHeight = $('#sidebar').outerHeight();
	var $windowHeight = $(window).height();
	$(window).resize(function(){
		redoSidebar();
	});
	redoSidebar();
});
