$(function(){
	
	$(".mvBack").click(function(){
		if(currentanimationDestination > 0){
			currentanimationDestination--;
			newWidth = currentanimationDestination * 250;
			$("#misc_image_selector_destination").animate({ 
     		   left: "-" + newWidth + "px"
			},500);
			
		}
		
		return false;
	});
	
	$(".mvNext").click(function(){
		if(currentanimationDestination < maxAnimationDestination){
			currentanimationDestination++;
			newWidth = currentanimationDestination * 262;
			$("#misc_image_selector_destination").animate({ 
     		   left: "-" + newWidth + "px"
			},500);
			
		}
		
		return false;
	});
		
});