$(document).ready(function(){
	$('.info').andSelf('#credit_form input').andSelf('#credit_form select').tooltip({
 		showURL: false
		
	});
	
	$('#main_deposit').change(
		function()
		{
			var wrapper = '';
			var computedVal = Math.floor($('#amount').val() / 100 * this.value)+ ' zł';
			if( 0 < $(this).next('span').length)
			{
				wrapper = $(this).next('span');
			}
			else
			{
				wrapper = $('<span class="spanLabel">');
				//wrapper.insertAfter($(this));
				$(this).after(wrapper);
			}
			wrapper.html(computedVal);
			
			
			
			return;
		}
	)
	
	$('#main_deposit').trigger("change");
	
	$('input#amount').focus(function(){
		$(this).val('');
	});
	
	if($('input#type').val() == 'dowolne_zakupy'){
		$('#submit_form').addClass('any-search');
	}
	
});
 
