





	
	











if (typeof Jiglu == "undefined")
{
	Jiglu = new Object();
}

if (typeof Jiglu.overlayOpen != "function")
{
	Jiglu.overlayClose = function()
	{
		var overlay = document.getElementById("jigluOverlay");
		overlay.parentNode.removeChild(overlay);
		var titleBar = document.getElementById("jigluTitleBar");
		titleBar.parentNode.removeChild(titleBar);
		var mask = document.getElementById("jigluMask");
		mask.parentNode.removeChild(mask);
	};

	Jiglu.overlayOpen = function(tag)
	{
		var mask = document.createElement("div");
		mask.id = "jigluMask";
		mask.onclick = Jiglu.overlayClose;

		var titleBar = document.createElement("div");
		titleBar.id = "jigluTitleBar";
		titleBar.onclick = function() { return false; };
		var titleBarClose = document.createElement("div");
		titleBarClose.id = "jigluTitleBarClose";
		titleBarClose.onclick = Jiglu.overlayClose;
		titleBar.appendChild(titleBarClose);

		var overlay = document.createElement("iframe");
		overlay.id = "jigluOverlay";
		overlay.name = "jigluOverlay";
		overlay.src = tag.href;
		overlay.setAttribute("frameBorder", 0);

		document.body.appendChild(mask);
		document.body.appendChild(titleBar);
		document.body.appendChild(overlay);

		return(false);
	};

	Jiglu.sectionExpand = function(section)
	{
		section = section.parentNode;

		while ((section.nodeType != 1) || (section.tagName.toLowerCase() != "ul"))
		{
			section = section.nextSibling;
		}

		section.style.display = "block";

		return(false);
	};
}

