
function tweenZoom(){ 

	$('morpher').effects({
	duration: 1000
}).start({
	'width':[240,240],
	'height':[180,180]
});
};
function tweenZoomOut(){
	$('morpher').effects({
	duration: 1000
}).start({
	'width':[240,240],
	'height':[180,180]
});
};
