$(function(){
	$("a").each(function(){this.onmouseup = $(this).css("outline","none")});
	var barcolors = [
		"orange",
		"magenta",
		"yellow",
		"red",
		"honeydew",
		"skyblue"
	]
	$("#linkset a").after("<span class='colored'>|</span>");
	$("#linkset span.colored").each(function(i){
		$(this).css({
			"color":barcolors[i],
			"font-weight":"bold",
			"padding":"0 6px"
		});
	});
	if ($("#home-body")){
		function plentyBlue(){
			var winH = $(window).height(),
				wrap = $("#bodywrapper");
			if( winH>wrap.height() ){ wrap.height(winH); }
		}
		plentyBlue();
		$(window).resize(function(){ plentyBlue(); });
	}
});
