// ==UserScript==
// @name			SpiralFrog_AutoDownload
// @namespace		http://www.stchur.com/greasemonkey/
// @description		Auto downloads the next queue'd song in your SpiralFrog Queue
// @include		http://www.spiralfrog.com/*
// @include		http://spiralfrog.com/*
// ==/UserScript==


unsafeWindow.addEventListener('load', pollNext, false);

function pollNext()
{
	var nextButton = document.getElementById('ctl00_ContentPlaceHolder2_DlManager1_uiBtnNext');
	if (nextButton)
	{
		nextButton.click();
	}
	else
	{
		setTimeout(pollNext, 1000);
	}
}

