//This library is used to redirect to www.mzinga.com from other foreign sites
//that are CNamed to our websever

// Sites to Compare
var siteSharedInsight = "sharedinsights.com";
var siteKnowledgePlanet = "knowledgeplanet.com";

//Get Current Page
var hrefString = document.location.href ? document.location.href : document.location;

//Check SharesInsights.com or Knowledgeplanet.com
if(hrefString.toLowerCase().indexOf(siteSharedInsight) != -1 || hrefString.toLowerCase().indexOf(siteKnowledgePlanet) != -1)
{
	if(document.location.href)
	{
		document.location.href = "http://www.mzinga.com";
	}
	else
	{
		document.location = "http://www.mzinga.com";
	}
}
