-(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Rotates ALL directions except vertical upside down, as per Apple's standards
return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
}