Jiglu.insertTagmapStyle = function()
{
	var rules = "a.jigluLink { border-bottom: 1px dotted #0000ff; text-decoration: none; }" +
"#jigluMask { background-color: black; border: none; height: 100%; left: 0; opacity: 0.2; filter: alpha(opacity=20); position: fixed; top: 0; width: 100%; z-index: 1000; }" +
"* html #jigluMask { position: absolute; height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + \"px\"); }" +
"#jigluTitleBar { background: #003366 url(\"http://www.jiglu.com:80/custom/images/overlay/titlebar.png\") no-repeat top left; height: 480px; position: fixed; left: 50%; margin: -240px 0 0 -386px; text-align: left; top: 50%; width: 772px; z-index: 1001; }" +
"* html #jigluTitleBar { position: absolute; margin-top: expression(-12 - parseInt(this.offsetHeight / 2) + (document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + \"px\"); }" +
"#jigluTitleBarClose { float: right; height: 20px; width: 20px; }" +
"#jigluOverlay { background-color: white; border: none; height: 452px; left: 50%; margin: -216px 0 0 -382px; position: fixed; top: 50%; width: 764px; z-index: 1002; }" +
"* html #jigluOverlay { position: absolute; margin-top: expression(-2 - parseInt(this.offsetHeight / 2) + (document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + \"px\"); }" +
"#jigluTagmapWidget { background-color: #ffffff; border: 1px solid #999999; overflow: hidden; width: 690px; }" +
"#jigluTagmapWidget h2, #jigluTagmapWidget h2 a, #jigluTagmapWidget img, #jigluTagmapWidget ul, #jigluTagmapWidget ul li, #jigluTagmapWidget ul li a, #jigluTagmapWidget div { background: none; border: none; float: none; font-family: \"Trebuchet MS\", Trebuchet, Helvetica, Swiss, Arial, Geneva, sans-serif; font-style: normal; font-variant: normal; letter-spacing: normal; line-height: 1.2; text-align: left; text-decoration: none; text-indent: 0; text-transform: none; vertical-align: baseline; }" +
"#jigluTagmapWidget div.action { background-color: white; border-top: 1px solid #000000; display: block; font-size: 11px; margin: 4px; padding: 4px 0; text-align: center; }" +
"#jigluTagmapWidget div.action a, #jigluTagmapWidget div.tagmap a { color: black; text-decoration: none; }" +
"#jigluTagmapWidget div.action a:hover, #jigluTagmapWidget div.tagmap a:hover { text-decoration: underline; }" +
"#jigluTagmapWidget div.logo { background-color: white; border-bottom: 1px solid #000000; float: none; margin: 4px; padding: 0; }" +
"#jigluTagmapWidget div.message { color: #000000; font-size: 12px; margin: 0 8px 8px 8px; padding: 0; }" +
"#jigluTagmapWidget div.sections { margin: 0; overflow: hidden; padding: 0; }" +
"#jigluTagmapWidget div.section { margin: 0; padding: 0; }" +
"#jigluTagmapWidget div.tagmap { border: 1px solid #000000; display: block; font-size: 12px; margin: 4px 4px 8px; padding: 2px 0; text-align: center; }" +
"#jigluTagmapWidget span.logo { cursor: hand; display: block; float: none; height: 42px; margin: 0; width: 140px; padding: 0; }" +
"#jigluTagmapWidget h2 { background-color: #ffffff; color: #003caa; font-size: 12px; font-weight: bold; margin: 0 4px 2px 4px; padding: 1px 1px 1px 2px; }" +
"#jigluTagmapWidget h2 a, #jigluTagmapWidget h2 a:link, #jigluTagmapWidget h2 a:visited { color: #003caa; display: inline; margin: 0; padding: 0; text-decoration: none; width: auto; }" +
"#jigluTagmapWidget h2 a:hover { color: #003caa; text-decoration: underline; }" +
"#jigluTagmapWidget img { border: none; display: block; height: 42px; margin: 0; padding: 0; width: 140px; }" +
"* html #jigluTagmapWidget img { display: none; }" +
"#jigluTagmapWidget ul { font-size: 12px; margin: 0 4px 12px 4px; padding: 0; }" +
"#jigluTagmapWidget ul li, #jigluTagmapWidget li { color: #00b5ff; font-size: 12px; margin: 0 0 2px 20px; padding: 0; list-style-type: disc; list-style-position: outside; }" +
"#jigluTagmapWidget ul li a, #jigluTagmapWidget ul li a:link, #jigluTagmapWidget ul li a:visited, #jigluTagmapWidget ul a, #jigluTagmapWidget ul a:link, #jigluTagmapWidget ul a:visited, #jigluTagmapWidget li a, #jigluTagmapWidget li a:link, #jigluTagmapWidget li a:visited { color: #000000; display: inline; margin: 0; padding: 0; text-decoration: none; width: auto; }" +
"#jigluTagmapWidget ul li a:hover, #jigluTagmapWidget ul a:hover, #jigluTagmapWidget li a:hover { color: #000000; text-decoration: underline; }" +
"" +
"	#jigluTagmapWidget div.tagMap { margin: 4px 4px 6px; position: relative; }" +
"	#jigluTagmapWidget div.tagMap div { border: 1px solid white; cursor: pointer; overflow: hidden; position: absolute; }" +
"	#jigluTagmapWidget div.tagMap div.node-OLDEST { background-color: #1F3766; }" +
"	#jigluTagmapWidget div.tagMap div.node-OLD { background-color: #274580; }" +
"	#jigluTagmapWidget div.tagMap div.node-AVERAGE { background-color: #3F6ECC; }" +
"	#jigluTagmapWidget div.tagMap div.node-NEW { background-color: #477CE6; }" +
"	#jigluTagmapWidget div.tagMap div.node-NEWEST { background-color: #4F89FF; }" +
"	#jigluTagmapWidget div.tagMap div:hover { background-color: #CCA03F; }" +
"	#jigluTagmapWidget div.tagMap div a { color: white; display: block; text-align: center; text-decoration: none; }" +
"	#jigluTagmapWidget div.tagMap div a:hover { text-decoration: none; }";

	var styleElement = document.createElement('style');
	styleElement.type = "text/css";
	styleElement.media = "screen";

	if (styleElement.styleSheet)
	{
		styleElement.styleSheet.cssText = rules;
	}
	else
	{
		styleElement.appendChild(document.createTextNode(rules));
	}

	document.getElementsByTagName('head')[0].appendChild(styleElement);
};

