$(document).ready(function() {

//function to bind to click on video image tout and load the cvp player in place of the carousel
$('a img.t1-video').click(function(e) {
	//vnid = $('img.t1-video').attr('class').split(' ')[1];
	$('a.t1-video').replaceWith('<div id="cvp-container-wrapper"><div id="cvp-container"></div></div>');
	$('.t1-copyrights').remove();
	videoPlayer.embed('cvp-container');
	return false;
});

})
