$(document).ready(function(){

	$("#image,#mag").toggle(
		function (){
			$("#image").css("max-width","none");
		},
		function (){
			$("#image").css("max-width",$("body").width()-4);
		}
	);

	$("td#b-upload img").click(function () {
		if ($("input:file").val()){
		$("td#b-upload").html("Įkeliama");
		document.upload.submit();
		} else alert("Nepasirinktas failas");
    });
	
	$("img#b-comment").toggle(
		function (){
			$("#comment textarea").show();
			$(this).attr("tip","nuimti komentarą");
		},
		function (){
			$("#comment textarea").hide();
			$(this).attr("tip","pridėti komentarą");
			$("#comment textarea").val("");
		}
	);

	$("*[tip]").tip();
	
	$("input[type=file]").filestyle({ image: "static/select.png", imageheight : 18, imagewidth : 80, width : 140 });
	
});

