/*globals polopoly, jq14, MSGV, swfobject */
function playVideo(releaseUrl, videoId, videoTitle, gate, divId) {
	var $ = jq14 || jQuery.noConflict(),
	playerHML = '<div class="player" id="Varsity_VideoPlayer"><p>To view this ' + 'site, you need to have Flash Player 9.0 or later installed. Click <a ' + 'href="http://www.macromedia.com/go/getflashplayer/" target="_blank">' + 'here</a> to get the latest Flash player.</p>',
	playerHMLend = '</div>';
	if (!polopoly.user.isLoggedIn() && gate === 'gated') {
		var pDiv = $('#Varsity_VideoPlayer').parent(),
		img = $('#' + divId + ' .tout_img').attr('src') || $('.' + divId + ' #gateBg img').attr('src'),
		qrHML = '' + playerHML + '<div class="quickread" id="' + divId + '"><img src="/img/msgv/ool_' + 'quickread.png" alt="" /><strong>To continue viewing this content' + ' you must be an Optimum Subscriber.</strong><br/><br/><br/><div ' + 'class="quickread-notlogin" style="display: none;">If you are alr' + 'eady an Optimum Subscriber please Log In. If you\'re not an Optim' + 'um Subscriber please go to <a href="http://www.optimum.com" targ' + 'et="_blank" style="font-weight:bold; color:#fff">www.optimum.com' + '</a> to learn more about how to get Optimum today.</div><div cla' + 'ss="quickread-notOptimum" style="display: none;">If you are alre' + 'ady an Optimum Subscriber please Log In. If you\'re not an Optimu' + 'm Subscriber please go to <a href="http://www.optimum.com" targe' + 't="_blank" style="font-weight:bold; color:#fff">www.optimum.com<' + '/a> to learn more about how to get Optimum today.</div><div clas' + 's="quickread-optimumExpired" style="display: none">Your optimum ' + 'session has expired. In order to access premium content, please ' + 'log off and log back on.</div></div>' + playerHMLend + '';
		$('#Varsity_VideoPlayer').remove();
		pDiv.append(qrHML);
		$('#Varsity_VideoPlayer').show().css({
			'background-image': 'url(' + img + ')',
			'visibility': 'visible'
		}).show();
	} else {

		MSGV.flashContentId = videoId;
		MSGV.flashContentTitle = videoTitle == null ? "" : videoTitle.substring(0,videoTitle.indexOf(":"));
		
		MSGV.flashShareUrl = getShareURL(videoId);

		var flashvars = {};

		if (document.cookie.indexOf('msgvarsity-user=') != - 1) {
			flashvars.userID = polopoly.cookie.get('userId');
		}
		flashvars.autoPlay = "true";
		flashvars.trackingServer = "msgvarsitynetwork.122.2o7.net";
		flashvars.omnitureSuiteId = "msgvarsityProd";
		flashvars.bufferTime = 3;
		flashvars.controlStripTimeout = 3000;
		flashvars.fullscreenToggle = "true";
		flashvars.volumeControl = "true";
		flashvars.timeReadout = "true";
		flashvars.sharing = "true";
		flashvars.videoID = videoId;
		flashvars.videoTitle = videoTitle;
		flashvars.baseURL = "http://" + window.location.hostname;
		flashvars.videoServiceCallURL = releaseUrl;
		var attributes = {};

		var params = {};
		params.allowFullScreen = "true";
		params.initialVolume = 0;
		params.wmode = "opaque";
		swfobject.embedSWF("/swf/msgv/Varsity_VideoPlayer.swf", "Varsity_VideoPlayer", "630", "354", "10.0.0", "expressInstall.swf", flashvars, params, attributes);

		$('#Varsity_VideoPlayer').show().css({
			'visibility': 'visible',
			'display': 'inline'
		});
	}
}


(function($) {
	$('.dl_thumbs a').click(
	function() {
		if ($('object#Varsity_VideoPlayer').length) {
			$('object#Varsity_VideoPlayer').remove();
			$('.main_panel').prepend('<div class="player" id="Varsity_VideoPlayer"><p>To view this site, you need to have Flash Player 9.0 or later installed. Click <a href="http://www.macromedia.com/go/getflashplayer/" target="_blank">here</a> to get the latest Flash player.</p></div>');
		}
	});

})(jQuery);


