$(document).ready(function(){
	$("#bartextarea").keyup( 
		function() { 
			var perex = $("#bartextarea").val();
			if(perex.length>=254) {
				$("#bartextarea").val(perex.substring(254,0));
				$("#bar").width(254);
			}
			else {
				$("#bar").width(perex.length);
			}
		}
	);
	
	$(".delete").click(function(){
		var delid = $(this).attr('delid');
		var delaction = $(this).attr('delaction');
		$("#brdr").fadeTo("fast", 0.3);
		$("#dialog").dialog(
			{ title: 'Potvrzení akce',
				modal: true,
				buttons: { 
					"ANO": function() { 
						$("#brdr").fadeTo("fast", 1.0);
						window.location.href="admin_process.php?type=" + delaction + "&delid=" + delid; 
					}, 
					"Zpět": function() { 
						$(this).dialog("destroy");
						$("#brdr").fadeTo("fast", 1.0); 
					}
				} 
			}
		);
	});

});