/* 	USER EXPERIENCE	Here go all the functions that handle the users general experience on the site.*/$(document).ready(function() { 	enrichLinks();});function enrichLinks(){	$("a.enrich").each(		function(i)		{			$(this).removeClass("enrich");			$(this).attr("href", "javascript: openPage('"+$(this).attr('class')+"');");			$(this).attr("class", "");			$(this).addClass("enriched");		}	);}function openPage(sectionName) {	if($("#"+sectionName+"-section").css("display") == "none")	{			//alert("#main .section[id!='"+sectionName+"-section']");			$("#main .section").each(			function(i)			{				if($(this).attr("id") != (sectionName+"-section"))				{					$(this).fadeOut(400, 						function()						{							$("#"+sectionName+"-section").fadeIn(400);						}					)				}			}		);	}}