/* Style Switcher ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
	David Collins, 22 August 2006, London Brough of Newham
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* Cookie Code ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
function LBNStyleSwitcher_CreateCookie(name,value,days) 
{
	if (days) 
	{
		var date = new Date();
		date.setTime(date.getTime()+(days*24*60*60*1000));
		var expires = "; expires="+date.toGMTString();
	}
	else expires = "";
	document.cookie = name+"="+value+expires+"; path=/";
}

function LBNStyleSwitcher_ReadCookie(name) 
{
	var nameEQ = name + "=";
	var ca = document.cookie.split(';');
	for(var i=0;i < ca.length;i++) 
	{
		var c = ca[i];
		while (c.charAt(0)==' ') c = c.substring(1,c.length);
		if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
	}
	return null;
}


/* Style Switcher Code ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
function LBNStyleSwitcher_SetActiveStyleSheet(title) 
{
	var i, a, main;
	for(i=0; (a = document.getElementsByTagName("link")[i]); i++) 
	{
		if(a.getAttribute("rel").indexOf("style") != -1 && a.getAttribute("title")) 
		{
			a.disabled = true;
			if(a.getAttribute("title") == title) a.disabled = false;
		}
	}
}

function LBNStyleSwitcher_GetActiveStyleSheet() 
{
	var i, a;
	for(i=0; (a = document.getElementsByTagName("link")[i]); i++) 
	{
		if(a.getAttribute("rel").indexOf("style") != -1 && a.getAttribute("title") && !a.disabled) return a.getAttribute("title");
	}
	return null;
}

function LBNStyleSwitcher_GetPreferredStyleSheet() 
{
	var i, a;
	for(i=0; (a = document.getElementsByTagName("link")[i]); i++) 
	{
		if(a.getAttribute("rel").indexOf("style") != -1
			&& a.getAttribute("rel").indexOf("alt") == -1
			&& a.getAttribute("title")
			) return a.getAttribute("title");
	}
	return null;
}


/* Font Size Switcher ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
function LBNStyleSwitcher_ChangeTextSize(sizeInPercentage) 
{
	document.body.style.fontSize=sizeInPercentage;
	LBNStyleSwitcher_CreateCookie("LBNStyleSwitcher_FontSize", sizeInPercentage, 365);
}


/* Page Events ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
window.onload = function(e) 
{
	var styleCookie = LBNStyleSwitcher_ReadCookie("LBNStyleSwitcher_Style");
	var styleToLoad = ""
	if (styleCookie == null)
		{
		styleToLoad = LBNStyleSwitcher_GetPreferredStyleSheet();
		}
	else
		{
		styleToLoad = styleCookie
		}
	
	LBNStyleSwitcher_SetActiveStyleSheet(styleToLoad);
	
	var sizeCookie = LBNStyleSwitcher_ReadCookie("LBNStyleSwitcher_FontSize");
	var sizeToLoad = ""
	if (sizeCookie == null)
		{
		sizeToLoad = "100%";
		}
	else
		{
		sizeToLoad = sizeCookie
		}
	LBNStyleSwitcher_ChangeTextSize(sizeToLoad);	
}

window.onunload = function(e) 
{
	var title = LBNStyleSwitcher_GetActiveStyleSheet();
	LBNStyleSwitcher_CreateCookie("LBNStyleSwitcher_Style", title, 365);
}



