// ==UserScript==
// @name          Override fonts with Helvetica Neue
// @author        Dae
// @namespace     http://dae.cyberic.eu
// @description	  Override fonts with Helvetica Neue
// @include       http://vkontakte.ru/*
// @include       https://vkontakte.ru/*
// @include       http://*.vkontakte.ru/*
// @include       https://*.vkontakte.ru/*
// @include       http://vk.com/*
// @include       https://vk.com/*
// @include       http://*.vk.com/*
// @include       https://*.vk.com/*
// ==/UserScript==
var newCss = "body { font-family: \"Helvetica Neue\", Arial, sans-serif; }";

function addGlobalStyle(css) 
{
	var head, style;
	head = document.getElementsByTagName('head')[0];
	if (!head) { return; }
	style = document.createElement('style');
	style.type = 'text/css';
	style.innerHTML = css;
	head.appendChild(style);
}

addGlobalStyle(newCss);