// ==UserScript==
// @name RYM: Add Dropdown Menus
// @version 0.8
// @match http://rateyourmusic.com/*
// @match https://rateyourmusic.com/*
// @description adds dropdown menus
// @grant GM_addStyle
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js
// @copyright 2012+, Charlie Dingus
// @namespace https://greasyfork.org/users/2625
// @downloadURL none
// ==/UserScript==
$("#navtop").css('zIndex', 1);
var communityMenu = '
';
var chartMenu = '';
$('#navtop li:nth-child(4)').addClass('topmenu').css('height', '30px').append(chartMenu);
$('#navtop li:nth-child(5)').addClass('topmenu').css('height', '30px').append(communityMenu);
GM_addStyle('li.topmenu li.dropmenu { visibility: hidden; }');
GM_addStyle('li.dropmenu { display: none; position: absolute; z-index: 1; font-size: 0.8em!important; background: #555!important; opacity:0.9;}');
GM_addStyle('li.topmenu:hover li.dropmenu {visibility: visible;}');