/* To limit propagation player */ 
$(function(){
	$(".previewArticlesVideo").find("li[id^='playvideo']").find("a").click(function(){
		$(this).removeClass("playvideo"+this.id);			
		var link = $(this).parent().parent().parent().find("a.previewLink").attr('href');
		$(location).attr('href',link);		
		return false;
	});
});

