jQuery.noConflict();
jQuery(document).ready(function(){
	jQuery("#email").click(function(event){
   	jQuery("#kontakt").fadeIn("slow");
		jQuery("#kontaktB").fadeIn("slow");
    	event.preventDefault();
  	});
	jQuery("#kontaktB").click(function(event){
    	jQuery("#kontakt").fadeOut("slow");
		jQuery("#kontaktB").fadeOut("slow");
		jQuery("#stav2").fadeOut("slow");
    	event.preventDefault();
  	});
	jQuery("#closecontact").click(function(event){
    	jQuery("#kontakt").fadeOut("slow");
		jQuery("#kontaktB").fadeOut("slow");
		jQuery("#stav2").fadeOut("slow");
    	event.preventDefault();
  	});
	jQuery("#form3").click(function() {  
		var email = jQuery("#form1").val();  
		var odkaz = jQuery("#form2").val();
	      jQuery.ajax({  
	         type: 'POST',  
	         url: 'kontakt.php',  
	         data: ({email : email, odkaz : odkaz}),  
	         beforeSend: function(){  
					jQuery('#stav2').fadeIn("slow");
	            jQuery('#stav').html('Odosiela...');  
	         },  
	         success: function(){  
	            jQuery('#stav').html('Správa bola úspešne odoslaná. Budeme vás kontaktovať e-mailom alebo telefonicky.');
	         }  
	      });  

	      return false;  
	   });
});
