document.getElementsByClassName = function(cl) 
{
	var retnode = [];
	var myclass = new RegExp('\\b'+cl+'\\b');
	var elem = this.getElementsByTagName('*');
	for (var i = 0; i < elem.length; i++) 
	{
		var classes = elem[i].className;
		if (myclass.test(classes)) retnode.push(elem[i]);
	}
	return retnode;
};

function insertMap()
{
	// Insert map
	if(location.search == "?sectionid=8" || location.pathname.indexOf('contact_us') > 0  )
	{
		mapContent = document.getElementsByClassName("map");

		if(typeof(mapContent) != "undefined")
		{
			mapContent[0].innerHTML = mapContent[0].innerHTML + '<iframe width="400" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="styles/default/map.htm"></iframe>';
	
		}
	}
}
