$(document)
	.ready(function()
	{
		/** Пашено говнецо **/
		
		/** + Продвижение **/
		$('.arrows').mouseover(function() {	
		$(this).siblings('div').fadeIn(200).css({'cursor':'default','left':'-100%','top':'-100%'});
		})
		$('.grafic_image_large').mouseout(function(){
			$(this).fadeOut(200);
		})
		$('.statistics').toggle(function(){
			/** я смакую.. правда гениально? **/
			$('.stats ul').each(function(){
				$(this).hide();
			})
			$('#regnko_ru').show();
			$('#statistic_label').text('www.regnko.ru');
		},function(){
			$('.stats ul').each(function(){
				$(this).hide();
			})
			$('#uradresa_ru').show();
			$('#statistic_label').text('www.uradresa.ru');
		},function(){
			$('.stats ul').each(function(){
				$(this).hide();
			})
			$('#reghelp').show();
			$('#statistic_label').text('www.reghelp.ru');
		})
		$('.grafics').toggle(function(){
			$('#small_grafic').attr('src','/assets/images/regnko_small.png');
			$('#large_grafic').attr('src','/assets/images/regnko_large.png');
			$('#grafic_label').text('www.regnko.ru');
		},function(){
			$('#small_grafic').attr('src','/assets/images/uradresa_small.png');
			$('#large_grafic').attr('src','/assets/images/uradresa_large.png');
			$('#grafic_label').text('www.uradresa.ru');
		},function(){
			$('#small_grafic').attr('src','/assets/images/graf_small.png');
			$('#large_grafic').attr('src','/assets/images/graf_large.png');
			$('#grafic_label').text('www.reghelp.ru');
		})
		/** - Продвижение **/
	});
