$(document).ready(function(){      		
	//$('textarea.resizable:not(.processed)').TextAreaResizer();

	
	$(".videoblog .items div.item").click(function () {		
		var index = $(".videoblog .items").children().index(this);
		
		$(".videoblog .items div.active").toggleClass("active");
		$(this).toggleClass("active");
		
		$(".videoblog .video div:visible").hide();
		$(".videoblog .video div:eq("+index+")").show();
		
		$("#head_blog_links a:visible").hide();
		$("#head_blog_links a:eq("+index+")").show();
		
		//alert(index);
	});
	
});