Collateral Damage: iPhone Tutorial ~ UIButtons and Animation: "[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:0.5]; //Sets the Animation time to .5 Seconds
/*The Below Sets the transition to flip the button from the right. */
[UIView setAnimationTransition:UIViewAnimationTransitionFlipFromRight forView:btnMyButton cache:YES];
[UIView commitAnimations];//Starts the Animation"