/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
SpamChecker = function() {
	var self = this;

	self.init = function() {
		/* Skryt kontrolni policko */
		$('input[name="textova_kontrola"]').val('');
		$('input[name="textova_kontrola"]').hide();
	};

}

var spamChecker = new SpamChecker();

$(document).ready(function(){
	spamChecker.init();
});

