// note: be sure to check any string in this doc for single or double quotes
// if the string is wrapped in single quotes then you'll need to escape any
// single quotes within that string with a backslash \ (like wise for double quotes)
// EX: 'It's not working' should look like 'It\'s not working'
// and "The "brown" dog" should look like "The \"brown\" dog"

// Put the webserver path here
var webserverPath = "http://images.gactv.com/games/trivia/07/joenichols/";

// IGNORE THIS FOR NOW //
//var mAdsRemotePath = "http://adsremote.scripps.com/js.ng/site=FINE&topic=FINEIQ&adtype=UNSIZED_AD&PagePos=5";
//setAdsRemote("http://adsremote.scripps.com/js.ng/site=FINE&topic=FINEIQ&adtype=UNSIZED_AD&PagePos=5");
// END IGNORE //

// Show hints?
var showHintsPerPage = true;

// Determine if we want to use a minimum height for either of the folling pages.
var usingLandingPageMinHeight = true;
var usingQuestionPageMinHeight = true;
var usingFinishPageMinHeight = false;

// Minimum page height in pixels
// pages will get set to this if either of the following::
// usingLandingPageMinHeight
// usingQuestionPageMinHeight
// usingFinishPageMinHeight
// are set to TRUE
var minPageContentHeight = 336;

// This is width for the center content of each page
// default is 350 for use with pictures on the right side
var divCenterContentTextContainerWidth = 330;

// WIDTH & HEIGHT FOR BUTTONS ON FINISH AND RESULTS PAGE
// landing page button
var btnStartWidth = 154;
var btnStartHeight = 41;
// finsh page button
var btnSeeAnswersWidth = 140;
var btnSeeAnswersHeight = 41;
// see answers page button
var btnShowScoreWidth = 140;
var btnShowScoreHeight = 41;
// see answers & finish page buttons
var btnNotifyMeWidth = 200;
var btnNotifyMeHeight = 41;
var btnSendToFriendWidth = 139;
var btnSendToFriendHeight = 41;
var btnLandingLinkWidth = 108;
var btnLandingLinkHeight = 41;

