// ==UserScript==
// @name          Google Video Getter 2
// @namespace     http://www.joshkinberg.com/
// @description   Provides download links for Flash FLV files hosted by Google Video
// @include       http://video.google.*/*
// ==/UserScript==


var my_banner = document.createElement("div");

my_banner.innerHTML = '<div style="float:right; width: 130px; border: 2px solid #CCCCCC; margin-bottom: 10px; font-size: small; background-color: #0000FF; color: #FFFFFF;">' +
	'<p style="margin: 5px;text-align:center;">' +
	'<a href="#" onclick="this.href=unescape(document.getElementById(\'VideoPlayback\').src.match(/videoUrl=([^$)]*)/)[1]);this.firstChild=\'Download Flash Video\';return false;" style="color:#FFFFFF; font-weight:bold; font-size:10px;">Find Flash Video</a>' +
	'</p></div>';
document.getElementById('pvprogtitle').insertBefore(my_banner, this.firstChild);
