$(function(){
	$("#fle_loading").hide();
	$('#download_menu > li').click(function(){
		var already_showed = $('#fle_loading:visible').length;
		var already_animated = $('#fle_loading').is(':animated');
		var already_animated_file = $('#fle_response').is(':animated');
		var already_selected = $(this).hasClass('tab_curent');
		if(already_selected == false && already_animated == false && already_animated_file == false && already_showed == 0 ){
			$('#download_menu > li').removeClass();
			$(this).addClass('tab_curent');
			$('#fle_response').hide();
			$("#fle_loading").html('<img src="img/loading_big.gif">').fadeIn("slow");
			var inner_text = $(this).text();
			var fvle_id = $('#fle_id').val();
			$.post('inc/file_info.php',{inner_text:inner_text,fvle_id:fvle_id},
				function (data){
					$("#fle_loading").html('<img src="img/loading_big.gif">').fadeOut(600);
					setTimeout(function(){$("#fle_response").slideDown('slow').html(data)},1150);
				}
			);
		}
	});	
});