//Tabs
var activeServicesTabID="tab-top1";
	
	function ActiveServicesTab(newActiveTabID)
	{
	    if(newActiveTabID!=activeServicesTabID)
		    {   
			    document.getElementById(newActiveTabID).className="on"; //active
			    //document.getElementById(newActiveTabID+"-content").style.display="block";
			    document.getElementById(activeServicesTabID).className="off"; //inactive tab-top1-inactive
			    //document.getElementById(activeServicesTabID+"-content").style.display="none";
			    activeServicesTabID=newActiveTabID;
		    }
	}
