$(document).ready(function(){


$("a.upload_file_clickthru").click(function(ev){
	ev.preventDefault();
	if ( $('div.uploaddiv').is(':hidden')==true ) {
		$('div.uploaddiv').show("fast");
	}else {
		$('div.uploaddiv').hide("fast");
	}
});

$("#addakce").submit(function() {
	$('div.preloader:hidden').show();
    });

if (alert_text!=''){
alert(alert_text);
}
	
});
