function jq_selectCBs( val , check){
	if(check){
		$("form#"+val+" input.downloadCB").attr('checked', true);
	}else{
		$("form#"+val+" input.downloadCB").attr('checked', false);
	}
}

$(document).ready(function(){
	$("div[@class='jsNeeded']").each(function(){
		$(this).removeClass( "jsNeeded" );
	});
	$("input[@class='video-widget-embed-code']").each(function(){
		$(this).click( function(){
			this.select();
			this.focus();
		});
	});
});