/* jQuery ui modal window for video players */

/* The modal dialog takes two selectors: one for the click action, one for the modal window content */

$(function() {
	video.elementSearch();
	
	function launchVideoPopup(evt) {
		evt.preventDefault();
		$( "#video-modal" ).dialog({
			closeText: 'CLOSE   X',
			height: 500,
			width: 966,
			modal: true
		});
	}	
		
	$('.offer-group-banner-tmbfinancecalculator .learn-more').click(function(evt) { 
		hh_WT.trackEvent({'WT.ac':'RT_HPB_Learnabout_ToyotaFinance_Video'}, true);
		launchVideoPopup(evt);
	})
	
	$('.module-tfa-video .media, .module-tfa-video .more-link').click(function(evt) { 
		hh_WT.trackEvent({'WT.ac':'RT_HP_Learnabout_ToyotaFinance_Video '}, true);
		launchVideoPopup(evt);
	})
});
