function ___pause(ms) {
	var date = new Date();
	curDate = null;
	do { var curDate = new Date(); }
	while ( curDate - date < ms);
 };
jQuery(document).ready(function() {
	$('#lightscribe').mouseup(
		function() {
			$('#calcResult').html('<img src="/images/ajax-loader-round.gif" alt="" \/>');
			var ls = ($('#lightscribe:checked').length == 0 ? 1 : 0);
			var l = $('#sliderTime').slider('values', 0);
			$.ajax({
				'type':'POST',
				'url':'/site/kosztPrzegrania',
				'cache':false,
				'data':'length='+l+'&lightscribe='+ls,
				'success':function(html){
					___pause(1000);
					$('#calcResult').html(html);
				}
			})
		}
	)
});