$(document).ready(function() { 
  
 ajx_form('#regmail','#box2_btm', true, false);
 ajx_form('#friendmail','#box3_btm', true, false);
 ajx_cart('#cart_form','#mk');
 show_kontakt();
 $('#toplink').click(function(){
 	$.scrollTo( "#top", 600);
 });
  	 		
 function ajx_form(fname, tid, rebind, modalMsg){
 	$(fname).submit(function() { 
   		$(this).ajaxSubmit({
 		target: tid,
 		success: function(){
 			if(modalMsg){
 		    	showMsg('msg',300,90,2000);
 		    }
 		    if(rebind){
 				ajx_form(fname, tid, rebind, modalMsg);
 			}
 		}
 	});
 	return false;});
 }
 
 function ajx_cart(fname, tid){
 	$(fname).submit(function() { 
   		var rel = $(this).attr("target");
   		$(this).ajaxSubmit({
 		url: "ajx_cart.php",
 		target: tid,
 		beforeSubmit: function(){tb_remove(false)},
 		success: function(){
 			document.getElementById(rel).value='';
 			showMsg('msg',400,35,2000);
 		}
 	});
 	return false;});
 }
  
 function showMsg(div,width,height,time){
 	tb_show('', '#TB_inline?reload=false&height='+height+'&width='+width+'&inlineId='+div+'&modal=true', null, true)
	setTimeout(function(){tb_remove(false)}, time);
 }
 
 function show_kontakt(){
  	$('#show_kontakt').click(function(){
		$('#show_btn').hide();
		$("#kalk_kontakt").load("ajx_kalk_contacts.php");
		$.scrollTo( "#kalk_kontakt", 600 );
 	});
 }
   
 $('#fade').cycle(); 
 
});


function upd_kalk(){
    $('.minivypis').hide();
    $('.preload').show();
 	$('#kalk_form').ajaxSubmit({
 		url: "ajx_kalk.php",
 		target: '#kalkulator_form',
 		success: function(){
 		    $('#show_kontakt').click(function(){
			$('#show_btn').hide();
			$("#kalk_kontakt").load("ajx_kalk_contacts.php");
			$.scrollTo( "#kalk_kontakt", 600 );
 		});
 		$("#mk").load("ajx_cart.php");
 		}
 	});
}

