// ==UserScript==// @name            Frenzyboard Link Obviousizer
// @version         0.9.1
// @author          Hans van de Bruggen <pintong@gmail.com>// @namespace       http://greasemonkey.hansv.com/// @description	    Unhides the current users while in clean mode.// @include         http://frenzyboard.com/*
// @include         http://*frenzyboard.com/*
//
//  New in 0.9.1:
//
//  Fixed a problem with includes.
//
//  New in 0.9:
//  This script adds a beefy underline to all links in a post, while leaving all other links 
//  on the page untouched. The links are currently only distinguished by color, which can 
//  sometimes be very similar to the text color. This script makes finding links easier.
//  //  TODO://  Make selecting a link style easier.
// 
// ==/UserScript==
function addCSSStyle(css) {
    var head, style;
    head = document.getElementsByTagName('head')[0];
    style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = css;
    head.appendChild(style);
}


// Pick a style, any style.

addCSSStyle('span a { border-bottom-style: solid !important; border-bottom-width: 2px !important;}');
// addCSSStyle('span a { font-weight: bold; text-decoration: underline;}');// addCSSStyle('span a { border-bottom-style: double !important; border-bottom-width: 3px !important;}');// addCSSStyle('span a { border-bottom-style: dotted !important; border-bottom-width: 2px !important;}');
// addCSSStyle('span a { border-bottom-style: dashed !important; border-bottom-width: 2px !important;}');


// These two are nice, but don't work with all color settings
// addCSSStyle('span a { border-bottom-style: inset !important; border-bottom-width: 3px !important;}');
// addCSSStyle('span a { border-bottom-style: outset !important; border-bottom-width: 3px !important;}');