// paths for URLs will need to be absolute
insertData({
	"data":{
		"url":{
			// note:: there should be a coma after each string EXCEPT the last inside each {} bracket
			"landing":"http://www.gactv.com/gac/pac_ctnt/text/0,,GAC_26058_63986,00.html",
			"q1":"http://www.gactv.com/gac/pac_ctnt/text/0,,GAC_26058_63987,00.html",
			"q2":"http://www.gactv.com/gac/pac_ctnt/text/0,,GAC_26058_63988,00.html",
			"q3":"http://www.gactv.com/gac/pac_ctnt/text/0,,GAC_26058_63989,00.html",
			"q4":"http://www.gactv.com/gac/pac_ctnt/text/0,,GAC_26058_63990,00.html",
			"q5":"http://www.gactv.com/gac/pac_ctnt/text/0,,GAC_26058_63991,00.html",
			"q6":"http://www.gactv.com/gac/pac_ctnt/text/0,,GAC_26058_63992,00.html",
			"q7":"http://www.gactv.com/gac/pac_ctnt/text/0,,GAC_26058_63993,00.html",
			"q8":"http://www.gactv.com/gac/pac_ctnt/text/0,,GAC_26058_63994,00.html",
			"q9":"http://www.gactv.com/gac/pac_ctnt/text/0,,GAC_26058_63995,00.html",
			"q10":"http://www.gactv.com/gac/pac_ctnt/text/0,,GAC_26058_63996,00.html",
			"finish":"http://www.gactv.com/gac/pac_ctnt/text/0,,GAC_26058_63997,00.html",
			"seeAnswers":"http://www.gactv.com/gac/pac_ctnt/text/0,,GAC_26058_63998,00.html",
			// send to friend email link
			"sendToFriend":"mailto:?subject=GAC Trivia:Joe Nichols Test&body=I thought you might like to take the GAC Joe Nichols Trivia Challenge! http://www.gactv.com/gac/pac_ctnt/text/0,,GAC_26058_63986,00.html",
			// newsletter link goes inside the quotes in hintwindow('')
			"newsLetter":"hintwindow('http://www.gactv.com/gac/ab_newsletter/')"
		},
		"jpgs":{
			// These 4 lines should stay the same asuming that
			// the images have been placed on the webserver to
			// match this location
			// EX: http://images.gactv.com/games/trivia/07/keithurban/ is the webserver path
			// and the images live at http://images.gactv.com/games/trivia/07/keithurban/images
			"nextQuestion": webserverPath + "images/nextQuestion.jpg",
			"nextQuestionOver": webserverPath + "images/nextQuestion_over.jpg",
			"lastQuestion": webserverPath + "images/showScore.jpg",
			"lastQuestionOver": webserverPath + "images/showScore_over.jpg",
			"imgNeedHint": webserverPath + "images/needHint.jpg"
		},
		"includes":{
			// These 2 lines should stay the same asuming that
			// the js have been placed on the webserver to
			// match this location
			// EX: http://images.gactv.com/games/trivia/07/keithurban/ is the webserver path
			// and the images live at http://images.gactv.com/games/trivia/07/keithurban/js
			"funcs": webserverPath + "js/funcs.js",
			"css": webserverPath + 'iq.css'
		},
		"strings":{
			// Strings for the landing page Title, Header & Text
			// Title should be hidden
			"landingTitle": 'GAC&rsquo;s Trivia Challenge: Joe Nichols',
			"landingHeader": 'How well do you know Joe Nichols?',
			"landingText": 'So you call yourself a Joe Nichols fan do ya?  Do you know all the words to "Tequila Makes Her Clothes Fall Off"? Test your Joe Nichols knowledge and see whether you&rsquo;re too "Cool To Be A Fool" or just up against "The Impossible."'
		},
		"links":{
			// landing page misc footer text
			"noTimeForQuizHREF": 'http://www.gactv.com/gac/ar_az_joe_nichols',
			"noTimeForQuizText": 'No time for a quiz but want to learn more about Joe Nichols?',
			"landingFooterLink2HREF": 'http://www.gactv.com/gac/ar_artists_a-z/article/0,,GAC_26071_5654394,00.html',
			"landingFooterLink2Text": 'Check out more GAC Trivia Challenge games!'
		},
		"moreLinks":{
			// make sure numMoreLinks matches actual amount of links
			// default is 5, you can add or subtract moreLinksTitle# & moreLinksHREF#
			// but you'll need to match numMoreLinks to accomodate
			"numMoreLinks": "9",
			// This is the more links phrase: EX: More Links!
			"moreLinksPhrase": 'Explore More Joe Nichols at GACTV.com',
			"moreLinksTitle1": 'Joe Nichols - Fan Focus',
			"moreLinksTitle2": 'Joe Nichols Artist Section',
			"moreLinksTitle3": 'Joe Nichols Photo Gallery',
			"moreLinksTitle4": 'Joe Nichols Biography',
			"moreLinksTitle5": 'Joe Nichols Video Airtimes',
			"moreLinksTitle6": 'Vote for Joe Nichols on GAC&rsquo;s Top 20 Country Countdown',
			"moreLinksTitle7": 'Submit Your Joe Nichols Video Requests to GAC',
			"moreLinksTitle8": 'Pick Up Some Joe Nichols Wallpapers and Buddy Icons',
			"moreLinksTitle9": 'Play Joe Nichols&rsquo; Celebrity Scramble Game',
			"moreLinksHREF1": 'http://www.gactv.com/gac/pac_ctnt/text/0,,GAC_26058_63902,0.html',
			"moreLinksHREF2": 'http://www.gactv.com/gac/ar_az_joe_nichols',
			"moreLinksHREF3": 'http://www.gactv.com/gac/ar_az_joe_nichols/article/0,,GAC_26126_4708536,00.html',
			"moreLinksHREF4": 'http://www.gactv.com/gac/ar_az_joe_nichols/article/0,,GAC_26126_4706141,00.html',
			"moreLinksHREF5": 'http://search.gactv.com/gac/search/videoSearch.do?search_type=GAC%20Video%20Airtimes%20Search%20Type&query=joe%20nichols&start=1&end=22 ',
			"moreLinksHREF6": 'http://www.gactv.com/gac/pac_ctnt/text/0,,GAC_26058_47219,0.html',
			"moreLinksHREF7": 'http://online.scrippsnetworks.com/gac/gac_video/request.asp',
			"moreLinksHREF8": 'http://www.gactv.com/gac/ar_az_joe_nichols ',
			"moreLinksHREF9": 'http://www.gactv.com/gac/pac_ctnt/text/0,,GAC_26058_59233,0.html'
		},
		// progressbar with & height
		"progressbar":{
			"width":"360",
			"height":"18"
		}
	}
});

