var pr_locale = "en_GB";
// var pr_merchant_group_id = 10348; - test
// var pr_merchant_group_id = 10332; - live
var pr_merchant_group_id = 10332;

var pr_site_id = 1;

// array specifying the productIds to display the FAQ tab for.
// currently this is BabyDan stairgates, Nania car seats, and Quinny Buzz (not packages)
var productsToShowAnswerBox = new Array(16777,9594,16399,52895,61917,13316,9328,66902,61916,61915,62178,61905,61906,76003,61471,60469,16339,13300,60466,17003,6153,15453,7153,2637,12269,64894,2309,75946,64896,51572,6465,10849,11062,51411,51573,51416,73011,72999,73007,73009,73005,73013,73015);

function PowerReviewsVariableLocale() {
	return pr_locale;
}

function PowerReviewsVariableMerchantId() {
	return pr_merchant_group_id;
}

function PowerReviewsVariableSiteId() {
	return pr_site_id;
}

// function to show the FAQ tab and answer box depening on the productId
// to hide for all simply return false, to display for all return true
function showFAQ(productId) {
	//var showfaq = false;
	//var i = 0;
	//while (i < productsToShowAnswerBox.length && showfaq == false) {
	//	if (productId == productsToShowAnswerBox[i]) {
	//		showfaq = true;
	//	}
	//	i++;
	//}
	//return showfaq;
	return false;
}