		var slider2 = [' 1 ', ' 2 ', '3', '4', '5'];
		function formatText(index, panel) {
			return slider2[index - 1];
		}

		$(function () {


			$('#slider2').anythingSlider({
				//width               : 600,
				height              : 317, 
				resizeContents      : true,
				autoPlay            : true,
				buildArrows         : false,
				pauseOnHover        : true, 
				navigationFormatter : formatText 
			})

			$("#slide-jump").click(function(){
				$('#slider2').anythingSlider(4);
				return false;
			});

		});




$(document).ready(function(){
	$('a.lightboxx').lightBox();
	$('#calBack').bounceBoxxx();
	$('a.buttonCall').click(function(e){
		$('#calBack').bounceBoxxxToggle();
		e.preventDefault();
	});
	
	jQuery(function($){
    	$("#phone").mask("+380(99) 999-99-99");
    	$("#phone2").mask("+380(99) 999-99-99");
    	$("#phone3").mask("+380(99) 999-99-99");
	});
	
	$('#calBackClose').click(function(){
		$('#calBack').bounceBoxxxHide();
	});
});





