


function move(direction){

	speed = 800;

	switch(direction){
		
		case 'right':
				
			$('#firstblock').SlideOutLeft(
				speed,
				function (){
						$('#secondblock').SlideInRight(
						speed,
						function(){},
						'easeout'						
					);
				},
				'easein'
			);
			
		break;
		
		
		case 'left':

			$('#secondblock').SlideOutRight(
				speed,
				function (){
					$('#firstblock').SlideInLeft(
						speed,
						function(){},
						'easeout'						
					);
				},
				'easein'
			);
			
		break;
			
	}
	
}