// ==UserScript==
// @name           vK Albums Viewer 1.0
// @namespace      grcool
// @include        http://www.vkontakte.ru/*
// @include        http://vkontakte.ru/*
// @include        http://*.vkontakte.ru/*
// @include        http://vk.com/*
// @include        http://www.vk.com/*
// ==/UserScript==



addEventListener('load', function (e)
{
  if (!document.body)
  {
    return;
  }

    var mid = document.getElementById('mid').value;
    var pTag = document.createElement("div");
    pTag.innerHTML = "<div style='position: absolute; width:50px; heigth: 30px; top: 0px; right: 0px;'><a href='/albums"+mid+"'>[Photos]</a></div>";
   
    document.getElementById('sideBar').appendChild(pTag);
    
    
}, false);
