var morphStart = function(){
	//we can also start out morph like we would start a tween
	//except we can now input multiple style properties
	this.start({
		'width': 325,
		'height': 261,
		'top': 0,
		'left': 0
	});
}

var morphEnd = function(){
	//we can also start out morph like we would start a tween
	//except we can now input multiple style properties
	this.start({
		'width': 315,
		'height': 251,
		'top': 5,
		'left': 5
	});
}