jQuery.noConflict();
$j = jQuery;

$j(document).ready(function(){
	$j('.tx-html5video-pi1').wrap('<div class="tx-html5video-wrapper" />')
	$j('.tx-html5video-wrapper').hide();
	/*
$j('.tx-html5video-wrapper').click(function(){
		$j('.tx-html5video-wrapper').hide();
	});
*/
	/*
$j(".video-js-box").blur(function(){
    	$j('.tx-html5video-wrapper').hide();
	});
*/
	$j(".video-js-box").click(function(e){
   		e.stopPropagation();
	});
});

function startVideo(){
	$j('.tx-html5video-wrapper').show();
}

$j(document).click(function(){
    $j('.tx-html5video-wrapper').hide();
});
