var imagePath;
var currentMoveId = 'off';

function setImagePathKey(key) {
	imagePath = '/images/'+key+'_moves_';
}

function updateMove(move_id) {
	
	var windowWidth = window.getWidth();
	var sideBuffer = (windowWidth-1000)/2+50;
	
	$('move_01').setProperty('src',imagePath+move_id+'_01.jpg');
	$('move_02').setProperty('src',imagePath+move_id+'_02.jpg')
	$('move_03').setProperty('src',imagePath+move_id+'_03.jpg')
	$('move_04').setProperty('src',imagePath+move_id+'_04.jpg')
	
	
		$('move_blurb_'+currentMoveId).setStyle('visibility','hidden');
	
	
	
		
		if (move_id == '01' || move_id == '02')
		{
			$('move_blurb_'+move_id).setStyle('right',sideBuffer);
		}
		else if (move_id == '03' || move_id == '04')
		{
			$('move_blurb_'+move_id).setStyle('left',sideBuffer);
		}
		
		$('move_blurb_'+move_id).setStyle('visibility','visible');
		
		
	
	
	currentMoveId = move_id;
}