$j(document).ready(function($){
	$('#steer div').css({opacity:0.6});
	$('#steer div').eq(0).css({opacity:1});
	$('#steer div').click(function(){
		$('#steer div').css({opacity:0.6});
		currentClick=$('#steer div').index($(this));
		$('#steer div').eq(currentClick).css({opacity:1});
		$('#viewer').animate({top:-(330*currentClick)},600);
		
		$('#mviewer').animate({top:-(40*currentClick)},600);
	});
});
