var website_homepage = 'http://www.yourshack.co.uk/';
var GB_ROOT_DIR = "http://www.yourshack.co.uk/js/greybox/";
var AC_FL_RunContent = 0;

function getElementsWithRelOf(rel_starts_with)
{
	var a = document.getElementsByTagName('a');
	var res = new Array;
	var item = null;
	for(i=0; i<a.length; i++)
	{
		try
		{
			if (a[i].hasAttribute('rel') && a[i].rel.startsWith(rel_starts_with))
			{
				res.push($(a[i]));
			}
		}
		catch (err) {}
	}
	
	return res;
}

function popUpOpener(URL, width, height)
{
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=1,scrollbars=0,location=0,statusbar=0,menubar=1,resizable=1,width=" + width + ",height=" + height + "');");
	// left = " + (width/2) + ",top = " + (height/2) + "
}

function gbReturn()
{
	history.go(0);
}