


$(document).ready(function(){

	$(".close > a").click(function(event) {
	
		event.preventDefault();
		$(this).parent().parent().hide('slow');

	 });
	 
	 $("#rozmer").change(function(event) {
	
		  $("#iny_rozmer").val('');

	 });
	 
	 $("#iny_rozmer").change(function(event) {
	
		  $("#rozmer").val('');

	 });
	 
	 $("form#produkt").submit(function(event) {

		event.preventDefault();
		
		var str = $("form#produkt").serialize();
		
		$("div.info").html("<img src='/img/icons/ajax-loader.gif' alt='' /> čakajte prosím...");

		$.ajax({
		  type: "POST",
		  url: "/ajax.php",
		  data: str,
		  success: function(msg){
		    //alert( "Data Saved: " + msg );
		    
		    $("div.info").html(msg);
		    
		    $(".close > a").click(function(event) {

				event.preventDefault();
				$(this).parent().parent().hide('slow');

			 });
		    
		  }
		});
		

	 });
	 
	 
	

	 

});


