$(document).ready(inicializarEventos);

function inicializarEventos(){
	$("#noticias_relacionadas li a").toggle(function(){
				var idc = $(this).parent().attr("id");									  
				$(this).parent().append('<div class="copy'+idc+'"></div></li>');
				$('.copy'+idc).css("padding","15px").css("background-color","#EEE");
				$('.copy'+idc).corner();
				$('.copy'+idc).load("copy_actividad.php?id_conferencia="+idc);
				return false;
		  },
		  function(){
				var idc = $(this).parent().attr("id");	
			    $('.copy'+idc).html("");
			  	$('.copy'+idc).hide();
		  }
)
if ($("#hay_usuario").val() > 0){
	$("#mostrar_video").show();
	$("#mostrar_mensaje").hide();	
}else{
	$("#mostrar_video").hide();
	$("#mostrar_mensaje").show();	
}
}
