// ==UserScript==
// @name Don't hope for too much
// @version 0.1
// @description This just adds some text under the Amazon mechanical turk logo.
// @match https://www.mturk.com/mturk/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js
// ==/UserScript==
$(document).ready(function() {
$(".logo").parent().append("<div id='custom-slogan'>Remember, you're stuck here forever.</div>");
$(".logo").parent().css('position','relative');
$("#custom-slogan").css('position','absolute');
$("#custom-slogan").css('left','65px');
$("#custom-slogan").css('top','-7px');
$("#custom-slogan").css('font-size','14px');
$("#custom-slogan").css('background-color','white');
$("#custom-slogan").css('width','188px');
$("#custom-slogan").css('color','#81b0cf');
$("#custom-slogan").css('text-align','right');
});