$(document).ready(function(){
	
	$(".video_item").click(
		function(){   
			/*$(".video_item").removeClass("on");
			$(this).addClass("on");
			
			$.post("video_files/ajax/get_video.php", { path: $(this).attr("id") },
			  function(data){
				 $("#current_video").html(data);
			  });
			 $("#current_title").html($(this).children(".video_text").children().html());
			*/
			window.location="?video="+$(this).attr("id");
		}
	);

});