function setTheme() {
	$('div#themes a').each(function(){
		if($(this).attr('id') == $('body').attr('class'))
		{
			$(this).addClass('thisTheme');
		}
		else
		{
			$(this).removeClass('thisTheme');
		}
	});
}

function setPage() {
	var getID  = $('body').attr('id').split('_');
	var bodyID = getID[1];
	$('nav a').each(function(){
		if($(this).attr('id') == bodyID)
		{
			$(this).addClass('thisPage');
		}
		else
		{
			$(this).removeClass('thisPage');
		}
	});
}

var structureLink = {
	 "rel"   : "stylesheet",
	 "type"  : "text/css",
	 "media" : "screen",
	 "id"    : "structure",
	 "href"  : "http://static.visualsymphony.net/styles/themes/structure.css"
}
