// true = include sprinks; false = do not include
var SprinksEnabled=false;

function AreSprinksEnabled() {
	if (!SprinksEnabled || gInSection==gFood || gInSection==gHome) return false;
	return true;
}

// Do not change the code below
function InsertSprinksScript() {
	// Include source JS for the Sprinks Code
	if (!SprinksEnabled) return;
	var lnk='<SCRIPT SRC="http://a1028.g.akamai.net/6/1028/968/444516c765e1c0/sprfetch.about.com/cgi/sprinks/sprinksA.js?con=PRMnymetro&' + gSprinksTag + '"></SCRIPT>';
	document.writeln(lnk);
}

function InsertSprinks() {
	if (AreSprinksEnabled()) {
		// Add a couple of lines in front of Sprinks
		document.writeln('<br><br>');
		sprinks(); // inserts the sprinks HTML
	}
}

// Try to insert script here
InsertSprinksScript();

