$(document).ready(function () {
    $("#topics li").hover(
		function () {
	        $(this).find(".thetags").fadeIn(200);
	      }, 
	      function () {
	        $(this).find(".thetags").fadeOut(200);
	      }
	   
	);
	
	$("video").each(function(index) {
	    
	    var id = $(this).attr("ref");
	    var v = this;
          v.onclick = function() {
            
            $("video").each(function(index) {
                var pid = $(this).attr("ref");
                if (pid != id){
                   
                    var vv = this;
                    vv.pause(); 
                }
                
            });
            
            if (v.paused) {
              v.play();
              
            }else{
               v.pause();
            } 
          }
    });
	    

	
});

