new MVC.Animate('element_id',
{color: "#00FF00", width: "20px"},
2000,
MVC.Timer.Easings.linear,
function(){ alert('done!')}
);new MVC.Animate(element, params, duration, easing, callback) -> mvc.animate
Starts a new animation.
{HTMLElement|String} - the element or element id to animate.
{Object} - css properties to change and their value. Color values must be given like "#1289EF".
{Number} - how long the animation should take place in milliseconds. Default is 500.
{Object} - function for the object's motion.
{Function} - calls when animation has completed
is_color(style) -> MVC.Vector
{String} - a string containing a style value of an element.
{MVC.Vector} - a vector representing the RGB value of color.