var RecaptchaOptions = { theme:'white' };
$(document).ready(function() {
$('textarea.resizable:not(.processed)').TextAreaResizer();
$('ul.slave').parent().hide();
$('li.master > a').click(function() {
if ($(this).parent().next('li').is(':hidden')) {
$(this).parent().next('li').show('slow');
$(this).css({'background-image' : 'url(../images/zoznam_minus.png)'});
}
else {
$(this).parent().next('li').not('[class]').not('[id]').hide('slow');
$(this).css({'background-image' : 'url(../images/zoznam_plus.png)'});
}
});

$("#posliemail").click(function(){
	$.weeboxs.open('#boxcontent', {title:'Pošli email', width:400, height:200,cancelBtnName:'Zavři',showCancel: true,showOk: true,okBtnName: 'Pošli',
  onok:function(){
	 	$.get("../ajax.php",{mod:'email',vas_email: $("#vas_email").val(), text:$("#text").val(), rok:$("#rok").val(), id:$("#id").val()}, function(j){ 
      alert(j);
      box.close();
    });
	}
  });
});

});

