$(document).ready(function(){

	var iThemeID = 0;
	
	if (iThemeID == 1) {
		$("#dInternationalLinks").css("display", "none");
	}
	
	// showing callouts based on theme
	var calloutIDs = "";
	
	if(calloutIDs == "") {
		calloutIDs = "trCallBenefits|trCallFirstStep";	// setting the default callouts
	}
	
	// splitting up the callout ids
	var arCalloutIDs = calloutIDs.split("|");
	
	// showing only the callouts specified
	for(var i=0; i<arCalloutIDs.length; i++)
		$("tr#" + arCalloutIDs[i]).css("display", "");
		
	// redisplaying the buttons if in edit mode
	if($('span[title="ContentPiece"]').length > 0)
		SetupCMSSectionButtons();
	
});