// ==UserScript==
// @name           Woot Titler
// @namespace      http://projects.neocodenetworks.org/gm/
// @description    Puts the product name in the title
// @include        http://*.woot.com/
// @include        http://*.woot.com/Default.aspx*
// ==/UserScript==

//ctl00_ContentPlaceHolder_TitleHeader
//ctl00_ContentPlaceHolder_SoldOutPanel
window.addEventListener("load", function(e) {
	product = document.getElementById("ctl00_ContentPlaceHolder_TitleHeader").innerHTML;
	price = document.getElementById("PriceSpan").innerHTML;
	var soldout = "";

	if (document.getElementById("ctl00_ContentPlaceHolder_SoldOutPanel") != null)
	{
		soldout = "[SOLD OUT] "
	}

	document.title = "Woot : " + soldout + product + " (" + price + ")";
}, false);