Jiglu.insertTagmapContent = function()
{
	document.getElementById("jigluTagmapWidget").innerHTML = ("<div id=\"jigluTagmapWidget\">" +
"	<div class=\"logo\"><a href=\"http://www.jiglu.com:80/\" target=\"_top\"><span class=\"logo\" style=\"filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=\'http://www.jiglu.com:80/custom/images/widget/logo.png\', sizingMethod=\'crop\');\"><img src=\"http://www.jiglu.com:80/custom/images/widget/logo.png\" alt=\"Jiglu\" / ></span></a></div>" +
"	<div class=\"tagMap\" style=\"width: 680px; height: 400px;\" >" +
"		" +
"			" +
"				<div class=\"node-AVERAGE\" title=\"geek event\" style=\"font-size: 20px; height: 104px; left: 0px; line-height: 104px; top: 296px; width: 192px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/geek-event!overlay\">geek event</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-AVERAGE\" title=\"Make Contest\" style=\"font-size: 20px; height: 78px; left: 0px; line-height: 78px; top: 218px; width: 192px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/make-contest!overlay\">Make Contest</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-OLD\" title=\"on-site geekery\" style=\"font-size: 18px; height: 78px; left: 0px; line-height: 78px; top: 140px; width: 192px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/on-site-geekery!overlay\">on-site geekery</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-AVERAGE\" title=\"Ignite Seattle\" style=\"font-size: 19px; height: 70px; left: 0px; line-height: 70px; top: 70px; width: 192px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/ignite-seattle!overlay\">Ignite Seattle</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-OLD\" title=\"previous Ignite\" style=\"font-size: 18px; height: 70px; left: 0px; line-height: 70px; top: 0px; width: 192px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/previous-ignite!overlay\">previous Ignite</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-NEWEST\" title=\"Ignite talk\" style=\"font-size: 18px; height: 85px; left: 192px; line-height: 85px; top: 315px; width: 138px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/ignite-talk!overlay\">Ignite talk</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-OLDEST\" title=\"hot glue\" style=\"font-size: 20px; height: 61px; left: 192px; line-height: 61px; top: 254px; width: 138px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/hot-glue!overlay\">hot glue</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-AVERAGE\" title=\"Small medicine\" style=\"font-size: 13px; height: 61px; left: 192px; line-height: 61px; top: 193px; width: 138px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/small-medicine!overlay\">Small medicine</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-AVERAGE\" title=\"Buster McLeod\" style=\"font-size: 15px; height: 49px; left: 192px; line-height: 49px; top: 144px; width: 138px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/buster-mcleod!overlay\">Buster McLeod</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-AVERAGE\" title=\"sponsoring Ignite\" style=\"font-size: 12px; height: 48px; left: 192px; line-height: 48px; top: 96px; width: 138px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/sponsoring-ignite!overlay\">sponsoring Ignite</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-NEW\" title=\"life hacks\" style=\"font-size: 19px; height: 48px; left: 192px; line-height: 48px; top: 48px; width: 138px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/life-hacks!overlay\">life hacks</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-NEWEST\" title=\"cell phone\" style=\"font-size: 19px; height: 48px; left: 192px; line-height: 48px; top: 0px; width: 138px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/cell-phone!overlay\">cell phone</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-OLD\" title=\"social network\" style=\"font-size: 15px; height: 48px; left: 330px; line-height: 48px; top: 352px; width: 140px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/social-network!overlay\">social network</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-AVERAGE\" title=\"new chocolates\" style=\"font-size: 10px; height: 48px; left: 470px; line-height: 48px; top: 352px; width: 105px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/new-chocolates!overlay\">new chocolates</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-AVERAGE\" title=\"Open Source Software\" style=\"font-size: 10px; height: 48px; left: 575px; line-height: 48px; top: 352px; width: 105px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/open-source-software!overlay\">Open Source Software</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-NEW\" title=\"excellent talk\" style=\"font-size: 10px; height: 57px; left: 330px; line-height: 57px; top: 295px; width: 87px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/excellent-talk!overlay\">excellent talk</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-OLD\" title=\"thank-you Lockergnome\" style=\"font-size: 10px; height: 57px; left: 417px; line-height: 57px; top: 295px; width: 87px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/thank-you-lockergnome!overlay\">thank-you Lockergnome</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-AVERAGE\" title=\"Hacking Chocolate Anybody\" style=\"font-size: 10px; height: 57px; left: 504px; line-height: 57px; top: 295px; width: 88px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/hacking-chocolate-anybody!overlay\">Hacking Chocolate Anybody</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-OLD\" title=\"Second Round\" style=\"font-size: 10px; height: 57px; left: 592px; line-height: 57px; top: 295px; width: 88px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/second-round!overlay\">Second Round</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-OLD\" title=\"social tags\" style=\"font-size: 10px; height: 43px; left: 330px; line-height: 43px; top: 252px; width: 79px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/social-tags!overlay\">social tags</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-OLD\" title=\"starting translations\" style=\"font-size: 10px; height: 42px; left: 330px; line-height: 42px; top: 210px; width: 79px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/starting-translations!overlay\">starting translations</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-OLD\" title=\"refining translations\" style=\"font-size: 10px; height: 42px; left: 330px; line-height: 42px; top: 168px; width: 79px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/refining-translations!overlay\">refining translations</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-OLDEST\" title=\"R.E.Load Makes\" style=\"font-size: 10px; height: 42px; left: 330px; line-height: 42px; top: 126px; width: 79px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/reload-makes!overlay\">R.E.Load Makes</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-OLD\" title=\"Crescent Natural Health\" style=\"font-size: 10px; height: 42px; left: 330px; line-height: 42px; top: 84px; width: 79px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/crescent-natural-health!overlay\">Crescent Natural Health</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-OLDEST\" title=\"Main event starts\" style=\"font-size: 10px; height: 42px; left: 330px; line-height: 42px; top: 42px; width: 79px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/main-event-starts!overlay\">Main event starts</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-OLD\" title=\"making Sweet Lemonade\" style=\"font-size: 10px; height: 42px; left: 330px; line-height: 42px; top: 0px; width: 79px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/making-sweet-lemonade!overlay\">making Sweet Lemonade</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-OLDEST\" title=\"Darfur Wall\" style=\"font-size: 12px; height: 37px; left: 409px; line-height: 37px; top: 258px; width: 91px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/darfur-wall!overlay\">Darfur Wall</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-NEWEST\" title=\"innovative technology\" style=\"font-size: 10px; height: 37px; left: 500px; line-height: 37px; top: 258px; width: 90px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/innovative-technology!overlay\">innovative technology</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-OLDEST\" title=\"Multimedia Travel Blogging\" style=\"font-size: 10px; height: 37px; left: 590px; line-height: 37px; top: 258px; width: 90px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/multimedia-travel-blogging!overlay\">Multimedia Travel Blogging</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-AVERAGE\" title=\"Seattle-based event\" style=\"font-size: 10px; height: 43px; left: 409px; line-height: 43px; top: 215px; width: 77px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/seattle-based-event!overlay\">Seattle-based event</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-OLDEST\" title=\"Simplified Data Processing\" style=\"font-size: 10px; height: 43px; left: 409px; line-height: 43px; top: 172px; width: 77px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/simplified-data-processing!overlay\">Simplified Data Processing</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-OLDEST\" title=\"Utilizing Web Technology\" style=\"font-size: 10px; height: 43px; left: 409px; line-height: 43px; top: 129px; width: 77px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/utilizing-web-technology!overlay\">Utilizing Web Technology</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-NEW\" title=\"awesome news story commenterA\" style=\"font-size: 10px; height: 43px; left: 409px; line-height: 43px; top: 86px; width: 77px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/awesome-news-story-commentera!overlay\">awesome news story commenterA</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-NEW\" title=\"news story comment boards\" style=\"font-size: 10px; height: 43px; left: 409px; line-height: 43px; top: 43px; width: 77px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/news-story-comment-boards!overlay\">news story comment boards</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-OLDEST\" title=\"Ignite Deux\" style=\"font-size: 10px; height: 43px; left: 409px; line-height: 43px; top: 0px; width: 77px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/ignite-deux!overlay\">Ignite Deux</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-NEW\" title=\"startup junkie\" style=\"font-size: 10px; height: 34px; left: 486px; line-height: 34px; top: 224px; width: 97px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/startup-junkie!overlay\">startup junkie</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-OLDEST\" title=\"Make event\" style=\"font-size: 13px; height: 34px; left: 583px; line-height: 34px; top: 224px; width: 97px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/make-event!overlay\">Make event</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-OLDEST\" title=\"Thank-You Ontela\" style=\"font-size: 10px; height: 34px; left: 486px; line-height: 34px; top: 190px; width: 97px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/thank-you-ontela!overlay\">Thank-You Ontela</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-OLDEST\" title=\"Transhuman technology trends\" style=\"font-size: 10px; height: 34px; left: 583px; line-height: 34px; top: 190px; width: 97px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/transhuman-technology-trends!overlay\">Transhuman technology trends</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-AVERAGE\" title=\"uncluttring Amazon Amazon\" style=\"font-size: 10px; height: 38px; left: 486px; line-height: 38px; top: 152px; width: 88px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/uncluttring-amazon-amazon!overlay\">uncluttring Amazon Amazon</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-OLDEST\" title=\"bridge light\" style=\"font-size: 10px; height: 38px; left: 486px; line-height: 38px; top: 114px; width: 88px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/bridge-light!overlay\">bridge light</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-OLD\" title=\"computer security\" style=\"font-size: 10px; height: 38px; left: 486px; line-height: 38px; top: 76px; width: 88px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/computer-security!overlay\">computer security</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-OLD\" title=\"dissect security\" style=\"font-size: 10px; height: 38px; left: 486px; line-height: 38px; top: 38px; width: 88px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/dissect-security!overlay\">dissect security</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-OLD\" title=\"human translation\" style=\"font-size: 10px; height: 38px; left: 486px; line-height: 38px; top: 0px; width: 88px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/human-translation!overlay\">human translation</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-NEW\" title=\"vj Vijai- Hacking\" style=\"font-size: 10px; height: 32px; left: 574px; line-height: 32px; top: 158px; width: 106px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/vj-vijai--hacking!overlay\">vj Vijai- Hacking</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-OLDEST\" title=\"bridge building competition\" style=\"font-size: 10px; height: 32px; left: 574px; line-height: 32px; top: 126px; width: 106px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/bridge-building-competition!overlay\">bridge building competition</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-OLD\" title=\"rough machine translation\" style=\"font-size: 10px; height: 31px; left: 574px; line-height: 31px; top: 95px; width: 106px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/rough-machine-translation!overlay\">rough machine translation</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-OLD\" title=\"social networking systems\" style=\"font-size: 10px; height: 47px; left: 574px; line-height: 47px; top: 48px; width: 71px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/social-networking-systems!overlay\">social networking systems</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-OLD\" title=\"breaking security\" style=\"font-size: 10px; height: 48px; left: 574px; line-height: 48px; top: 0px; width: 71px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/breaking-security!overlay\">breaking security</a></div>" +
"			" +
"		" +
"			" +
"				<div class=\"node-OLD\" title=\"social map\" style=\"font-size: 10px; height: 95px; left: 645px; line-height: 95px; top: 0px; width: 35px;\"><a onclick=\"return(Jiglu.overlayOpen(this))\" href=\"http://brady-tagging.jiglu.com/tags/topics/social-map!overlay\">social map</a></div>" +
"			" +
"		" +
"	</div>" +
"	<div class=\"action\">" +
"		<a href=\"http://www.jiglu.com:80/\" target=\"_top\">Get Jiglu for your site</a>" +
"	</div>" +
"</div>");
};



Jiglu.initTagmap = function()
{
	if (Jiglu._loadedTagmap)
	{
		return;
	}

	Jiglu._loadedTagmap = true;

	Jiglu.insertTagmapStyle();
	Jiglu.insertTagmapContent();

	if (Jiglu.markupTags)
	{
		Jiglu.markupTags();
	}
};

if (Jiglu._chainedTagmap)
{
	Jiglu.initTagmap();
}
else if (document.body.innerHTML)
{
	document.write("<div id=\"jigluTagmapWidget\"></div>");

	if (window.addEventListener)
	{
		window.addEventListener("DOMContentLoaded", Jiglu.initTagmap, false);
		window.addEventListener("load", Jiglu.initTagmap, false); 
	}
	else if (window.attachEvent)
	{
		window.attachEvent("onload", Jiglu.initTagmap);
	}
}

