$(document).ready(function(){
    Shadowbox.init();
    $("#kontakt").validationEngine()

    	$('#name').focus(function(){
      		  $('#name').val('')

    	});
        $('#tel').focus(function(){
      		  $('#tel').val('')

    	});
        $('.inp_ftrs').focus(function(){
      	    $('.inp_ftrs').val('')

    	});


});

     $(function() {

   //  $.notifyBar({ html: "This is 'Notify bar'!" });

      $.notifyBar({
         // html: "Thank you, your settings were updated!",
         close: true,
         delay: 10000,
          jqObject: $("#msg")
        });
   });