// Hints 1-10 go here
var aryHintURL = new Array(
	"http://www.gactv.com/gac/ar_az_joe_nichols/article/0,,GAC_26126_4706141,00.html",
	"http://www.gactv.com/gac/nw_headlines/article/0,,GAC_26063_5370439,00.html",
	"http://www.gactv.com/gac/nw_headlines/article/0,,GAC_26063_5229310,00.html",
	"http://www.gactv.com/gac/nw_headlines/article/0,,GAC_26063_4860970,00.html",
	"http://www.gactv.com/gac/nw_headlines/article/0,,GAC_26063_4726480,00.html",
	"http://www.gactv.com/gac/video/?c=281&videoid=65723",
	"http://www.gactv.com/gac/nw_headlines/article/0,,GAC_26063_5616002,00.html",
	"http://www.gactv.com/gac/nw_headlines/article/0,,GAC_26063_5580130,00.html",
	"http://www.gactv.com/gac/nw_headlines/article/0,,GAC_26063_4938306,00.html",
	"http://www.gactv.com/gac/nw_cma_close_up/article/0,,GAC_26068_4726973,00.html"
);

// Beratments in pairs
// Label:
// Tag:
// for A, B & C
var strIQLabelA = "We dedicate the song &ldquo;The Impossible&rdquo; to you!";
var strIQLabelATag = "You&rsquo;ve got a long way to go before you can proudly say you are a true Joe Nichols super fan. Don&rsquo;t distress: Check out some of the links below and get up to speed with all things Joe!";
var strIQLabelB = "Not bad&hellip; You&rsquo;re a Joe Nichols fan for sure.";
var strIQLabelBTag = "You may not be belting out all the words to every Joe Nichols song you hear, but you&rsquo;re definitely on your way. Don&rsquo;t start dancin&rsquo; just yet&hellip;you might want to take some time and check out the links below to gain some more Nichols knowledge!";
var strIQLabelC = "Way to go! You&rsquo;re definitely a Joe Nichols expert.";
var strIQLabelCTag = "Joe would be proud! Feel free to stand up and sing &ldquo;As Country As She Gets&rdquo; out loud.  You have what it takes to claim your spot in the front row of Joe Nichols&rsquo; fan club! Quench your thirst for all things Joe Nichols and check out the links below for more about Joe at GACTV.com.";

// Questions 1-10
var aryQuestions = new Array(
	"What state is Joe from?",
	"Which of these hit songs has 2 videos?",
	"What is Joe&rsquo;s daughter&rsquo;s name?",
	"Which legendary performer did Joe pose with for <em>Maxim</em> magazine?",
	"What sport did Joe play in high school?",
	"How old was Joe when he got his record deal?",
	"Where was Joe recently spotted?",
	"Which charity did Joe&rsquo;s fan club assist in forming?",
	"Which comic strip character has promoted Joe by wearing his name on her t-shirt?",
	"What was Joe once afraid of?"
);

// Question 1 Answers
var aryQ0Answers = new Array(
	"Texas",
	"Arkansas",
	"Kentucky",
	"Missouri"
);

// Question 2 Answers
var aryQ1Answers = new Array(
	"&ldquo;Tequila Makes Her Clothes Fall Off&rdquo;",
	"&ldquo;I&rsquo;ll Wait for You&rdquo;",
	"&ldquo;The Impossible&rdquo;",
	"&ldquo;If Nobody Believed in You&rdquo;"
);

// Question 3 Answers
var aryQ2Answers = new Array(
	"Ashelyn",
	"Ashley",
	"Crystal",
	"Josie"
);

// Question 4 Answers
var aryQ3Answers = new Array(
	"Merle Hagard",
	"Sonny James",
	"Gene Watson",
	"Little Jimmy Dickens"
);

// Question 5 Answers
var aryQ4Answers = new Array(
	"Baseball",
	"Football",
	"Hockey" ,
	"Golf"
);

// Question 6 Answers
var aryQ5Answers = new Array(
	"16",
	"21" ,
	"19",
	"12"
);

// Question 7 Answers
var aryQ6Answers = new Array(
	"Cheering at a Tractor Pull",
	"Singing at a Wedding",
	"Shopping at a Bridal Store",
	"Working at Target"
);

// Question 8 Answers
var aryQ7Answers = new Array(
	"Empty Stock Fund",
	"Mike Nichols Fund of Hope",
	"Coats for the Cold",
	"Joe&rsquo;s Charity Club"
);

// Question 9 Answers
var aryQ8Answers = new Array(
	"Kathy",
	"Peppermint Patty",
	"Wonderwoman",
	"Nancy"
);

// Question 10 Answers
var aryQ9Answers = new Array(
	"Flying",
	"Spiders",
	"Birds",
	"Clowns"
);

// Correct Answers 1-10
// note: should be all in caps A, B, C or D
var aryCorrectAnswers = new Array(
	"B",
	"B",
	"A",
	"C",
	"A",
	"C",
	"C",
	"B",
	"D",
	"A"
);

