$(document).ready(function() {
	
	//To show the videos in main_video div
	$('.show_video').click(function() {
		
		var url = $(this).attr('href');
		
		$("#main_video").html(txt_loading);		
		//TODO: Add a style for Loading (Remmember to remove after request complete)
		//$("").addclass();
		
		$.post(url, {}, function(retorno) {
			$("#main_video").html(retorno);
		});
		
		//Prevent the a href;
		return false;
	});
	
	//Show the comments about the video
	$('.show_comments')
		.livequery('click', function () {
			//Not using id
			//video_id = $(this).attr('id');
			
			url = $(this).attr('href');
						
			$("#comments").toggleClass('show_comments_on');
			if ($("#video_comments").css('display') == 'block')
				$("#video_comments").css('display', 'none');
			else
			{
				$.post(url, {}, function(retorno) {
					$("#video_comments").css('display', 'block');
					$("#video_comments").html(retorno);
				});
			}
		
			return false;
	});	
	
});