
	jQuery(document).ready(function(){
		
		// activate on click 
		jQuery('#video-others h4 a, #video-others .img-placeholder a').click(function(){
			var id = jQuery(this).attr('rel');
			
			$.ajax({
				type: "GET",
				url: "/display/article.php",
				data: "article_id="+id+"&mode=video_ajax&ajax=1",
				success: function(content){
					jQuery('#video-active').html(content);
				}
			});
			
		});
		
		
	});