// ==UserScript==
// @name           YouTube 720p
// @namespace      http://www.toadking.com/greasemonkey#youtube720p
// @description    Stetch the YouTube player for 720p links
// @include        http://*youtube.tld/watch?*fmt=22*
// ==/UserScript==

window.addEventListener("resize", YouTube720pResize, false)
YouTube720pResize();
document.getElementById("movie_player").style.cssText = "width: 1280px !important; height: 745px !important;";
document.getElementById("watch-other-vids").style.cssText = "margin-top: 750px !important;";

function YouTube720pResize(e)
{
	if (document.body.clientWidth > 1280)
		document.getElementById("watch-player-div").style.cssText = "width: 1280px !important; height: 745px !important; position: relative !important; left: -165px !important;";
	else
		document.getElementById("watch-player-div").style.cssText = "width: 1280px !important; height: 745px !important; position: relative !important; left: -" + (document.getElementById("baseDiv").offsetLeft + 5) + "px !important;";
}
