function getAccount()
{
	var h = window.location.hostname;
	var i = h.indexOf('.');
	var c = h.substring(0,i);
	var account = "";
	switch (c)
	{
		case"products":
		case"store":
			account = "ihsrollup,ihsstore";
		break;
		default:
			account = "ihsrollupdev,ihsdev";
		break;
	}
	return account;
}

var omnitureAccount=getAccount();
/* Initialize all the variables if they have not yet been defined*/
if (typeof(searchKeyword) == 'undefined')
	var searchKeyword = "";
if (typeof(totalSearchCount) == 'undefined')
	var totalSearchCount = "";
if (typeof(pageEvents) == 'undefined')
	var pageEvents = "";
if (typeof(productsIHS) == 'undefined')
	var productsIHS = "";
if (typeof(orderState) == 'undefined')
	var orderState = "";
if (typeof(orderZip) == 'undefined')
	var orderZip = "";
if (typeof(orderPurchaseID) == 'undefined')
	var orderPurchaseID = "";
if (typeof(customerIDIHS) == 'undefined')
	var customerIDIHS = "";
if 	(typeof(pageTypeIHS) == 'undefined')
	var pageTypeIHS = "";
if 	(typeof(shippingCountry) == 'undefined')
	var shippingCountry = "";
if 	(typeof(paymentType) == 'undefined')
	var paymentType = "";
if 	(typeof(findingMethod) == 'undefined')
	var findingMethod = "";

/* Initialize and set forms list. Allow dynamic additions */
SiteDefaultList = "register,OrderDetailsJSP";

if 	(typeof(IHSFormList) == 'undefined')
	var IHSFormList = SiteDefaultList;
else
	IHSFormList = SiteDefaultList+","+IHSFormList