/*
	TODO: Complete the text-only functions, need to add the cookie.
*/

var stylesArray = new Array();

function removeLinkTags()
{
	$('link').each(function(i)
	{
		stylesArray[i] = this;
		$(this).remove();
		
	});
}


/*
	Removes the stylesheets on the site before the DOM loads. Removes styles flicker if text-only is selected.
*/

if($.cookie('text_only') == 'true')
{
	removeLinkTags();
}

