var isAdPlaying = false;
var q = '';		//Setup the query string variable so that we can deep link into a video

getURLVars();

//When the page is loaded, create the instance of the video player
$(document).ready(function(){
	cvp_loadVideoPlayer('Microsite', '448', '252', 'videoPlayer', true);
});

/*** CVP JS Callback Functions ***/
//video player is loaded and ready to play
function onPlayerReady() {
	//Set subsection based on site you are on
	var url = window.location.pathname;
	var splitUrl = url.split("/");
	var site = splitUrl[1].toLowerCase();
	var adSection = 'pga.com_majors_'+site;
	
	//TFH - Remove If condition once all ad sections have been set up by ads team
	if(site.indexOf('grandslam') != -1){		
		TURNERPLAYER.setAdSection(adSection);
	}
	
	if (q != '') {
		microPlay(q,{disablePreroll:true});
	} else {
		cvp_enqueueVideos2({disablePostroll:true});
	}
}

//Update the title and headline div's
function cvp_updateMetadata(vId, headlinEl, descEl) {
	var jsonText = TURNERPLAYER.getVideoEntry(vId);
	var videoObj = eval( '(' + jsonText + ')' );
	document.getElementById(headlinEl).innerHTML = videoObj.headline;
	document.getElementById(descEl).innerHTML = videoObj.description;
	/*var tDesc = videoObj.description;
	document.getElementById(descEl).innerHTML = tDesc.replace(/"/g,"&quot;");*/
}

//video has started playing
function onVideoPlayerPlay(videoId) {
	cvp_updateMetadata(videoId, 'videoHeadline', 'videoDescription');
}

//preroll has started
function onAdStarted(response)  {
    isAdPlaying = true;
	// To Enable DE sync ad system
	/*var adTag = TURNERPLAYER.getCompanionAd('sync.300x250');
	var iFrame = '<iframe id="banner_ad_iframe" width="300" height="250" src="'+adTag+'" frameborder="0" scrolling="No" border="0" marginwidth="0" marginheight="0" vspace="0" hspace="0" style="position:relative;visibility:visible;"></iframe>';
	document.getElementById(CS_CCF_7120_3160).innerHTML = iFrame;*/
	// To Enable FreeWheel sync ad system
	var syncAdSpan = '<span id="pga300x250" class="_fwph"><form id="_fw_form_pga300x250" style="display:none"><input type="hidden" name="_fw_input_pga300x250" id="_fw_input_pga300x250" value="w=300&h=250&envp=g_js&sflg=-nrpl;"></form><span id="_fw_container_pga300x250" class="_fwac"><!-- LEAVE THIS AREA EMPTY --></span></span>';
}

//preroll has ended
function onAdFinished(response) {
	isAdPlaying = false;
}