/* МасOS меню  thank`s to excelent JQueryDock plugin */
jQuery(document).ready(function(){
			var opts =
					// horizontal Dock with images expanding downwards...
					{ align: 'top'
					// set the maximum minor axis (vertical) image dimension to 48px
					, size: 104
					// add labels..
					, labels: true
					// swap the GIF extension for PNG extension for the larger image...
					};
			
			// Запускаем мас-меню
		 jQuery('.Dock').jqDock(opts); 
						
	 $('#next-arrow').bind('click', function(){ 
					$('#container').scrollTo('+=100px',2500,{easing:'elasout'});
						});
	var _timer; // Таймер	
	var _position=0; // Позиция прокрутки - 0 или 1

	
	
	$('#scroll-container').hover(function(e){
			
			/*_x=e.pageX-this.offsetLeft;
			_y=e.pageY-this.offsetTop;
			
			
			
				
			if((_x>350)&(_position==0))
			{
			
				$('#scroll-container').scrollTo('#mail', 1000);
				 // alert("x="+_x+" Position" +_position);
				_position=1;
			}
			
			
			if((_x<200)&(_position==1))
			{
				$('#scroll-container').scrollTo('#wallet', 1000);
				// alert("x="+_x+" Position" +_position);
				_position=0;
			
			}*/
			
	
	},function(){
			$('#scroll-container').stop(true);
				});


	$('#scroll-container').bind('mouseout', function(){clearInterval(_timer);}); 
	
	
	$('#left-arrow').hover(function(){
			$('#left-arrow img').attr('src','/images/mac_menu/arrow_back_hover.gif');
			$('#scroll-container').scrollTo('#wallet', 3000);
		}, function(){
			$('#left-arrow img').attr('src','/images/mac_menu/arrow_back.gif');
			$('#scroll-container').stop(true);
	});
	$('#right-arrow').hover(function(){
			$('#right-arrow img').attr('src','/images/mac_menu/arrow_next_hover.gif');
				$('#scroll-container').scrollTo('#mail', 3000);
		}, function(){
			$('#right-arrow img').attr('src','/images/mac_menu/arrow_next.gif');
			$('#scroll-container').stop(true);
	});
	
	$('#left-arrow').bind('click',function(){
		$('#scroll-container').stop(true);
		$('#scroll-container').scrollTo('#wallet', 1000);
	
	});
	$('#right-arrow').bind('click',function(){
		$('#scroll-container').stop(true);
		$('#scroll-container').scrollTo('#mail', 1000);
	
	});

	$('#masha').bind('click', function(){$('#mail_maria').fadeIn(1000);});
	$('.close-form').bind('click', function(){$('.mail_layer').fadeOut(1000);});
	$('#nata').bind('click', function(){$('#mail_nata').fadeIn(1000);});
	$('.close-form').bind('click', function(){$('.mail_layer').fadeOut(1000);});
	$('#sveta').bind('click', function(){$('#mail_sveta').fadeIn(1000);});
	$('.close-form').bind('click', function(){$('.mail_layer').fadeOut(1000);});
	

	

});
