$(document).ready( function() {
	window.oRotator = new Rotator({
		auto_rotate: false,
		slider_timeout: [5000, 3000, 4000, 6000, 10000, 8000],
		auto_scroll: true
	});
	
	/* == A very subtle gradient in the footer == */
	$('.footer__gradient-link').gradientText({
		colors : ['#004EA2', '#3083FF']
	});
	
	/* == Switch between forms for credit and deposit amount == */
	$('.slider-services__switcher .pseudo').click(function(){
		var fullId = $(this).attr('id'),
			switcherId = fullId.substr(9),
			pages = $(this).parent().siblings('.slider-services__page');
		
		$(this).addClass('pseudo_selected').siblings().removeClass('pseudo_selected');
		pages.hide();
		$('body').find('.slider-widget__bubble').fadeOut(100);
		
		$('.slider-services__page_' + switcherId).show();
	});
});

