-- MySQL dump 10.13  Distrib 5.5.12, for Linux (x86_64)
--
-- Host: localhost    Database: oceansoneresort
-- ------------------------------------------------------
-- Server version	5.5.12-log

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `wp_commentmeta`
--

DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_commentmeta`
--

LOCK TABLES `wp_commentmeta` WRITE;
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_comments`
--

DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
  `comment_author` tinytext NOT NULL,
  `comment_author_email` varchar(100) NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) NOT NULL DEFAULT '',
  `comment_type` varchar(20) NOT NULL DEFAULT '',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`comment_ID`),
  KEY `comment_approved` (`comment_approved`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_comments`
--

LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_links`
--

DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) NOT NULL DEFAULT '',
  `link_name` varchar(255) NOT NULL DEFAULT '',
  `link_image` varchar(255) NOT NULL DEFAULT '',
  `link_target` varchar(25) NOT NULL DEFAULT '',
  `link_description` varchar(255) NOT NULL DEFAULT '',
  `link_visible` varchar(20) NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
  `link_rating` int(11) NOT NULL DEFAULT '0',
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) NOT NULL DEFAULT '',
  `link_notes` mediumtext NOT NULL,
  `link_rss` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_links`
--

LOCK TABLES `wp_links` WRITE;
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
INSERT INTO `wp_links` VALUES (1,'http://codex.wordpress.org/','Documentation','','','','Y',1,0,'0000-00-00 00:00:00','','',''),(2,'http://wordpress.org/news/','WordPress Blog','','','','Y',1,0,'0000-00-00 00:00:00','','','http://wordpress.org/news/feed/'),(3,'http://wordpress.org/extend/ideas/','Suggest Ideas','','','','Y',1,0,'0000-00-00 00:00:00','','',''),(4,'http://wordpress.org/support/','Support Forum','','','','Y',1,0,'0000-00-00 00:00:00','','',''),(5,'http://wordpress.org/extend/plugins/','Plugins','','','','Y',1,0,'0000-00-00 00:00:00','','',''),(6,'http://wordpress.org/extend/themes/','Themes','','','','Y',1,0,'0000-00-00 00:00:00','','',''),(7,'http://planet.wordpress.org/','WordPress Planet','','','','Y',1,0,'0000-00-00 00:00:00','','','');
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_options`
--

DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `blog_id` int(11) NOT NULL DEFAULT '0',
  `option_name` varchar(64) NOT NULL DEFAULT '',
  `option_value` longtext NOT NULL,
  `autoload` varchar(20) NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`)
) ENGINE=InnoDB AUTO_INCREMENT=674 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_options`
--

LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,0,'siteurl','http://oor.wbtaylor.net','yes'),(2,0,'blogname','Oceans one Resort','yes'),(3,0,'blogdescription','Just another WordPress site','yes'),(4,0,'users_can_register','0','yes'),(5,0,'admin_email','wtaylor.b@gmail.com','yes'),(6,0,'start_of_week','1','yes'),(7,0,'use_balanceTags','0','yes'),(8,0,'use_smilies','1','yes'),(9,0,'require_name_email','1','yes'),(10,0,'comments_notify','1','yes'),(11,0,'posts_per_rss','10','yes'),(12,0,'rss_use_excerpt','0','yes'),(13,0,'mailserver_url','mail.example.com','yes'),(14,0,'mailserver_login','login@example.com','yes'),(15,0,'mailserver_pass','password','yes'),(16,0,'mailserver_port','110','yes'),(17,0,'default_category','1','yes'),(18,0,'default_comment_status','open','yes'),(19,0,'default_ping_status','open','yes'),(20,0,'default_pingback_flag','1','yes'),(21,0,'default_post_edit_rows','20','yes'),(22,0,'posts_per_page','10','yes'),(23,0,'date_format','F j, Y','yes'),(24,0,'time_format','g:i a','yes'),(25,0,'links_updated_date_format','F j, Y g:i a','yes'),(26,0,'links_recently_updated_prepend','<em>','yes'),(27,0,'links_recently_updated_append','</em>','yes'),(28,0,'links_recently_updated_time','120','yes'),(29,0,'comment_moderation','0','yes'),(30,0,'moderation_notify','1','yes'),(31,0,'permalink_structure','/index.php/%year%/%monthnum%/%postname%/','yes'),(32,0,'gzipcompression','0','yes'),(33,0,'hack_file','0','yes'),(34,0,'blog_charset','UTF-8','yes'),(35,0,'moderation_keys','','no'),(36,0,'active_plugins','a:2:{i:0;s:45:\"grunion-contact-form/grunion-contact-form.php\";i:1;s:37:\"wordpress-event-calendar/calendar.php\";}','yes'),(37,0,'home','http://oor.wbtaylor.net','yes'),(38,0,'category_base','','yes'),(39,0,'ping_sites','http://rpc.pingomatic.com/','yes'),(40,0,'advanced_edit','0','yes'),(41,0,'comment_max_links','2','yes'),(42,0,'gmt_offset','0','yes'),(43,0,'default_email_category','1','yes'),(44,0,'recently_edited','a:2:{i:0;s:107:\"/home/http/sites-available/oor.wbtaylor.net/public/wp-content/plugins/wordpress-event-calendar/calendar.php\";i:1;s:0:\"\";}','no'),(45,0,'template','oor','yes'),(46,0,'stylesheet','oor','yes'),(47,0,'comment_whitelist','1','yes'),(48,0,'blacklist_keys','','no'),(49,0,'comment_registration','0','yes'),(50,0,'rss_language','en','yes'),(51,0,'html_type','text/html','yes'),(52,0,'use_trackback','0','yes'),(53,0,'default_role','subscriber','yes'),(54,0,'db_version','17516','yes'),(55,0,'uploads_use_yearmonth_folders','1','yes'),(56,0,'upload_path','','yes'),(57,0,'blog_public','1','yes'),(58,0,'default_link_category','2','yes'),(59,0,'show_on_front','page','yes'),(60,0,'tag_base','','yes'),(61,0,'show_avatars','1','yes'),(62,0,'avatar_rating','G','yes'),(63,0,'upload_url_path','','yes'),(64,0,'thumbnail_size_w','150','yes'),(65,0,'thumbnail_size_h','150','yes'),(66,0,'thumbnail_crop','1','yes'),(67,0,'medium_size_w','300','yes'),(68,0,'medium_size_h','300','yes'),(69,0,'avatar_default','mystery','yes'),(70,0,'enable_app','0','yes'),(71,0,'enable_xmlrpc','0','yes'),(72,0,'large_size_w','1024','yes'),(73,0,'large_size_h','1024','yes'),(74,0,'image_default_link_type','file','yes'),(75,0,'image_default_size','','yes'),(76,0,'image_default_align','','yes'),(77,0,'close_comments_for_old_posts','0','yes'),(78,0,'close_comments_days_old','14','yes'),(79,0,'thread_comments','1','yes'),(80,0,'thread_comments_depth','5','yes'),(81,0,'page_comments','0','yes'),(82,0,'comments_per_page','50','yes'),(83,0,'default_comments_page','newest','yes'),(84,0,'comment_order','asc','yes'),(85,0,'sticky_posts','a:0:{}','yes'),(86,0,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(87,0,'widget_text','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(88,0,'widget_rss','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(89,0,'timezone_string','','yes'),(90,0,'embed_autourls','1','yes'),(91,0,'embed_size_w','','yes'),(92,0,'embed_size_h','600','yes'),(93,0,'page_for_posts','19','yes'),(94,0,'page_on_front','9','yes'),(95,0,'default_post_format','0','yes'),(96,0,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:62:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:9:\"add_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(97,0,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(98,0,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(99,0,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(100,0,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(101,0,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(102,0,'sidebars_widgets','a:8:{s:19:\"wp_inactive_widgets\";a:0:{}s:19:\"primary-widget-area\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:21:\"secondary-widget-area\";a:0:{}s:24:\"first-footer-widget-area\";a:0:{}s:25:\"second-footer-widget-area\";a:0:{}s:24:\"third-footer-widget-area\";a:0:{}s:25:\"fourth-footer-widget-area\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(103,0,'cron','a:3:{i:1309392439;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1309435645;a:1:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}s:7:\"version\";i:2;}','yes'),(104,0,'_transient_doing_cron','1309350196','yes'),(107,0,'widget_pages','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(108,0,'widget_calendar','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(109,0,'widget_links','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(110,0,'widget_tag_cloud','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(111,0,'widget_nav_menu','a:2:{i:2;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(114,0,'_site_transient_update_themes','O:8:\"stdClass\":1:{s:12:\"last_checked\";i:1309350198;}','yes'),(116,0,'dashboard_widget_options','a:4:{s:25:\"dashboard_recent_comments\";a:1:{s:5:\"items\";i:5;}s:24:\"dashboard_incoming_links\";a:5:{s:4:\"home\";s:23:\"http://oor.wbtaylor.net\";s:4:\"link\";s:99:\"http://blogsearch.google.com/blogsearch?scoring=d&partner=wordpress&q=link:http://oor.wbtaylor.net/\";s:3:\"url\";s:132:\"http://blogsearch.google.com/blogsearch_feeds?scoring=d&ie=utf-8&num=10&output=rss&partner=wordpress&q=link:http://oor.wbtaylor.net/\";s:5:\"items\";i:10;s:9:\"show_date\";b:0;}s:17:\"dashboard_primary\";a:7:{s:4:\"link\";s:26:\"http://wordpress.org/news/\";s:3:\"url\";s:31:\"http://wordpress.org/news/feed/\";s:5:\"title\";s:14:\"WordPress Blog\";s:5:\"items\";i:2;s:12:\"show_summary\";i:1;s:11:\"show_author\";i:0;s:9:\"show_date\";i:1;}s:19:\"dashboard_secondary\";a:7:{s:4:\"link\";s:28:\"http://planet.wordpress.org/\";s:3:\"url\";s:33:\"http://planet.wordpress.org/feed/\";s:5:\"title\";s:20:\"Other WordPress News\";s:5:\"items\";i:5;s:12:\"show_summary\";i:0;s:11:\"show_author\";i:0;s:9:\"show_date\";i:0;}}','yes'),(140,0,'recently_activated','a:0:{}','yes'),(145,0,'can_compress_scripts','1','yes'),(148,0,'_transient_random_seed','ced530b54e300d1140392297fbcecfc8','yes'),(167,0,'_site_transient_update_core','O:8:\"stdClass\":3:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":7:{s:8:\"response\";s:6:\"latest\";s:3:\"url\";s:30:\"http://wordpress.org/download/\";s:7:\"package\";s:40:\"http://wordpress.org/wordpress-3.1.3.zip\";s:7:\"current\";s:5:\"3.1.3\";s:6:\"locale\";s:5:\"en_US\";s:11:\"php_version\";s:3:\"4.3\";s:13:\"mysql_version\";s:5:\"4.1.2\";}}s:12:\"last_checked\";i:1309350197;s:15:\"version_checked\";s:5:\"3.1.3\";}','yes'),(189,0,'akismet_available_servers','a:4:{s:12:\"66.135.58.61\";b:1;s:12:\"66.135.58.62\";b:1;s:12:\"72.233.69.88\";b:1;s:12:\"72.233.69.89\";b:1;}','yes'),(190,0,'akismet_connectivity_time','1306383369','yes'),(193,0,'current_theme','Oceans One Resort','yes'),(194,0,'theme_mods_oor','a:1:{i:0;b:0;}','yes'),(197,0,'category_children','a:0:{}','yes'),(392,0,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1306966511','yes'),(393,0,'_site_transient_poptags_40cd750bba9870f18aada2478b24840a','a:40:{s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";s:4:\"2385\";}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"Post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";s:4:\"1634\";}s:6:\"plugin\";a:3:{s:4:\"name\";s:6:\"plugin\";s:4:\"slug\";s:6:\"plugin\";s:5:\"count\";s:4:\"1431\";}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";s:4:\"1209\";}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";s:4:\"1185\";}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";s:4:\"1165\";}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";s:3:\"856\";}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";s:3:\"797\";}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";s:3:\"733\";}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";s:3:\"728\";}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";s:3:\"691\";}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";s:3:\"669\";}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";s:3:\"652\";}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";s:3:\"576\";}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";s:3:\"520\";}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";s:3:\"510\";}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";s:3:\"430\";}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";s:3:\"430\";}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"AJAX\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";s:3:\"423\";}s:9:\"wordpress\";a:3:{s:4:\"name\";s:9:\"wordpress\";s:4:\"slug\";s:9:\"wordpress\";s:5:\"count\";s:3:\"413\";}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"Facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";s:3:\"399\";}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";s:3:\"372\";}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";s:3:\"365\";}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";s:3:\"354\";}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";s:3:\"350\";}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";s:3:\"350\";}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";s:3:\"349\";}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";s:3:\"335\";}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";s:3:\"335\";}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";s:3:\"334\";}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";s:3:\"333\";}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";s:3:\"331\";}s:5:\"flash\";a:3:{s:4:\"name\";s:5:\"flash\";s:4:\"slug\";s:5:\"flash\";s:5:\"count\";s:3:\"325\";}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";s:3:\"316\";}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";s:3:\"306\";}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";s:3:\"298\";}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";s:3:\"296\";}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";s:3:\"281\";}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";s:3:\"280\";}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";s:3:\"280\";}}','yes'),(395,0,'_site_transient_update_plugins','O:8:\"stdClass\":3:{s:12:\"last_checked\";i:1309316539;s:7:\"checked\";a:5:{s:19:\"akismet/akismet.php\";s:5:\"2.5.3\";s:21:\"eventify/eventify.php\";s:5:\"1.7.f\";s:45:\"grunion-contact-form/grunion-contact-form.php\";s:3:\"2.2\";s:9:\"hello.php\";s:3:\"1.6\";s:37:\"wordpress-event-calendar/calendar.php\";s:4:\"0.27\";}s:8:\"response\";a:0:{}}','yes'),(578,0,'uninstall_plugins','a:2:{i:0;b:0;s:37:\"wordpress-event-calendar/calendar.php\";s:10:\"wec_delete\";}','yes'),(579,0,'wec_versionNumber','0.27','yes'),(580,0,'wec_defaultFeedID','1','yes'),(581,0,'wec_defaultCalendarID','1','yes'),(582,0,'wec_autoGenerateRecurrences','1','yes'),(583,0,'wec_numberOfRecurrencesToCreateAtOnce','100','yes'),(584,0,'wec_numberOfEventsToCreateForInfiniteRecurrences','100','yes'),(585,0,'wec_autoDeleteRecurrencesAfter','30','yes'),(586,0,'wec_numberOfDaysBeforeEventToPublishInRSSFeed','30','yes'),(587,0,'wec_default_time_zone','ETC/GMT','yes'),(588,0,'_site_transient_timeout_wporg_theme_feature_list','1307489865','yes'),(589,0,'_site_transient_wporg_theme_feature_list','a:5:{s:6:\"Colors\";a:15:{i:0;s:5:\"black\";i:1;s:4:\"blue\";i:2;s:5:\"brown\";i:3;s:4:\"gray\";i:4;s:5:\"green\";i:5;s:6:\"orange\";i:6;s:4:\"pink\";i:7;s:6:\"purple\";i:8;s:3:\"red\";i:9;s:6:\"silver\";i:10;s:3:\"tan\";i:11;s:5:\"white\";i:12;s:6:\"yellow\";i:13;s:4:\"dark\";i:14;s:5:\"light\";}s:7:\"Columns\";a:6:{i:0;s:10:\"one-column\";i:1;s:11:\"two-columns\";i:2;s:13:\"three-columns\";i:3;s:12:\"four-columns\";i:4;s:12:\"left-sidebar\";i:5;s:13:\"right-sidebar\";}s:5:\"Width\";a:2:{i:0;s:11:\"fixed-width\";i:1;s:14:\"flexible-width\";}s:8:\"Features\";a:18:{i:0;s:8:\"blavatar\";i:1;s:10:\"buddypress\";i:2;s:17:\"custom-background\";i:3;s:13:\"custom-colors\";i:4;s:13:\"custom-header\";i:5;s:11:\"custom-menu\";i:6;s:12:\"editor-style\";i:7;s:21:\"featured-image-header\";i:8;s:15:\"featured-images\";i:9;s:20:\"front-page-post-form\";i:10;s:19:\"full-width-template\";i:11;s:12:\"microformats\";i:12;s:12:\"post-formats\";i:13;s:20:\"rtl-language-support\";i:14;s:11:\"sticky-post\";i:15;s:13:\"theme-options\";i:16;s:17:\"threaded-comments\";i:17;s:17:\"translation-ready\";}s:7:\"Subject\";a:3:{i:0;s:7:\"holiday\";i:1;s:13:\"photoblogging\";i:2;s:8:\"seasonal\";}}','yes'),(628,0,'_transient_timeout_feed_a754a1696ff172e6fef846d1c41f128b','1308896762','no'),(629,0,'_transient_feed_a754a1696ff172e6fef846d1c41f128b','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:4:\"\n  \n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:33:\"\n    \n    \n    \n    \n    \n    \n  \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:3:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"link:http://oor.wbtaylor.net/ - Google Blog Search\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"http://www.google.com/search?ie=utf-8&q=link:http://oor.wbtaylor.net/&tbm=blg&tbs=sbd:1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"Your search - <b>link:http://oor.wbtaylor.net/</b> - did not match any documents.  \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://a9.com/-/spec/opensearch/1.1/\";a:3:{s:12:\"totalResults\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:10:\"startIndex\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:12:\"itemsPerPage\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"10\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:7:{s:12:\"content-type\";s:28:\"text/xml; charset=ISO-8859-1\";s:4:\"date\";s:29:\"Thu, 23 Jun 2011 18:25:26 GMT\";s:7:\"expires\";s:2:\"-1\";s:13:\"cache-control\";s:18:\"private, max-age=0\";s:10:\"set-cookie\";s:143:\"PREF=ID=3cad38fc1c89e42f:FF=0:TM=1308853526:LM=1308853526:S=iO2YFKQBlHGf4Hni; expires=Sat, 22-Jun-2013 18:25:26 GMT; path=/; domain=.google.com\";s:6:\"server\";s:3:\"gws\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";}s:5:\"build\";s:14:\"20090627192103\";}','no'),(630,0,'_transient_timeout_feed_mod_a754a1696ff172e6fef846d1c41f128b','1308896762','no'),(631,0,'_transient_feed_mod_a754a1696ff172e6fef846d1c41f128b','1308853562','no'),(632,0,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1308896762','no'),(633,0,'_transient_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:50:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:3:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 22 Jun 2011 00:00:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://wordpress.org/?v=3.2-RC1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:41:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n			\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Passwords Reset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"http://wordpress.org/news/2011/06/passwords-reset/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/news/2011/06/passwords-reset/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 21 Jun 2011 23:57:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=1908\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:376:\"Earlier today the WordPress team noticed suspicious commits to several popular plugins (AddThis, WPtouch, and W3 Total Cache) containing cleverly disguised backdoors. We determined the commits were not from the authors, rolled them back, pushed updates to the plugins, and shut down access to the plugin repository while we looked for anything else unsavory. We&#8217;re [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1290:\"<p>Earlier today the WordPress team noticed suspicious commits to several popular plugins (AddThis, WPtouch, and W3 Total Cache) containing cleverly disguised backdoors. We determined the commits were not from the authors, rolled them back, pushed updates to the plugins, and shut down access to the plugin repository while we looked for anything else unsavory.</p>\n<p>We&#8217;re still investigating what happened, but as a prophylactic measure we&#8217;ve decided to force-reset all passwords on WordPress.org. To use the forums, trac, or commit to a plugin or theme, you&#8217;ll need to <a href=\"http://wordpress.org/support/bb-login.php\">reset your password to a new one</a>. (Same for bbPress.org and BuddyPress.org.)</p>\n<p>As a user, make sure to never use the same password for two different services, and we encourage you not to reset your password to be the same as your old one.</p>\n<p>Second, if you use <a href=\"http://wordpress.org/extend/plugins/addthis/\">AddThis</a>, <a href=\"http://wordpress.org/extend/plugins/wptouch/\">WPtouch</a>, or <a href=\"http://wordpress.org/extend/plugins/w3-total-cache/\">W3 Total Cache</a> and there&#8217;s a possibility you could have updated in the past day, make sure to visit your updates page and upgrade each to the latest version.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2011/06/passwords-reset/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:47:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n		\n		\n			\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 3.2 Release Candidate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wordpress.org/news/2011/06/wordpress-3-2-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"http://wordpress.org/news/2011/06/wordpress-3-2-release-candidate/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 14 Jun 2011 04:28:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:7:\"Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=1890\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:341:\"The first release candidate (RC1) for WordPress 3.2 is now available. An RC comes after the beta period and before final release. We think we’re done, but with tens of millions of users, a variety of configurations, and thousands of plugins, it’s possible we’ve missed something. So if you haven’t tested WordPress 3.2 yet, now [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2297:\"<p>The first release candidate (RC1) for WordPress 3.2 is now available.</p>\n<p>An RC comes after the beta period and before final release. We think we’re done, but with tens of millions of users, a variety of configurations, and thousands of plugins, it’s possible we’ve missed something. So if you haven’t tested WordPress 3.2 yet, now is the time! Please though, not on your live site unless you’re extra adventurous.</p>\n<p>Things to keep in mind:</p>\n<ul>\n<li>With <a href=\"http://core.trac.wordpress.org/milestone/3.2\">more than 350 tickets closed</a>, there are plenty of changes. Plugin and theme authors, <strong>please test your plugins and themes now</strong>, so that if there is a compatibility issue, we can figure it out before the final release.</li>\n<li><strong>Users</strong> are also encouraged to test things out. If you find problems, let your plugin/theme authors know so they can figure out the cause.</li>\n<li>Twenty Eleven isn&#8217;t quite at the release candidate stage. <a href=\"http://cheezburger.com/Mmmbop/lolz/View/4683101952\">Contents may settle</a>.</li>\n<li>If any known issues crop up, you&#8217;ll be able to <a href=\"http://core.trac.wordpress.org/report/5\">find them here</a>.</li>\n</ul>\n<p>If you are testing the release candidate and think you&#8217;ve found a bug, there are a few ways to let us know:</p>\n<ul>\n<li>Post it to the <a href=\"http://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area in the support forums</a> or <a href=\"http://lists.automattic.com/mailman/listinfo/wp-testers\">wp-testers</a></li>\n<li>Join the development IRC channel and tell us live at irc.freenode.net #wordpress-dev</li>\n<li>File a bug ticket on the <a href=\"http://core.trac.wordpress.org/\">WordPress Trac</a></li>\n</ul>\n<p>To test WordPress 3.2, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester plugin</a> (you&#8217;ll want &#8220;bleeding edge nightlies&#8221;). Or you can <a href=\"http://wordpress.org/wordpress-3.2-RC1.zip\">download the release candidate here</a> (zip).</p>\n<p>Happy testing!</p>\n<p><em>If you&#8217;d like to know which levers to pull in your testing, <a href=\"http://wordpress.org/news/2011/05/wordpress-3-2-beta-1/\">check out a list of features</a> in our Beta 1 post.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"http://wordpress.org/news/2011/06/wordpress-3-2-release-candidate/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:47:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n		\n		\n			\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"WordCamp San Francisco Call for Speakers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"http://wordpress.org/news/2011/05/wordcamp-san-francisco-call-for-speakers/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"http://wordpress.org/news/2011/05/wordcamp-san-francisco-call-for-speakers/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 31 May 2011 18:59:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:4:\"wcsf\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=1886\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:425:\"The annual WordPress conference, WordCamp San Francisco (home of the very first WordCamp), is now accepting speaker applications. Past speakers have included core WordPress developers, people building successful businesses on WordPress, popular bloggers, people from related projects and businesses&#8230;you name it. In addition to Matt Mullenweg&#8217;s annual &#8220;State of the Word&#8221; address, WCSF has played [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Jane Wells\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:905:\"<p>The annual WordPress conference, <a href=\"http://2011.sf.wordcamp.org/\">WordCamp San Francisco</a> (home of the very first WordCamp), is now accepting speaker applications. Past speakers have included core WordPress developers, people building successful businesses on WordPress, popular bloggers, people from related projects and businesses&#8230;you name it. In addition to Matt Mullenweg&#8217;s annual &#8220;State of the Word&#8221; address, WCSF has played host to talks by people like Mark Jaquith, Matt Cutts, Richard Stallman, Scott Berkun, Karl Fogel, Tim Ferriss, Tara Hunt, Chris Pirillo, and John Lilly. With 3 days of content this year instead of just one, the list of speakers should be even more impressive. If you think you&#8217;d make a good addition to this year&#8217;s roster, check out the <a href=\"http://2011.sf.wordcamp.org/call-for-speakers/\">WCSF Call for Speakers</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"http://wordpress.org/news/2011/05/wordcamp-san-francisco-call-for-speakers/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:47:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n		\n		\n			\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"WordPress 3.1.3 (and WordPress 3.2 Beta 2)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"http://wordpress.org/news/2011/05/wordpress-3-1-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/news/2011/05/wordpress-3-1-3/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 25 May 2011 18:43:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=1838\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:408:\"WordPress 3.1.3 is available now and is a security update for all previous versions. It contains the following security fixes and enhancements: Various security hardening by Alexander Concha. Taxonomy query hardening by John Lamansky. Prevent sniffing out user names of non-authors by using canonical redirects. Props Verónica Valeros. Media security fixes by Richard Lundeen of Microsoft, Jesse Ou [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mark Jaquith\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:3497:\"<p><a href=\"http://wordpress.org/download/\">WordPress 3.1.3</a> is available now and is a security update for all previous versions. It contains the following security fixes and enhancements:</p>\n<ul>\n<li>Various security hardening by <a href=\"http://www.buayacorp.com\">Alexander Concha</a>.</li>\n<li>Taxonomy query hardening by <a href=\"http://johnlamansky.com/wordpress\">John Lamansky</a>.</li>\n<li>Prevent sniffing out user names of non-authors by using canonical redirects. Props <a href=\"http://www.talsoft.com.ar\">Verónica Valeros</a>.</li>\n<li>Media security fixes by Richard Lundeen of <a href=\"http://www.microsoft.com/\">Microsoft</a>, Jesse Ou of <a href=\"http://www.microsoft.com/\">Microsoft</a>, and <a href=\"http://www.microsoft.com/security/msrc/default.aspx\">Microsoft Vulnerability Research</a>.</li>\n<li>Improves file upload security on hosts with dangerous security settings.</li>\n<li>Cleans up old WordPress import files if the import does not finish.</li>\n<li>Introduce &#8220;clickjacking&#8221; protection in modern browsers on admin and login pages.</li>\n</ul>\n<p>Consult the <a href=\"http://core.trac.wordpress.org/log/branches/3.1/?action=stop_on_copy&amp;mode=stop_on_copy&amp;rev=18023&amp;stop_rev=17805&amp;limit=100\">change log</a> for more details.</p>\n<p><a href=\"http://wordpress.org/download/\">Download WordPress 3.1.3</a> or update automatically from the Dashboard → Updates menu in your site’s admin area.</p>\n<hr />\n<h3>WordPress 3.2 Beta 2 also available</h3>\n<p>In other news, our development of WordPress 3.2 development continues right on schedule. We released <a href=\"http://wordpress.org/news/2011/05/wordpress-3-2-beta-1/\">Beta 1</a> thirteen days ago, and today we&#8217;re putting out Beta 2 for your testing pleasure.</p>\n<p>This is still beta software, so <strong>we don&#8217;t recommend that you use it on production sites</strong>. But if you&#8217;re a plugin developer, a theme developer, or a site administrator, <strong>you should be running this on your test environments</strong> and <a href=\"http://codex.wordpress.org/Reporting_Bugs\">reporting any bugs</a> you find. If you&#8217;re a WordPress user who wants to open your presents early, take advantage of WordPress&#8217; famous 5-minute install and spin up a secondary test site. Let us know what you think!</p>\n<p>The plan is to start putting out release candidates in early June, and to release WordPress 3.2 by the end of the month. The more you help us iron out issues during the beta period, the more likely we are to hit those dates. To misappropriate and mangle a quote from Mahatma Gandhi: &#8220;Be the punctuality you want to see in the WordPress.&#8221; In other words, test now!</p>\n<p>Here are some of the things that changed since Beta 1:</p>\n<ul>\n<li><a href=\"http://code.google.com/chrome/chromeframe/\">Google Chrome Frame</a> is now supported in the admin, if you have it installed. This is especially useful for IE 6 users (remember, IE 6 is otherwise deprecated for the admin).</li>\n<li>The admin is less ugly in IE 7.</li>\n<li>The blue admin color scheme has caught up to the grey one, and is ready for testing.</li>\n<li>We are now bundling jQuery 1.6.1. You should test any JS that uses jQuery. WordPress JavaScript guru Andrew Ozz has <a href=\"http://wpdevel.wordpress.com/2011/05/25/jquery-updates-in-wordpress-3-2/\">a post with more info</a>.</li>\n</ul>\n<p><a href=\"http://wordpress.org/wordpress-3.2-beta2.zip\">Download WordPress 3.2 Beta 2</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2011/05/wordpress-3-1-3/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:41:\"\n		\n		\n		\n		\n		\n				\n\n		\n		\n			\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"WordPress 3.2, Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2011/05/wordpress-3-2-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://wordpress.org/news/2011/05/wordpress-3-2-beta-1/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 12 May 2011 08:22:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=1816\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:351:\"It seems like just yesterday that we released WordPress 3.1, but it&#8217;s actually been almost three months. We&#8217;ve spent that time putting together a new release focused on performance improvements, and are ready for our first beta testers! As always, this is software still in development and we don&#8217;t recommend that you run it on [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Jane Wells\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4230:\"<p>It seems like just yesterday that we released WordPress 3.1, but it&#8217;s actually been almost three months. We&#8217;ve spent that time putting together a new release focused on performance improvements, and are ready for our first beta testers!</p>\n<p>As always, this is software still in development and <strong>we don&#8217;t recommend that you run it on a production site</strong> &#8212; set up a test site just to play with the new version. If you break it (find a bug), please report it, and if you&#8217;re a developer, try to help us fix it.</p>\n<p>If all goes well, we hope to release WordPress 3.2 by the end of June, though that is (again, as always) subject to change depending on how the beta period goes. The more help we get with testing and fixing bugs, the sooner we will be able to release the final version. If you want to be a beta tester, you should check out the Codex article on <a title=\"Reporting Bugs for WordPress\" href=\"http://codex.wordpress.org/Reporting_Bugs\">how to report bugs</a>.</p>\n<p><strong>Here&#8217;s some of what&#8217;s new:</strong></p>\n<ul>\n<li><strong>Performance improvements</strong> like you wouldn&#8217;t believe. What&#8217;s that mean? Things are faster!</li>\n<li><strong>Distraction-free Writing</strong>. The visual editor&#8217;s full-screen composing experience has gotten a major overhaul, and is now available from HTML mode, too. More than ever, WordPress allows you to focus on what matters most &#8212; your content.</li>\n<li><strong>Admin UI Refresh</strong>. The last major redesign of the WordPress admin was in 2008. This isn&#8217;t a major redesign, just a little facelift to keep us feeling young. WordPress turns 8 later this month, you know.</li>\n<li><strong>New Default Theme</strong>. Introducing Twenty Eleven, based on the popular Duster theme. Rotating header images, post format support, and more.</li>\n<li><strong><a href=\"http://browsehappy.com\">Browse Happy</a></strong>. WordPress is made to work with modern browsers. If you visit your Dashboard using an outdated web browser, we&#8217;ll let you know there&#8217;s a newer version available.</li>\n<li><strong>Admin Bar</strong>. We&#8217;ve added more links to the admin bar to make it even more useful.</li>\n</ul>\n<div>\n<div><strong>Be Aware:</strong></div>\n<div>\n<ul>\n<li>WordPress has new minimum system requirements: PHP 5.2.4 and MySQL 5.0.</li>\n<li>Internet Explorer 6 will no longer be supported.</li>\n<li>The favorites menu has been removed. If you&#8217;ve written any plugins that use this menu, it&#8217;s time to switch over to an admin bar placement.</li>\n</ul>\n</div>\n</div>\n<div><strong>Known Issues</strong>:</div>\n<div>\n<ul>\n<li>We haven&#8217;t updated the blue admin color scheme yet, so do your testing in the gray zone for best results.</li>\n</ul>\n</div>\n<p>Remember, if you find something you think is a bug, report it! You can bring it up in the <a title=\"Alpha/Beta Support Forum\" href=\"http://wordpress.org/support/forum/alphabeta\">alpha/beta forum</a>, you can email it to the <a title=\"WP-testers mailing list info page\" href=\"http://lists.automattic.com/mailman/listinfo/wp-testers\">wp-testers list</a>, or if you&#8217;ve confirmed that other people are experiencing the same bug, you can report it on the <a title=\"WordPress Core Trac\" href=\"http://core.trac.wordpress.org/\">WordPress Core Trac</a>. (I recommend starting in the forum or on the mailing list.)</p>\n<p>Theme and plugin authors, if you haven&#8217;t been following the 3.2 development cycle, <strong>please start now</strong> so that you can update your themes and plugins to be compatible with the newest version of WordPress.</p>\n<p>Note to developers: WordPress is built by the contributions of hundreds of developers. If you&#8217;d like to see this release come out on time, I encourage you to pitch in. Even if you don&#8217;t have time to do testing on the beta version, you could help us by contributing a fix for one of the <a title=\"3.1 bugs that need a patch\" href=\"http://core.trac.wordpress.org/report/6\">many bugs</a> we already know about.</p>\n<p><a title=\"Download WordPress 3.2 Beta 1\" href=\"http://wordpress.org/wordpress-3.2-beta1.zip\">Download WordPress 3.2 Beta 1</a></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://wordpress.org/news/2011/05/wordpress-3-2-beta-1/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:44:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n			\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"WordPress 3.1.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"http://wordpress.org/news/2011/04/wordpress-3-1-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/news/2011/04/wordpress-3-1-2/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 26 Apr 2011 19:00:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=1801\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:376:\"WordPress 3.1.2 is now available and is a security release for all previous WordPress versions. This release addresses a vulnerability that allowed Contributor-level users to improperly publish posts. The issue was discovered by a member of our security team, WordPress developer Andrew Nacin, with Benjamin Balter. We suggest you update to 3.1.2 promptly, especially if [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Ryan Boren\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:980:\"<p><a href=\"http://wordpress.org/download/\">WordPress 3.1.2</a> is now available and is a security release for all previous WordPress versions.</p>\n<p>This release addresses a vulnerability that allowed Contributor-level users to improperly publish posts.</p>\n<p>The issue was discovered by a member of our security team, WordPress developer <a href=\"http://andrewnacin.com/\">Andrew Nacin</a>, with <a href=\"http://ben.balter.com/\">Benjamin Balter</a>.</p>\n<p>We suggest you update to 3.1.2 promptly, especially if you allow users to register as contributors or if you have untrusted users. <a href=\"http://codex.wordpress.org/Version_3.1.2\">This release</a> also fixes <a title=\"Bugs fixed in 3.1.2\" href=\"http://core.trac.wordpress.org/query?milestone=3.1.2\">a few bugs</a> that missed the boat for version 3.1.1.</p>\n<p><a href=\"http://wordpress.org/download/\">Download 3.1.2</a> or update automatically from the Dashboard → Updates menu in your site&#8217;s admin area.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2011/04/wordpress-3-1-2/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:44:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n			\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Summer WordCamps 2011\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2011/04/summer-wordcamps-201/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://wordpress.org/news/2011/04/summer-wordcamps-201/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 16 Apr 2011 23:06:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=1785\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:379:\"Looking for something fun to do during your summer vacation? Why not check out a WordCamp! WordCamps are locally-organized casual conferences of, by, and for WordPress users, developers, and enthusiasts just like you. The focus of a WordCamp is to foster face-to-face connections and collaboration among the local WordPress crowd, but there are usually some out-of-towners [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Jane Wells\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:6113:\"<p>Looking for something fun to do during your summer vacation? Why not check out a WordCamp! WordCamps are locally-organized casual conferences of, by, and for WordPress users, developers, and enthusiasts just like you. The focus of a WordCamp is to foster face-to-face connections and collaboration among the local WordPress crowd, but there are usually some out-of-towners there as well. Here are the WordCamps that have been approved so far for the summer:</p>\n<p>April 16: <a href=\"http://wordcampseattle.org/\">WordCamp Seattle</a> in Seattle, WA. This weekend! After taking a year off, WordCamp Seattle is back with tracks for bloggers, designers, and developers. This year they&#8217;ll feature a lineup including presentations by both local speakers and visitors like core committer Andrew Nacin, as well as an Ignite session of lightning talks at the end of the day.</p>\n<p>May 5: <a href=\"http://wordcampdevelopers.com/\">WordCamp Vancouver (Developer Edition)</a> in Vancouver, BC. This one-day WordCamp is aimed purely at developers working on the WordPress platform, and will not have content aimed at bloggers (as previous Vancouver WordCamps have). I predict we will start seeing more of these types of niche WordCamps moving forward, because they will mean smaller, more intimate events that allow more collaboration (and make it easier to find venues!). Note that we&#8217;re working with the organizers to get the tickets to a more reasonable price, so keep your eyes open this week if you&#8217;ve held off on buying a ticket because of the price tag.</p>\n<p>May 7: <a href=\"http://wordcamp-switzerland.ch/\">WordCamp Switzerland</a> in Brugg, Switzerland. This one will cover a wide range of topics, including getting started with WordPress, advanced development topics, BuddyPress, and an inside look at running a WordPress-based business.</p>\n<p>May 14: <a href=\"http://www.ocwordcamp.com/\">WordCamp Orange County</a> in Orange, CA. Already sold out! Orange County had their first WordCamp last year, and the organizers have put together another great event this time around.</p>\n<p>May 14: <a href=\"http://paris14mai2011.wordcamp.fr/\">WordCamp Paris</a> in Paris, France. One of the last true unconference-style WordCamps, the Paris group will plan their schedule the morning of the event like they do at BarCamps. WordCamp Paris had one of the best WordCamp t-shirts ever a couple of years ago. And it&#8217;s in Paris in the spring.</p>\n<p>May 21–22: <a href=\"http://wordcampraleigh.com/\">WordCamp Raleigh</a> in Raleigh, NC. Repeat organizers from the Raleigh WordPress Meetup Group are just starting to select speakers and put together their plans, but if it is anything like last year, the venue will be packed with WordPress professionals (and maybe there will be cookies). I&#8217;ll be attending this one, as will Nacin.</p>\n<p>June 4–5: <a href=\"http://2011.reno.wordcamp.org/\">WordCamp Reno-Lake Tahoe</a> in Reno, NV. Organized by a WordPress core UI group contributor, WordCamp Reno-Lake Tahoe is taking place in Reno and has a packed schedule full of visiting experts.</p>\n<p>June 11–12: <a href=\"http://www.wckansascity.org/\">WordCamp Kansas City</a> in Overland Park, KS. With publisher, designer, and developer tracks, Kansas City&#8217;s WordCamp will have a little something for everyone, presented in large part by local speakers.</p>\n<p>June 17–19: <a href=\"http://wordcampcolumbus.com/\">WordCamp Columbus</a> in Columbus, OH. WordCamp Columbus has a new organizer this year and is bringing the focus more firmly onto WordPress (and less on social media). Their 3-day event includes an entire day for newbies, and another for non-profits, a nice addition to the usual blogger/developer tracks.</p>\n<p>July 9–10: <a href=\"http://wcmtl.org/\">WordCamp Montreal</a> in Montreal, Quebec. This group consistently puts on a great every year. If you register now, you can still get a $10 discount and get both days for only $30 (with sessions in both English and French to reflect the bilingual nature of the city). Montreal plays host to a number of <a href=\"http://www.montreal.com/tourism/festivals/index.html\">festivals</a> throughout the year, and this weekend is no different, including festivals for the arts, comedy, tango, and even circus arts.</p>\n<p>July 16: <a href=\"http://2011.sandiego.wordcamp.org/\">WordCamp San Diego</a> in San Diego, CA. First WordCamp in San Diego! They have talking about this for over a year, and are now starting to really ramp up the planning. They&#8217;re finalizing their venue right now, and I would expect a great roster of speakers.</p>\n<p>July 16-17: <a href=\"http://wiki.wordcampuk.org/Main_Page\">WordCamp Portsmouth</a> in Portsmouth, UK. The annual WordCamp UK that moves from city to city each year alights this year in Portsmouth. This one is notable because Mike Little, co-founder of WordPress, is part of the organizing team.</p>\n<p>July 23–24: <a href=\"http://wordcampboston.com/\">WordCamp Boston</a> in Boston, MA. Another one just about to lock down some details and get starting with speaker selection, etc. An easy train ride from so many places, and not in the middle of winter this year!</p>\n<p>July 30-31: <a href=\"http://2011.chicago.wordcamp.org\">WordCamp Chicago</a> has new organizers and is a new venue this year. A call for speakers, supporters, and volunteers will likely be posted sometime next week.</p>\n<p><a href=\"http://www.wordcampportland.org/\">WordCamp Portland</a> is looking for a venue before deciding on a date this year, as it has outgrown the space it&#8217;s used the past two years, but hopes to happen in September. If you would be interested in donating a venue to this popular event, please <a href=\"http://www.wordcampportland.org/\">contact them</a>.</p>\n<p>We&#8217;ll hold off on posting fall events until later in the summer since there a lot in the planning stages now. To get the most up-to-date information, visit <a href=\"http://central.wordcamp.org/schedule/\">WordCamp Central</a>.</p>\n<p>Hope to see you at a WordCamp soon!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://wordpress.org/news/2011/04/summer-wordcamps-201/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:44:\"\n		\n		\n		\n		\n		\n				\n		\n\n		\n		\n			\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"WordPress 3.1.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"http://wordpress.org/news/2011/04/wordpress-3-1-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/news/2011/04/wordpress-3-1-1/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 05 Apr 2011 15:10:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=1762\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:397:\"WordPress 3.1.1 is now available. This maintenance and security release fixes almost thirty issues in 3.1, including: Some security hardening to media uploads Performance improvements Fixes for IIS6 support Fixes for taxonomy and PATHINFO (/index.php/) permalinks Fixes for various query and taxonomy edge cases that caused some plugin compatibility issues Version 3.1.1 also addresses three [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Ryan Boren\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:1395:\"<p><a href=\"http://wordpress.org/download/\">WordPress 3.1.1</a> is now available. This maintenance and security release fixes <a title=\"Bugs fixed in 3.1.1\" href=\"http://core.trac.wordpress.org/query?status=closed&amp;resolution=fixed&amp;milestone=3.1.1&amp;group=resolution&amp;order=priority\">almost thirty issues</a> in 3.1, including:</p>\n<ul>\n<li>Some security hardening to media uploads</li>\n<li>Performance improvements</li>\n<li>Fixes for IIS6 support</li>\n<li>Fixes for taxonomy and PATHINFO (/index.php/) permalinks</li>\n<li>Fixes for various query and taxonomy edge cases that caused some plugin compatibility issues</li>\n</ul>\n<p>Version 3.1.1 also addresses three security issues discovered by WordPress core developers <a href=\"http://joncave.co.uk/\">Jon Cave</a> and <a href=\"http://blog.ftwr.co.uk/\">Peter Westwood</a>, of our security team. The first hardens CSRF prevention in the media uploader. The second avoids a PHP crash in certain environments when handling devilishly devised links in comments, and the third addresses an XSS flaw.</p>\n<p>We suggest you update to 3.1.1 promptly. <a href=\"http://wordpress.org/download/\">Download 3.1.1</a> or update automatically from the Dashboard → Updates menu in your site&#8217;s admin area.</p>\n<p>Our release haiku:</p>\n<p>Only the geeks know<br />\nWhat half this stuff even means<br />\nDon&#8217;t worry &#8212; update</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"http://wordpress.org/news/2011/04/wordpress-3-1-1/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:47:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n		\n		\n			\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"WordPress Summer of Code 2011\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://wordpress.org/news/2011/03/wordpress-summer-of-code-2011/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://wordpress.org/news/2011/03/wordpress-summer-of-code-2011/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 30 Mar 2011 15:57:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:4:\"GSoC\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=1756\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:361:\"For the past several years, WordPress has been a proud participant in the Google Summer of Code program (aka GSoC). We&#8217;ve been accepted as a mentoring organization again this year, and are looking forward to working with a select handful of talented college students who are interested in developing for WordPress. Student applications are currently [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Jane Wells\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2993:\"<p>For the past several years, WordPress has been a proud participant in the <a href=\"http://www.google-melange.com/gsoc/homepage/google/gsoc2011\">Google Summer of Code</a> program (aka GSoC). We&#8217;ve been accepted as a mentoring organization <a title=\"The official GSoC page on WordPress.org\" href=\"http://wordpress.org/gsoc/\">again this year</a>, and are looking forward to working with a select handful of talented college students who are interested in developing for WordPress. Student applications are currently being accepted, and the deadline to apply is April 8. Are you a college student/developer looking for a summer challenge (or do you know one)? If so, read on to find out how you (or your friend) can make $5,000 developing for WordPress this summer. (Best. Summer. Job. Ever.)</p>\n<p>GSoC Logistics:</p>\n<ul>\n<li>175 mentoring organizations (including WordPress)</li>\n<li>Highly competitive and prestigious program (in 2010, 5539 proposals were submitted by 3464 students, and 1026 were accepted)</li>\n<li>You must be enrolled in an accredited college/university</li>\n<li>Coding period is May-August</li>\n<li>Successful completion of project = $5,000</li>\n<li><a href=\"http://www.google-melange.com/gsoc/document/show/gsoc_program/google/gsoc2011/faqs\">GSoC FAQ</a> answers all your questions</li>\n</ul>\n<p>WordPress logistics:</p>\n<ul>\n<li>Mentors include WordPress core developers, plugin authors (including BuddyPress and bbPress), mobile app developers, and WordPress professionals.</li>\n<li>Projects are limited only by your imagination and ability.</li>\n<li>Previous GSoC students have gained responsible roles in WordPress core development, like Dion Hulse and Andrew Nacin (core committers), and Daryl Koopersmith (wrote the internal linking feature in 3.1 and much of the custom menus feature in 3.0).</li>\n<li>This year, in addition to accepting project proposals for the main WordPress web app, we&#8217;re also encouraging applications for projects with the <a href=\"http://wordpress.org/extend/mobile/\">WordPress mobile apps</a> (iOS, Android, Blackberry, Nokia, Windows Phone 7), for community-developed plugins like BuddyPress and bbPress, and even standalone plugins that could become community projects. Check out our <a href=\"http://codex.wordpress.org/GSoC2011\">Codex page on GSoC 2011</a> for some ideas to get you thinking.</li>\n<li>Last year we mentored 15 students, and hope to take on about the same number this year.</li>\n</ul>\n<p>If you&#8217;re a college student/developer, we encourage you to apply. If you&#8217;re a professor or a teacher of graduating high school seniors, encourage your students! If you just want to help us spread the word, <a title=\"WordPress GSoC 2011 flyer in PDF format (black and white, 8.5 x 11)\" href=\"http://wpdevel.files.wordpress.com/2011/03/wordpress-gsoc-2011-flyer.pdf\">download the WordPress GSoC flyer</a> and post it on campus bulletin boards in your town. Remember, April 8 is the deadline to apply!</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"http://wordpress.org/news/2011/03/wordpress-summer-of-code-2011/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:47:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n		\n		\n			\n			\n		\n		\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:5:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"Live from South by Southwest 2011\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"http://wordpress.org/news/2011/03/sxsw2011/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"http://wordpress.org/news/2011/03/sxsw2011/#comments\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 14 Mar 2011 11:24:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:10:\"genius bar\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:4:\"sxsw\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=1746\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:322:\"If you&#8217;ve ever heard Matt Mullenweg talk about the early days of WordPress, the South by Southwest (SxSW) Interactive festival that takes place each spring in Austin, TX usually crops up in the story. South by Southwest is in full swing right now, and WordPress has been all over the place. On Friday the 11th, [...]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Jane Wells\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:2105:\"<p>If you&#8217;ve ever heard Matt Mullenweg talk about the early days of WordPress, the <a title=\"SxSW Interactive\" href=\"http://sxsw.com/interactive\">South by Southwest (SxSW) Interactive</a> festival that takes place each spring in Austin, TX usually crops up in the story. South by Southwest is in full swing right now, and WordPress has been all over the place.</p>\n<p>On Friday the 11th, Matt was interviewed by John Battelle of Federated Media in front of a packed ballroom, talking about the future of WordPress. That night, the annual SxSW WordPress BBQ party played host to hundreds of WordPress users, developers, and businesspeople, and attendees got an extra treat this year in the form of a t-shirt made especially to commemorate WordPress and its Texas roots.</p>\n<p>On Saturday the 12th, a second party co-hosted by the Austin WordPress Meetup Group and GeekAustin (and co-sponsored by the WordPress Foundation and WPEngine) brought together a similar crowd but with the addition of local WordPress community members who were not registered for the SxSW conference.</p>\n<p>Starting today, the South by Southwest trade show opens, and this year for the first time it will feature an official WordPress Genius Bar. Staffed by professional WordPress support staff, developers, advanced users, theme designers, and even some of the core contributors and project leaders, the booth will be open from 11am-6pm each day to answer questions and help people with any WordPress problems they might have. If you are at South by Southwest this year, consider stopping by to say hello and pick up a WordPress button or sticker. We&#8217;ll also have a limited supply of the special WordPress/Texas shirts that we&#8217;ll be giving away at the booth, so if you&#8217;re at SxSW between now and Thursday, stop by.  Hope to see you there!</p>\n<p><em>Location: The WordPress booth will be in trade show stand numbers 829, 831, 928, and 930 (it&#8217;s an endcap booth that combines those four spaces). You can find us in those spaces by following the numbered banners hanging from the ceiling.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"http://wordpress.org/news/2011/03/sxsw2011/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:31:\"http://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"hourly\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 23 Jun 2011 18:25:26 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:10:\"x-pingback\";s:36:\"http://wordpress.org/news/xmlrpc.php\";s:13:\"last-modified\";s:29:\"Wed, 22 Jun 2011 00:00:44 GMT\";s:4:\"x-nc\";s:11:\"HIT luv 139\";}s:5:\"build\";s:14:\"20090627192103\";}','no'),(634,0,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1308896763','no'),(635,0,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1308853563','no'),(636,0,'_transient_timeout_feed_867bd5c64f85878d03a060509cd2f92c','1308896764','no'),(637,0,'_transient_timeout_feed_a5420c83891a9c88ad2a4f04584a5efc','1308896764','no'),(638,0,'_transient_feed_a5420c83891a9c88ad2a4f04584a5efc','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n	\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:72:\"\n		\n		\n		\n		\n		\n		\n				\n\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"WordPress Plugins » View: Most Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"http://wordpress.org/extend/plugins/browse/popular/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"WordPress Plugins » View: Most Popular\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 23 Jun 2011 18:10:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"http://bbpress.org/?v=1.1-alpha-2855\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:15:{i:0;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"uberdose on \"All in One SEO Pack\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://wordpress.org/extend/plugins/all-in-one-seo-pack/#post-753\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 30 Mar 2007 20:08:18 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"753@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"Automatically optimizes your Wordpress blog for Search Engines (Search Engine Optimization).\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"uberdose\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Alex Rabe on \"NextGEN Gallery\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://wordpress.org/extend/plugins/nextgen-gallery/#post-1169\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 23 Apr 2007 20:08:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"1169@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"NextGEN Gallery is a full integrated Image Gallery plugin for WordPress with dozens of options and features.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Alex Rabe\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"BraveNewCode Inc. on \"WPtouch\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"http://wordpress.org/extend/plugins/wptouch/#post-5468\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 01 May 2008 04:58:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"5468@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:150:\"WPtouch: A simple, powerful and elegant mobile theme for your website.\n\nWPtouch automatically transforms your WordPress blog into an iPhone applicatio\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"BraveNewCode Inc.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"edo888 on \"GTranslate\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://wordpress.org/extend/plugins/gtranslate/#post-14437\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 26 Nov 2009 17:35:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"14437@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:108:\"Get translations with a single click between 58 languages (more than 98% of internet users) on your website!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"edo888\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"Mike Challis on \"Fast Secure Contact Form\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"http://wordpress.org/extend/plugins/si-contact-form/#post-12636\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 27 Aug 2009 01:20:04 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"12636@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"A super customizable contact form that lets your visitors send you email. Blocks all automated spammers. No templates to mess with.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mike Challis\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"Takayuki Miyoshi on \"Contact Form 7\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://wordpress.org/extend/plugins/contact-form-7/#post-2141\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Aug 2007 12:45:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"2141@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Just another contact form plugin. Simple but flexible.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Takayuki Miyoshi\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"Frederick Townes on \"W3 Total Cache\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://wordpress.org/extend/plugins/w3-total-cache/#post-12073\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Jul 2009 18:46:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"12073@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:135:\"Improve site performance and user experience via caching: browser, page, object, database, minify and content delivery network support.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Frederick Townes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"Brian Colinger on \"WordPress Importer\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wordpress.org/extend/plugins/wordpress-importer/#post-18101\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 20 May 2010 17:42:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"18101@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brian Colinger\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Arne on \"Google XML Sitemaps\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"http://wordpress.org/extend/plugins/google-sitemap-generator/#post-132\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 09 Mar 2007 22:31:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"132@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"This plugin will generate a special XML sitemap which will help search engines to better index your blog.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Arne\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"micropat on \"AddToAny: Share/Bookmark/Email Buttons\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"http://wordpress.org/extend/plugins/add-to-any/#post-498\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 17 Mar 2007 23:08:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"498@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:148:\"Help people share, bookmark, and email your posts &#38; pages using any service, such as Facebook, Twitter, Google, StumbleUpon, Digg and many more.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"micropat\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"nicashmu on \"Post video players, slideshow albums, photo galleries and music / podcast playlist\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"http://wordpress.org/extend/plugins/video-playlist-and-gallery-plugin/#post-23415\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 04 Jan 2011 16:16:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"23415@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"Post your videos, photo galleries/flash slideshows easily and in seconds.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"nicashmu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"flash gallery on \"1 Flash Gallery\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"http://wordpress.org/extend/plugins/1-flash-gallery/#post-24163\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 03 Feb 2011 14:02:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"24163@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:146:\"1 Flash Gallery is a Photo Gallery with slideshow function, many skins and powerfull admin to manage your image gallery without any program skills\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"flash gallery\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"casibus on \"ourSTATS Widget\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://wordpress.org/extend/plugins/ourstatsde-widget/#post-18282\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 29 May 2010 14:16:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"18282@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"create a widget for the ourstats.de counter service\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"casibus\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"joostdevalk on \"Google Analytics for WordPress\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"http://wordpress.org/extend/plugins/google-analytics-for-wordpress/#post-2316\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Sep 2007 12:15:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"2316@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:145:\"Track your WordPress site easily and with lots of metadata: views per author &#38; category, automatic tracking of outbound clicks and pageviews.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"joostdevalk\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"_mjk_ on \"AddThis featuring Sharing Buttons / Facebook Like / Tweet Button\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"http://wordpress.org/extend/plugins/addthis/#post-8124\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 17 Dec 2008 16:03:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"8124@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:123:\"The AddThis Social Bookmarking Widget allows any visitor to bookmark and share your site easily with many popular services.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"_mjk_\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:52:\"http://wordpress.org/extend/plugins/rss/view/popular\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 23 Jun 2011 18:25:28 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:19:\"2007-03-30 20:08:18\";s:14:\"content-length\";s:4:\"8087\";s:4:\"x-nc\";s:11:\"HIT luv 139\";}s:5:\"build\";s:14:\"20090627192103\";}','no'),(639,0,'_transient_timeout_feed_mod_a5420c83891a9c88ad2a4f04584a5efc','1308896764','no'),(640,0,'_transient_feed_867bd5c64f85878d03a060509cd2f92c','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n	\n	\n	\n	\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Weblog Tools Collection: WordPress.org Passwords Reset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=10172\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/ibwz2aG09YE/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1461:\"<p>The <a href=\"http://wordpress.org/\">WordPress</a> team <a href=\"http://wordpress.org/news/2011/06/passwords-reset/\">noticed some suspicious changes</a> made to the <a href=\"http://wordpress.org/extend/plugins/addthis/\">AddThis</a>, <a href=\"http://wordpress.org/extend/plugins/wptouch/\">WPtouch</a>, and <a href=\"http://wordpress.org/extend/plugins/w3-total-cache/\">W3 Total Cache</a> plugins in <a href=\"http://wordpress.org/extend/plugins/\">the official plugin directory</a>. The three plugins have been updated to remove the suspicious code, and all account passwords on WordPress.org have been reset as a precautionary measure. If you have an account on WordPress.org, you&#8217;ll need to <a href=\"http://wordpress.org/support/bb-login.php\">reset your password</a>.</p>\n<p>To avoid future problems, or at the very least notice such activity sooner, the WordPress team <a href=\"http://wpdevel.wordpress.com/2011/06/22/plugin-committers-now-receive-svn-notify-emails-with/\">has enabled notification emails</a> for all plugin developers for whenever their plugin files are changed.</p>\n<p>If you have a WordPress.com account or a self-hosted WordPress blog, this reset did not affect your own user account, but you should probably immediately upgrade your copies of AddThis, WPtouch, and W3 Total Cache, if you&#8217;re using them of course.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/ibwz2aG09YE\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 23 Jun 2011 13:00:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"James Huff\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"WordPress.tv: Ariz Jacinto Strategies for Using and Integrating WordPress CMS to PHP MVC Frameworks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://wordpress.tv/?p=6084\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:117:\"http://wordpress.tv/2011/06/22/ariz-jacinto-strategies-for-using-and-integrating-wordpress-cms-to-php-mvc-frameworks/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1839:\"<div id=\"v-urpXT8Ys\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/6084/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/6084/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/6084/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/6084/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/wptv.wordpress.com/6084/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/wptv.wordpress.com/6084/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/wptv.wordpress.com/6084/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/wptv.wordpress.com/6084/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/6084/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/6084/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/6084/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/6084/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/6084/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/6084/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=6084&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2011/06/22/ariz-jacinto-strategies-for-using-and-integrating-wordpress-cms-to-php-mvc-frameworks/\"><img alt=\"Ariz Jacinto CMS Doctor\" src=\"http://videos.videopress.com/urpXT8Ys/ariz-jacinto-cms-doctor_scruberthumbnail_1.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 22 Jun 2011 21:12:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"blazestreaming\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"WordPress.tv: Bob Dunn How to Attract More Readers with a User-friendly WordPress Site\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://wordpress.tv/?p=6088\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"http://wordpress.tv/2011/06/22/bob-dunn-how-to-attract-more-readers-with-a-user-friendly-wordpress-site/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1852:\"<div id=\"v-Vpv0hZlp\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/6088/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/6088/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/6088/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/6088/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/wptv.wordpress.com/6088/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/wptv.wordpress.com/6088/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/wptv.wordpress.com/6088/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/wptv.wordpress.com/6088/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/6088/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/6088/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/6088/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/6088/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/6088/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/6088/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=6088&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2011/06/22/bob-dunn-how-to-attract-more-readers-with-a-user-friendly-wordpress-site/\"><img alt=\"Bob Dunn How To Attract More Readers\" src=\"http://videos.videopress.com/Vpv0hZlp/bob-dunn-how-to-attract-more-readers_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 22 Jun 2011 20:53:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"blazestreaming\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WordPress.tv: Bret Bernhoft Installing and Using Facebook Domain Insights\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://wordpress.tv/?p=6105\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"http://wordpress.tv/2011/06/22/bret-bernhoft-installing-and-using-facebook-domain-insights/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1885:\"<div id=\"v-Phr2O9wZ\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/6105/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/6105/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/6105/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/6105/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/wptv.wordpress.com/6105/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/wptv.wordpress.com/6105/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/wptv.wordpress.com/6105/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/wptv.wordpress.com/6105/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/6105/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/6105/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/6105/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/6105/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/6105/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/6105/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=6105&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2011/06/22/bret-bernhoft-installing-and-using-facebook-domain-insights/\"><img alt=\"Bret Bernhoft Installing and Using Facebook Domain Insights\" src=\"http://videos.videopress.com/Phr2O9wZ/bret-bernhoft-installing-and-using-facebook-domain-insights_scruberthumbnail_2.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 22 Jun 2011 20:47:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"blazestreaming\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Matt: ExpanDrive 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=38320\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"http://ma.tt/2011/06/expandrive-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:401:\"<p>ExpanDrive, a program I&#8217;ve used for years, allows you to mount FTP, SFTP, or S3 accounts as local drives on your computer on Mac or Windows. <a href=\"http://blog.expandrive.com/2011/06/21/expandrive-2-for-windows-ftp-and-s3-blazing-fast-sftp/\">They just released their new Windows version</a>, and it&#8217;s fast and slick. They support key authentication, which is my must-have feature.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 22 Jun 2011 13:12:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Weblog Tools Collection: WordPress Theme Releases for 6/22\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=10165\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/D9GIo78Jvh8/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1257:\"<p><img class=\"alignnone size-full wp-image-10166\" title=\"brightnews\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/06/brightnews.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://emptynestthemes.emptynestheritage.com/?p=1502\"><strong>Bright News</strong></a> is a simple, bright, and colorful theme that&#8217;s great for blogs, news sites and/or newsletters.</p>\n<p><img class=\"alignnone size-full wp-image-10167\" title=\"minimalxpert\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/06/minimalxpert.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://www.wpexplorer.com/minimal-xpert.html\"><strong>Minimal Xpert</strong></a> is a very clean and professional theme that is perfect for both business and blogging use.</p>\n<p><img class=\"alignnone size-full wp-image-10168\" title=\"trending\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/06/trending.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://wordpress.org/extend/themes/trending\"><strong>Trending</strong></a> is a theme for bloggers that uses multiple nav menus, several sidebars, and custom post layouts.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/D9GIo78Jvh8\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 22 Jun 2011 13:00:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"James Huff\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Dev Blog: Passwords Reset\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=1908\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"http://wordpress.org/news/2011/06/passwords-reset/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1289:\"<p>Earlier today the WordPress team noticed suspicious commits to several popular plugins (AddThis, WPtouch, and W3 Total Cache) containing cleverly disguised backdoors. We determined the commits were not from the authors, rolled them back, pushed updates to the plugins, and shut down access to the plugin repository while we looked for anything else unsavory.</p>\n<p>We&#8217;re still investigating what happened, but as a prophylactic measure we&#8217;ve decided to force-reset all passwords on WordPress.org. To use the forums, trac, or commit to a plugin or theme, you&#8217;ll need to <a href=\"http://wordpress.org/support/bb-login.php\">reset your password to a new one</a>. (Same for bbPress.org and BuddyPress.org.)</p>\n<p>As a user, make sure to never use the same password for two different services, and we encourage you not to reset your password to be the same as your old one.</p>\n<p>Second, if you use <a href=\"http://wordpress.org/extend/plugins/addthis/\">AddThis</a>, <a href=\"http://wordpress.org/extend/plugins/wptouch/\">WPtouch</a>, or <a href=\"http://wordpress.org/extend/plugins/w3-total-cache/\">W3 Total Cache</a> and there&#8217;s a possibility you could have updated in the past day, make sure to visit your updates page and upgrade each to the latest version.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 21 Jun 2011 23:57:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"Matt: Pharrell Williams at Home in Miami\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=38318\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"http://ma.tt/2011/06/pharrell-williams-at-home-in-miami/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:210:\"<p>The Selby goes with <a href=\"http://theselby.com/5_25_10_PharrellWilliamsEd/\">Pharrell Williams at Home in Miami</a>. Explore the rest of the site, this is actually one of the less-interesting galleries.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 21 Jun 2011 23:47:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Matt: Alec Baldwin on WP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=38316\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"http://ma.tt/2011/06/alec-baldwin-on-wp/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:337:\"<p>Alec Baldwin, my favorite character on 30 Rock, <a href=\"http://www.alecbaldwin.com/\">has a great-looking WordPress-powered site</a>. It was also built by <a href=\"http://www.alleyinteractive.com/\">Alley Interactive</a> who did the Observer site I <a href=\"http://ma.tt/2011/06/new-york-observer/\">blogged about the other day</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 21 Jun 2011 16:22:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"Weblog Tools Collection: What WordPress 3.2 items are you looking forward to?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=10162\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/qqnOY-Fc3y0/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1300:\"<p>With <a href=\"http://weblogtoolscollection.com/archives/2011/06/15/wordpress-3-2-rc1-released/\">the release of RC 1</a>, <a href=\"http://wordpress.org/\">WordPress</a> 3.2 is fast approaching completion. Besides <a href=\"http://wordpress.org/news/2011/05/wordpress-3-2-beta-1/\">some notable changes</a>, WordPress 3.2 has actually received a total of <a href=\"http://core.trac.wordpress.org/milestone/3.2\">over 370 changes</a> to date.</p>\n<p>Not only will this version of WordPress be dropping support for <a href=\"http://weblogtoolscollection.com/archives/2011/03/23/do-you-still-use-internet-explorer-6/\">Internet Explorer 6</a> and requiring a minimum of PHP 5.2.4 and MySQL 5, but it will be introducing <a href=\"http://weblogtoolscollection.com/archives/2011/05/04/distraction-free-writing-is-coming-to-wordpress/\">distraction free writing</a>, <a href=\"http://weblogtoolscollection.com/archives/2011/05/06/wordpress-3-2-new-dashboard-and-twenty-eleven/\">a new Dashboard</a>, <a href=\"http://weblogtoolscollection.com/archives/2011/06/07/new-wordpress-default-theme-unveiled/\">Twenty Eleven</a>, and an expanded Admin Bar.</p>\n<p>Which feature are you looking forward to the most?</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/qqnOY-Fc3y0\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 21 Jun 2011 13:00:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"James Huff\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"Matt: Gopher dead, blogging lives\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=38314\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"http://ma.tt/2011/06/gopher-dead-blogging-lives/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:178:\"<p><a href=\"http://inessential.com/2011/06/15/gopher_dead_blogging_lives\">Gopher dead, blogging lives</a>. &#8220;If blogs are dead, what are we reading in Instapaper?&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 20 Jun 2011 23:57:15 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Matt: Four Cool WP .gov Sites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=38312\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"http://ma.tt/2011/06/four-cool-wp-gov-sites/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1205:\"<p>I was in Washington DC last week at the <a href=\"http://opengovdc.com/\">OpenGovDC conference</a> where I participated on a panel about design. The organizers and many of the speakers were pretty Drupal-focused, but I did get to meet some folks and learn about the ever-growing use of WordPress inside the Beltway. Here are four:</p>\n<ol>\n<li><a href=\"http://www.consumerfinance.gov/\">CFPB, Consumer Financial Protection Bureau</a>. This is the best-looking of the four, and 100% WordPress.</li>\n<li><a href=\"http://www.mo.gov/\">MO.gov, Missouri State</a>. Is there a LESS.gov? <img src=\"http://s.ma.tt/blog/wp-includes/images/smilies/icon_wink.gif\" alt=\";)\" class=\"wp-smiley\" />  The show-me state has a solid WP-as-CMS going here.</li>\n<li><a href=\"http://www.compliance.gov/\">Office of Compliance</a>. As exciting as it sounds.</li>\n<li><a href=\"http://www.nccs.gov/\">NCCS.gov, National Center for Computational Sciences</a>. Website is okay, but center is super-cool: they provide super-computing (tens of thousands of processors) for open scientific research.</li>\n</ol>\n<p>Any other favorites? Particularly well-designed ones like <a href=\"http://consumerfinance.gov/\">consumerfinance.gov</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 20 Jun 2011 19:03:28 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"Publisher Blog: Bangor Daily News: A complete publishing system on WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"http://publisherblog.automattic.com/?p=1575\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"http://publisherblog.automattic.com/2011/06/20/bangor-daily-news-a-complete-publishing-system-on-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8778:\"<p>Check out the inspiring and detailed story about <a href=\"http://www.mediabistro.com/10000words/how-to-run-a-news-site-and-newspaper-using-wordpress-and-google-docs_b4781\">Bangor Daily News switching to a publishing system powered by WordPress and Google Docs</a>, on Media Bistro. There&#8217;s also a screencast which <a href=\"http://www.screenr.com/8J8s\">outlines their new editorial workflow</a> and a list of all the plugins you can install to run your own news site with WordPress (emphasis ours):</p>\n<blockquote><p>The Bangor Daily News announced this week that it completed its full transition to open source blogging software, WordPress. And get this: The workflow integrates seamlessly with InDesign, meaning the paper now has one content management system for both its web and print operations. And if you’re auspicious enough, you can do it too — he’s <strong>open-sourced all the code</strong>!</p>\n<p>Rather than having to pay a licensing fee to a company that runs your content management system, what The BDN has set up is essentially free to run. Of course, there were upfront costs involved with paying freelancers to help write the plugins, and each month the website has to pay hosting fees, but the rest of the tools they use are free for everyone. WordPress is open source software that anyone can download and use. Google Docs is also a free product if your organization is small enough. [<em><a href=\"http://www.mediabistro.com/10000words/how-to-run-a-news-site-and-newspaper-using-wordpress-and-google-docs_b4781\">Media Bistro</a></em>]</p></blockquote>\n<p>We also had a chance to speak with William Davis, part of the <a href=\"http://dev.bangordailynews.com/2011/06/14/credits/\">Bangor Daily News team who led the integration</a> who told us more about their decision to use WordPress:</p>\n<p>&#8220;We looked at several solutions, including proprietary hosted solutions, but we quickly decided they wouldn&#8217;t offer the flexibility we needed. We didn&#8217;t want to have to wait around for a corporation to develop any features we needed. We wanted to be able to get into the guts of our website if we needed to,&#8221; Davis said. &#8220;We&#8217;re growing quickly online, so we wanted a platform that allowed us to develop and deploy easily and with speed.&#8221;</p>\n<p>Through a series of plugins they developed specifically for their news site, and utilizing a few from the WordPress community, Bangor Daily News extended WordPress to do exactly what they needed it to do.</p>\n<p>&#8220;To us, that&#8217;s the beauty of WordPress: It&#8217;s more easily extendable than any other CMS. In nine months I haven&#8217;t hacked core once except to apply patches,&#8221; said Davis.</p>\n<p>Some of those plugins include, in Davis&#8217; words:</p>\n<ul>\n<li>the <a href=\"http://wordpress.org/extend/plugins/zoninator/\" target=\"_blank\">Zoninator</a> (written by now-<a title=\"VentureBeat now on WordPress.com VIP\" href=\"http://automattic.com/about\">Automattician</a> Mo Jangda) that allows us to order posts in specific zones, such as the home page, instead of displaying them in reverse-chronological order. It&#8217;s a must-have for any publisher on WordPress and we&#8217;re very pleased he released it. I believe it will be available for WordPress.com VIP members soon.</li>\n<li>We use custom post types for quite a bit, including to power our <a href=\"http://bangordailynews.com/contact/\" target=\"_blank\">contact pages</a>, our <a href=\"http://bangordailynews.com/events/\" target=\"_blank\">events pages</a>, our <a href=\"http://bangordailynews.com/?post_type=slideshow\" target=\"_blank\">photo galleries</a>, our <a href=\"http://bangordailynews.com/?post_type=ugc\" target=\"_blank\">our user-contributed content</a> and our candidate pages for the election. Each of those are a separate plugin, and all will be open-sourced eventually.</li>\n<li>We use <a href=\"http://wordpress.org/extend/plugins/terms-to-links/\" target=\"_blank\">Terms to Links</a>, which I built after being inspired by someone else&#8217;s plugins, to <a href=\"http://bangordailynews.com/2011/06/07/politics/lepage-vetoes-foreign-loggers-bill/\" target=\"_blank\">automatically link</a> people, organizations and places to drive readers deeper into the site. Each of those are custom taxonomies.</li>\n<li>We use <a href=\"http://wordpress.org/extend/plugins/edit-flow/\" target=\"_blank\">Edit Flow</a>, a CoPress project, to handle copy flow once it gets into WordPress. It&#8217;s another must-have.</li>\n<li>We use <a href=\"http://wordpress.org/extend/plugins/media-credit/\" target=\"_blank\">Media Credit</a> to handle attribution for images.</li>\n<li>We use Automattic&#8217;s own <a href=\"http://polldaddy.com/\" target=\"_blank\">PollDaddy</a>, with a custom plugin on top of theirs, to handle <a href=\"http://bangordailynews.com/polls/\" target=\"_blank\">polls</a>.</li>\n</ul>\n<p>The changes to Bangor Daily News&#8217; editorial workflow have been immediate and dramatic, but they have also seen an increase in productivity regarding their development cycle, and their site has benefited with an increase in traffic, too.</p>\n<p>&#8220;We started rolling things out in earnest in January, and the change has been dramatic. With one workflow with WordPress at the center we&#8217;ve cut down handling times for articles dramatically — we&#8217;re now able to get the news out faster than ever before. We&#8217;ve also seen a nice jump in search engine traffic thanks to more advanced URLs. Our build times are now down dramatically, as well — we can develop or patch features as quickly as they need to be addressed. The speed at which we break news requires a nimble API to develop with, and we&#8217;ve already been able to put it to the test, to great results.&#8221;</p>\n<p>They were also able to take advantage of <a href=\"http://codex.wordpress.org/WordPress_API%27s\">WordPress&#8217; APIs</a> to integrate everything and even publish back to the print version in InDesign, creating a truly seamless publishing system.</p>\n<p>&#8220;I&#8217;m proud of how deeply we&#8217;ve integrated WordPress into everything we do. Our stories start in Google Docs, where our reporters write and our editors edit. Those are seamlessly and automatically moved to WordPress when they&#8217;re ready to be published — no more copying and pasting. We also use <a href=\"https://github.com/bangordailynews/WordPress-xmlrpc-extenders\" target=\"_blank\">XML-RPC</a> to easily find and bring content onto the print page in InDesign. We custom-built an InDesign plugin to accomplish that.&#8221;</p>\n<p><a href=\"http://bangordailynews.com/\"><img class=\"aligncenter size-full wp-image-1577\" title=\"bangornews\" src=\"http://wordpresspublishers.files.wordpress.com/2011/06/bangornews.jpg?w=640&h=516\" alt=\"\" width=\"640\" height=\"516\" /></a><br />\nVisit <a href=\"http://bangordailynews.com/\">Bangor Daily News</a></p>\n<p><em></em><strong><em><a href=\"http://get.wp.com/\"><strong>Want WordPress for your site? Get.WP.com</strong></a></em></strong></p>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wordpresspublishers.wordpress.com/1575/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wordpresspublishers.wordpress.com/1575/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/wordpresspublishers.wordpress.com/1575/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/wordpresspublishers.wordpress.com/1575/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/wordpresspublishers.wordpress.com/1575/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/wordpresspublishers.wordpress.com/1575/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/wordpresspublishers.wordpress.com/1575/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/wordpresspublishers.wordpress.com/1575/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/wordpresspublishers.wordpress.com/1575/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/wordpresspublishers.wordpress.com/1575/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/wordpresspublishers.wordpress.com/1575/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/wordpresspublishers.wordpress.com/1575/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/wordpresspublishers.wordpress.com/1575/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/wordpresspublishers.wordpress.com/1575/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=publisherblog.automattic.com&blog=1470857&post=1575&subd=wordpresspublishers&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 20 Jun 2011 16:29:05 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Sara Rosso\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Weblog Tools Collection: WordPress Plugin Releases for 6/20\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=10160\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/52JfEZE8aNw/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1440:\"<h3>New plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/crawlable-facebook-comments/\"><strong>Crawlable Facebook Comments</strong></a> retrieves Facebook comments (with authors, dates and replies) and makes them visible in your source code.</p>\n<p><a href=\"http://ottopress.com/2011/howto-html5-video-that-works-almost-everywhere/\"><strong>HTML5 Video Shortcode</strong></a> allows you to quickly and easily add HTML5 Video tags as a shortcode.</p>\n<p><a href=\"http://tentblogger.com/rss-reminder/\"><strong>TentBlogger RSS Reminder</strong></a> is a simple way of capturing commenters and calling them to subscribe to your feed.</p>\n<h3>Updated plugins</h3>\n<p><a href=\"http://www.fastsecurecontactform.com/\"><strong>Fast Secure Contact Form</strong></a> lets your visitors send you a quick e-mail message and blocks all common spammer tactics. Additionally, the plugin has a multi-form feature, optional extra fields, and an option to redirect visitors to any URL after the message is sent.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/si-captcha-for-wordpress/\"><strong>SI CAPTCHA Anti-Spam</strong></a> adds CAPTCHA anti-spam methods to WordPress forms for comments, registration, lost password, login, or all. In order to post comments or register, users will have to type in the code shown on the image.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/52JfEZE8aNw\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 20 Jun 2011 13:00:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"James Huff\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"Matt: Newspaper with WordPress And Google Docs\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=38310\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://ma.tt/2011/06/newspaper-with-wordpress-and-google-docs/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:390:\"<p><a href=\"http://www.mediabistro.com/10000words/how-to-run-a-news-site-and-newspaper-using-wordpress-and-google-docs_b4781\">How To Run A News Site And Newspaper Using WordPress And Google Docs</a>. This is why I love saying &#8220;scripting is the new literacy.&#8221; A bit of scripting glue can tie together Big Projects like WP and Google Docs to create something completely novel.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 19 Jun 2011 14:53:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"Matt: Achievement Design 101\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=38308\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:44:\"http://ma.tt/2011/06/achievement-design-101/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:261:\"<p><a href=\"http://www.gamasutra.com/blogs/GregMcClanahan/20091202/3709/Achievement_Design_101.php\">Gamasutra: Greg McClanahan&#8217;s Blog &#8211; Achievement Design 101</a>. Long article, but worth getting through. I&#8217;ve had it in Instapaper forever.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 19 Jun 2011 06:29:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Weblog Tools Collection: WordPress Theme Releases for 6/18\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=10153\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/iAVj83SviLc/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1223:\"<p><img class=\"alignnone size-full wp-image-10154\" title=\"blueline\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/06/blueline.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://wordpress.org/extend/themes/blueline\"><strong>Blueline</strong></a> is a two-column, fixed-width, and conservative theme.</p>\n<p><img class=\"alignnone size-full wp-image-10155\" title=\"neuro\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/06/neuro.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://wordpress.org/extend/themes/neuro\"><strong>Neuro</strong></a> is a clean and easily customizable HTML5 design, featuring customizable theme options, the Neuro slider, dynamic header for custom logo, and much more.</p>\n<p><img class=\"alignnone size-full wp-image-10157\" title=\"vintagespring\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/06/vintagespring1.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://emptynestthemes.emptynestheritage.com/?p=1477\"><strong>Vintage Spring</strong></a> is a very subtle, pretty theme with a vintage floral background.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/iAVj83SviLc\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 18 Jun 2011 13:00:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"James Huff\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"Matt: New York Observer\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=38305\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"http://ma.tt/2011/06/new-york-observer/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:197:\"<p>WordPress Publisher Blog: <a href=\"http://publisherblog.automattic.com/2011/06/17/ny-observer/\">Influential Weekly The New York Observer Migrates from Drupal to WordPress</a>. <em>Cool!</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 18 Jun 2011 10:44:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"Matt: Every 60 Seconds\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=38303\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"http://ma.tt/2011/06/every-60-seconds/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:264:\"<p><a href=\"http://www.adverblog.com/2011/06/15/60-seconds-on-the-web-infographic/60seconds/\">Every 60 seconds on the web</a> there are 50+ WordPress downloads and 60+ new blogs created. <cite>Hat tip: <a href=\"http://andrewnacin.com/\">Andrew Nacin</a>.</cite></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Jun 2011 17:32:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"Publisher Blog: Influential Weekly The New York Observer Migrates from Drupal to WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"http://publisherblog.automattic.com/?p=1553\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://publisherblog.automattic.com/2011/06/17/ny-observer/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2737:\"<p>Last week<em> The New York Observer</em> launched a redesign of <a href=\"http://observer.com\">Observer.com</a>, and switched from Drupal to <a href=\"http://wordpress.org\">WordPress</a> in the process.</p>\n<p>The site&#8217;s redesign &#8220;focused on cleaner presentation that would accommodate more breaking news and higher volume posting&#8221;, says Elizabeth Spiers, the paper&#8217;s editor-in-chief. [<a href=\"http://news.yahoo.com/s/yblog_thecutline/20110607/bs_yblog_thecutline/new-york-observer-to-emphasize-long-form-scoops-with-new-web-design\">via</a>]</p>\n<p><a href=\"http://observer.com\"><img class=\"aligncenter size-full wp-image-1554\" title=\"NY Observer\" src=\"http://wordpresspublishers.files.wordpress.com/2011/06/screen-shot-2011-06-16-at-2-25-37-pm.png?w=640&h=474\" alt=\"\" width=\"640\" height=\"474\" /></a></p>\n<p>[Visit <a href=\"http://observer.com\">Observer.com</a>]</p>\n<p><em><a href=\"http://get.wp.com/\"><strong>Want WordPress for your site? Get.WP.com</strong></a></em></p>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wordpresspublishers.wordpress.com/1553/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wordpresspublishers.wordpress.com/1553/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/wordpresspublishers.wordpress.com/1553/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/wordpresspublishers.wordpress.com/1553/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/wordpresspublishers.wordpress.com/1553/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/wordpresspublishers.wordpress.com/1553/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/wordpresspublishers.wordpress.com/1553/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/wordpresspublishers.wordpress.com/1553/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/wordpresspublishers.wordpress.com/1553/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/wordpresspublishers.wordpress.com/1553/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/wordpresspublishers.wordpress.com/1553/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/wordpresspublishers.wordpress.com/1553/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/wordpresspublishers.wordpress.com/1553/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/wordpresspublishers.wordpress.com/1553/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=publisherblog.automattic.com&blog=1470857&post=1553&subd=wordpresspublishers&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Jun 2011 14:33:08 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Paul Maiorana\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"Publisher Blog: VentureBeat now on WordPress.com VIP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"http://publisherblog.automattic.com/?p=1537\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"http://publisherblog.automattic.com/2011/06/16/venturebeat-wordpresscom-vip/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2821:\"<p>At the end of last week <a href=\"http://venturebeat.com/\">VentureBeat.com</a> migrated to <a href=\"http://vip.wordpress.com/hosting/\">WordPress.com VIP hosting</a></p>\n<p>Started by award-winning journalist <a href=\"http://venturebeat.com/about/\">Matt Marshall</a> in 2006, VentureBeat has long been a <a href=\"http://wordpress.org/\">WordPress</a> showcase site. Today, nearly 30,000 articles have been published on VentureBeat, and the archives dates back to August, 2004. There is a lot of our tech industry history laid out in these articles, and insights throughout.</p>\n<p><a href=\"http://venturebeat.com/\"><img class=\"aligncenter size-full wp-image-1565\" title=\"VentureBeat.com\" src=\"http://wordpresspublishers.files.wordpress.com/2011/06/veaturebeat.jpg?w=600&h=572\" alt=\"Screenshot of VentureBeat.com Home page\" width=\"600\" height=\"572\" /></a></p>\n<p>While monitoring the import to WordPress.com, it was cool to see the team growth and the breadth of topics covered increase tenfold from its inception.</p>\n<p>[Visit <a href=\"http://venturebeat.com/\">VentureBeat.com</a>]</p>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wordpresspublishers.wordpress.com/1537/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wordpresspublishers.wordpress.com/1537/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/wordpresspublishers.wordpress.com/1537/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/wordpresspublishers.wordpress.com/1537/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/wordpresspublishers.wordpress.com/1537/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/wordpresspublishers.wordpress.com/1537/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/wordpresspublishers.wordpress.com/1537/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/wordpresspublishers.wordpress.com/1537/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/wordpresspublishers.wordpress.com/1537/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/wordpresspublishers.wordpress.com/1537/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/wordpresspublishers.wordpress.com/1537/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/wordpresspublishers.wordpress.com/1537/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/wordpresspublishers.wordpress.com/1537/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/wordpresspublishers.wordpress.com/1537/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=publisherblog.automattic.com&blog=1470857&post=1537&subd=wordpresspublishers&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 16 Jun 2011 23:43:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Lloyd Budd\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"Alex King: Use $content_width to Set Width of oEmbeds in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://alexking.org/?p=5910\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"http://alexking.org/blog/2011/06/16/use-content_width-to-set-width-of-oembeds-in-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:876:\"<p>If you want resulting oEmbed code to scale to a specific size (width) in WordPress, you can do this really easily by setting the <code>$content_width</code> global variable before calling your oEmbed processing.</p>\n<p>Example:</p>\n<div class=\"code\">\n<pre>global $wp_embed, $content_width;\n$content_width = \'600\'; // set to desired width\n$string_with_embedded_content = $wp_embed->autoembed($string_with_oembed_url);</pre>\n</div>\n<p>I only recently ran across this feature (just recently had the need for it), though it&#8217;s been around for <a href=\"http://wordpress.org/extend/ideas/topic/oembed-to-configure-width-and-height-of-video\" rel=\"external\">at least a year</a>. In talking with some other devs, it seems to not be a widely known feature &#8211; hopefully this helps.</p>\n<img src=\"http://alexking.org/wp/?ak_action=api_record_view&id=5910&type=feed\" alt=\"\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 16 Jun 2011 18:57:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Alex\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Weblog Tools Collection: WordPress Plugin Releases for 6/16\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=10151\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/0JM90aTdb58/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1128:\"<h3>New plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/delete-custom-fields/\"><strong>Delete Custom Fields</strong></a> will let you delete every instance of a custom field from your site.</p>\n<p><a href=\"http://godropship.com/OfferMatch.html\"><strong>OfferMatch</strong></a> shows offers or ads related to your posts.</p>\n<p><a href=\"http://www.toppa.com/simpletest-for-wordpress/\"><strong>SimpleTest for WordPress</strong></a> is a tool for WordPress plugin developers who want to create and run automated tests for their plugins.</p>\n<p><a href=\"http://www.toppa.com/toppa-plugin-libraries-for-wordpress/\"><strong>Toppa Plugin Libraries for WordPress</strong></a> includes several utilities for plugin developers. They facilitate the use of Agile coding techniques for developing WordPress plugins.</p>\n<h3>Updated plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\"><strong>WordPress Beta Tester</strong></a> allows you to easily upgrade to WordPress Beta releases.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/0JM90aTdb58\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 16 Jun 2011 13:00:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"James Huff\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"Weblog Tools Collection: WordPress 3.2 RC1 Released\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=10147\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/gJZWiWEiR7I/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1254:\"<p><a href=\"http://wordpress.org/\">WordPress</a> 3.2 RC1 <a href=\"http://wordpress.org/news/2011/06/wordpress-3-2-release-candidate/\">has been released</a>. The release candidate stage is that special stage after beta which pretty much amounts to, &#8220;We think we&#8217;re done,&#8221; so now is the time for the community to really dig in, find bugs, and share some honest feedback.</p>\n<p><a href=\"http://core.trac.wordpress.org/milestone/3.2\">Over 360 tickets</a> have been closed, so <a href=\"http://wordpress.org/news/2011/05/wordpress-3-2-beta-1/\">quite a bit</a> has changed since WordPress 3.1, which means that now is definitely the time for plugin and theme developers to test their products before WordPress 3.2 is officially released.</p>\n<p>If you find any bugs, please check <a href=\"http://core.trac.wordpress.org/report/5\">the known issues</a> first, then <a href=\"http://codex.wordpress.org/Reporting_Bugs\">file a bug report</a>. If you need any help, please feel free to contact <a href=\"http://wordpress.org/support/forum/alphabeta\">the WordPress.org Support Forums</a>.</p>\n<p>What do you think of WordPress 3.2 so far?</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/gJZWiWEiR7I\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 15 Jun 2011 13:00:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"James Huff\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Weblog Tools Collection: WordPress Theme Releases for 6/14\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=10139\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/Ae8d6HG2OVM/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1314:\"<p><img class=\"alignnone size-full wp-image-10140\" title=\"coolorange\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/06/coolorange.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://www.jasong-designs.com/2011/06/12/cool-orange/\"><strong>Cool Orange</strong></a> is a <a href=\"http://wordpress.org/extend/themes/sandbox\">Sandbox</a> child theme with a cool, muted blue vs. bright orange color scheme.</p>\n<p><img class=\"alignnone size-full wp-image-10141\" title=\"mygrid2\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/06/mygrid2.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://wordpress.org/extend/themes/mygrid2\"><strong>MYgRID2</strong></a> is a minimalistic WordPress theme in grey-silver colors with fresh look, fancy css3 and jQurey effects, widget ready area, automatic post thumbnail, and more.</p>\n<p><img class=\"alignnone size-full wp-image-10142\" title=\"vibrato\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/06/vibrato.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://emptynestthemes.emptynestheritage.com/?p=1449\"><strong>Vibrato</strong></a> is a bright, colorful, cheerful, and loud two column theme.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/Ae8d6HG2OVM\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 14 Jun 2011 13:00:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"James Huff\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"Dev Blog: WordPress 3.2 Release Candidate\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=1890\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wordpress.org/news/2011/06/wordpress-3-2-release-candidate/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2296:\"<p>The first release candidate (RC1) for WordPress 3.2 is now available.</p>\n<p>An RC comes after the beta period and before final release. We think we’re done, but with tens of millions of users, a variety of configurations, and thousands of plugins, it’s possible we’ve missed something. So if you haven’t tested WordPress 3.2 yet, now is the time! Please though, not on your live site unless you’re extra adventurous.</p>\n<p>Things to keep in mind:</p>\n<ul>\n<li>With <a href=\"http://core.trac.wordpress.org/milestone/3.2\">more than 350 tickets closed</a>, there are plenty of changes. Plugin and theme authors, <strong>please test your plugins and themes now</strong>, so that if there is a compatibility issue, we can figure it out before the final release.</li>\n<li><strong>Users</strong> are also encouraged to test things out. If you find problems, let your plugin/theme authors know so they can figure out the cause.</li>\n<li>Twenty Eleven isn&#8217;t quite at the release candidate stage. <a href=\"http://cheezburger.com/Mmmbop/lolz/View/4683101952\">Contents may settle</a>.</li>\n<li>If any known issues crop up, you&#8217;ll be able to <a href=\"http://core.trac.wordpress.org/report/5\">find them here</a>.</li>\n</ul>\n<p>If you are testing the release candidate and think you&#8217;ve found a bug, there are a few ways to let us know:</p>\n<ul>\n<li>Post it to the <a href=\"http://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area in the support forums</a> or <a href=\"http://lists.automattic.com/mailman/listinfo/wp-testers\">wp-testers</a></li>\n<li>Join the development IRC channel and tell us live at irc.freenode.net #wordpress-dev</li>\n<li>File a bug ticket on the <a href=\"http://core.trac.wordpress.org/\">WordPress Trac</a></li>\n</ul>\n<p>To test WordPress 3.2, try the <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">WordPress Beta Tester plugin</a> (you&#8217;ll want &#8220;bleeding edge nightlies&#8221;). Or you can <a href=\"http://wordpress.org/wordpress-3.2-RC1.zip\">download the release candidate here</a> (zip).</p>\n<p>Happy testing!</p>\n<p><em>If you&#8217;d like to know which levers to pull in your testing, <a href=\"http://wordpress.org/news/2011/05/wordpress-3-2-beta-1/\">check out a list of features</a> in our Beta 1 post.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 14 Jun 2011 04:28:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Andrew Nacin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"Publisher Blog: LGBT Pride on WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"http://publisherblog.automattic.com/?p=1532\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"http://publisherblog.automattic.com/2011/06/13/lgbt-pride-on-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3114:\"<p>This past weekend, there were many celebrations around the world for Gay and Lesbian Pride Month.</p>\n<p>We can&#8217;t help but feel a little extra pride that these GLBT sites are using WordPress:</p>\n<ul>\n<li><a href=\"http://glaadblog.org/\">GLAAD</a></li>\n<li><a href=\"http://www.sfpride.org/blog/\">San Francisco Pride</a></li>\n<li><a href=\"http://www.reacttoyournews.org/\">NLGJA</a></li>\n<li><a href=\"http://www.newnownext.com/\">NewNowNext</a></li>\n<li><a href=\"http://www.bostonpride.org/\">Boston Pride</a></li>\n<li><a href=\"http://lgbtjewishheroes.org/\">LGBT Jewish Heroes</a></li>\n<li><a href=\"http://www.havana.org.il/\">Havana.org.il</a> (in Hebrew)</li>\n<li><a href=\"http://www.pridesofia.org/\">Sofia Pride</a> (in Bulgarian)</li>\n<li><a href=\"https://magicm.wordpress.com/\">Cologne CSD</a> (in German)</li>\n</ul>\n<p><strong>Know about another GLBT site that&#8217;s running on WordPress? Let us know in the comments!</strong></p>\n<p><a href=\"http://www.bostonpride.org/\"><img class=\"aligncenter size-full wp-image-1533\" title=\"Boston Pride (20110613)\" src=\"http://wordpresspublishers.files.wordpress.com/2011/06/boston-pride-20110613.jpg?w=640&h=509\" alt=\"\" width=\"640\" height=\"509\" /></a></p>\n<p><strong><em></em></strong><strong><strong><em><a href=\"http://get.wp.com/\"><strong>Want WordPress for your site? Get.WordPress.com</strong></a></em></strong></strong></p>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wordpresspublishers.wordpress.com/1532/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wordpresspublishers.wordpress.com/1532/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/wordpresspublishers.wordpress.com/1532/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/wordpresspublishers.wordpress.com/1532/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/wordpresspublishers.wordpress.com/1532/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/wordpresspublishers.wordpress.com/1532/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/wordpresspublishers.wordpress.com/1532/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/wordpresspublishers.wordpress.com/1532/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/wordpresspublishers.wordpress.com/1532/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/wordpresspublishers.wordpress.com/1532/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/wordpresspublishers.wordpress.com/1532/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/wordpresspublishers.wordpress.com/1532/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/wordpresspublishers.wordpress.com/1532/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/wordpresspublishers.wordpress.com/1532/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=publisherblog.automattic.com&blog=1470857&post=1532&subd=wordpresspublishers&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 13 Jun 2011 16:30:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Sara Rosso\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"Weblog Tools Collection: bbPress 2.0 Beta 3 Released\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=10134\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/9KRViPmPUBc/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1691:\"<p><a href=\"http://bbpress.org/\">bbPress</a> 2.0 Beta 3 <a href=\"http://bbpress.org/blog/2011/06/bbpress-2-0-beta-3/\">has been released</a>. bbPress development is on schedule with a hopeful final launch around the same time as <a href=\"http://wordpress.org/\">WordPress</a> 3.2. Since <a href=\"http://weblogtoolscollection.com/archives/2011/05/28/bbpress-2-0-beta-2-released/\">the previous release</a>, the following changes have been made:</p>\n<ul>\n<li>Akismet integration</li>\n<li>Fixes replies within wp-admin</li>\n<li>Fixes reply notification links</li>\n<li>Fixes inconsistent breadcrumb behavior</li>\n<li>Fixes theme compatibility issues</li>\n<li>Fixes archive and page conflicts</li>\n<li>Improvements to unpretty permalink support</li>\n<li>Improvements to importer</li>\n<li>Improvements to multisite support</li>\n<li>Normalize theme, shortcodes, and template parts</li>\n<li>Add humans.txt</li>\n<li>Add empty index.php files to prevent snooping</li>\n<li>Add max length to topic titles (default 80 chars)</li>\n<li>Add shortcodes for login, register, and lost password forms</li>\n<li>Add proper redirect handling to topics and replies, allowing them to live almost anywhere</li>\n<li>Add permalink collision warnings if custom slugs conflict</li>\n</ul>\n<p>Though the first release candidate should be the next step, bbPress 2 is still not necessarily ready for use on a live site yet, but bbPress theme and plugin developers are encouraged to start testing now. If you encounter any bugs, please report them to the <a href=\"http://bbpress.trac.wordpress.org/\">bbPress Trac</a>.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/9KRViPmPUBc\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 13 Jun 2011 13:00:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"James Huff\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"bbPress: bbPress 2.0, Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"http://bbpress.org/?p=450\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"http://bbpress.org/blog/2011/06/bbpress-2-0-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2270:\"<p>Available immediately is bbPress 2.0 <a href=\"http://wordpress.org/extend/plugins/bbpress/\">Beta 3</a>, chock full of fixes and enhancements to help smooth out the integration of bbPress into your existing WordPress.org powered site. Your feedback has been super helpful, and there&#8217;s been so much testing we think a sarcastic cake-promising robot may be involved somewhere.</p>\n<p>You know the drill; this is still beta software, so don’t use it on your production sites. If you’re a plugin or theme developer, or a site administrator, run this only on test environments and report any bugs you find. If you’re a loyal bbPress user who&#8217;s anxious to see what the future of bbPress looks like, create a secondary WordPress test site and let us know what you think about it in the support forums. Extra points if you&#8217;re testing with WordPress Multisite.</p>\n<p>So far we&#8217;re right on schedule for this to be the final beta before we start packaging release candidates, with bbPress 2.0 by the end of June (in tandem with <a href=\"http://wordpress.org/news/2011/05/wordpress-3-1-3/\">WordPress 3.2</a>.) The more you kick the tires and the more miles you put on Beta 3 means a more dependable, longer lasting bbPress 2.0, so put your testing gloves on and take it for a spin!</p>\n<p>Here are some of the important changes since Beta 2:</p>\n<ul>\n<li>Akismet integration</li>\n<li>Fixes replies within wp-admin</li>\n<li>Fixes reply notification links</li>\n<li>Fixes inconsistent breadcrumb behavior</li>\n<li>Fixes theme compatibility issues</li>\n<li>Fixes archive and page conflicts</li>\n<li>Improvements to unpretty permalink support</li>\n<li>Improvements to importer</li>\n<li>Improvements to multisite support</li>\n<li>Normalize theme, shortcodes, and template parts</li>\n<li>Add humans.txt</li>\n<li>Add empty index.php files to prevent snooping</li>\n<li>Add max length to topic titles (default 80 chars)</li>\n<li>Add shortcodes for login, register, and lost password forms</li>\n<li>Add proper redirect handling to topics and replies, allowing them to live almost anywhere</li>\n<li>Add permalink collision warnings if custom slugs conflict</li>\n</ul>\n<p><a href=\"http://wordpress.org/extend/plugins/bbpress/\">Download bbPress 2.0 Beta 3</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 12 Jun 2011 21:13:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"John James Jacoby\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Weblog Tools Collection: WordPress Plugin Releases for 6/12\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=10130\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/n37XuaJXCsk/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1898:\"<h3>New plugins</h3>\n<p><a href=\"http://www.designchemical.com/blog/index.php/wordpress-plugins/wordpress-plugin-floating-tweets/\"><strong>Floating Tweets</strong></a> adds a floating, slide out tab containing the latest tweets from any twitter account.</p>\n<p><a href=\"http://showappeal.com/random-redirect-2/\"><strong>Random Redirect 2</strong></a> makes it easier for the average user to create a stumbleupon-like experience on any website and restrict the randomness to certain tags and keywords.</p>\n<p><a href=\"http://www.riyaz.net/social-metrics/\"><strong>Social Metrics</strong></a> is a social media analytics tool you can use to track your WordPress blog performance on popular social networking websites and services.</p>\n<h3>Updated plugins</h3>\n<p><a href=\"http://tinsology.net/plugins/amazon-tools/\"><strong>Amazon Tools</strong></a> allows you to retrieve and display Amazon product information in your blog.</p>\n<p><a href=\"http://ottopress.com/wordpress-plugins/simple-twitter-connect/\"><strong>Simple Twitter Connect</strong></a> is a series of plugins that let you add any sort of Twitter functionality you like to a WordPress blog.</p>\n<p><a href=\"http://www.designchemical.com/blog/index.php/wordpress-plugin-slick-contact-forms/\"><strong>Slick Contact Forms</strong></a> creates a widget, which adds a contact form using either a floating, drop down button or a sticky, sliding tab.</p>\n<p><a href=\"http://posttypemanager.wordpress.com/\"><strong>Ultimate Post Type Manager</strong></a> allows you to easily customize post types.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/wordpress-mu-sitewide-tags/\"><strong>WordPress MU Sitewide Tags Pages</strong></a> provides a central area where all the posts on a WordPress MU or WordPress MS site can be collected.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/n37XuaJXCsk\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 12 Jun 2011 13:00:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"James Huff\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"Alex King: Detecting Lightboxed Pages in WordPress Admin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://alexking.org/?p=5897\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"http://alexking.org/blog/2011/06/11/detecting-lightboxed-pages-in-wordpress-admin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:676:\"<p>When you want inject something into the WordPress admin, you might not think to account for pages that load inside lightboxes (plugin updates, media upload, etc.). Generally, you don&#8217;t want to add your JS/CSS/etc. to these pages.</p>\n<p>To check for this type of page load, you can check for the <code>IFRAME_REQUEST</code> constant:</p>\n<div class=\"code\">\n<pre>if ( !defined( \'IFRAME_REQUEST\' ) ) {\n  // do your normal WP admin page stuff here.\n  wp_enqueue_script(...\n}</pre>\n</div>\n<p>Here is <a href=\"https://gist.github.com/1020947\" rel=\"external\">some sample code</a>.</p>\n<img src=\"http://alexking.org/wp/?ak_action=api_record_view&id=5897&type=feed\" alt=\"\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 11 Jun 2011 20:56:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Alex\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"Joseph: pressfs – Dipping a Toe into Write Support\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"http://josephscott.org/?p=4301\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"http://josephscott.org/archives/2011/06/pressfs-dipping-a-toe-into-write-support/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1858:\"<p>When I <a href=\"http://josephscott.org/archives/2011/05/pressfs-a-wordpress-filesystem/\">first announced pressfs</a> I knew that write support was going to come up as a requested feature.  As I mentioned in that post, before I made the initial release I&#8217;d already been working with write code.  After more testing and code clean up I&#8217;ve updated pressfs to version 0.2.0, which has (very) limited write support.</p>\n<p>And by limited, I mean really, really, really limited.</p>\n<p>There are exactly two things that you can edit using pressfs in version 0.2.0: post content and a the url value for a user account (under contact info).  Example paths for these looks like:</p>\n<p>/var/wp/users/LOGIN/url<br />\n/var/wp/posts/POSTID-POSTNAME/content</p>\n<p>I knew that post content was something people wanted to be able to edit, and adding another field that wasn&#8217;t related to posts made me think about how to properly abstract the code that determines which files are writable.</p>\n<p>While I&#8217;ve tested this repeatedly against my dev install of WordPress, I can&#8217;t stress enough that you need to be careful.  Read only is pretty safe, with no real way to mess up your WordPress install.  Now that we are venturing into the write waters the code needs more people to test it before I&#8217;d consider it safe.</p>\n<p>Now, with that out of the way, go give this a try &#8211; the <a href=\"https://github.com/josephscott/pressfs\">pressfs code is available on github</a>.  Creating a new mount point is easy enough, and I recommend using a non-root account to do it.  If your uid is 3000 it is as simple as: </p>\n<p><code>python pressfs.py /var/wp/ -o uid=3000</code></p>\n<p>And if you do find a problem, use the <code>-d</code> option to have pressfs run in the foreground, it will display filesystem activity and python errors.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 10 Jun 2011 15:05:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Joseph Scott\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Weblog Tools Collection: WordPress Theme Releases for 6/10\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=10124\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/xX-iBO-FTdI/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1297:\"<p><img class=\"alignnone size-full wp-image-10125\" title=\"classic\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/06/classic.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://emptynestthemes.emptynestheritage.com/?p=1394\"><strong>Classic</strong></a> is a bright, clean theme with three columns in black, grey and white, giving it a polished, professional look.</p>\n<p><img class=\"alignnone size-full wp-image-10126\" title=\"greyopaque\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/06/greyopaque.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://wordpress.org/extend/themes/grey-opaque\"><strong>Grey Opaque</strong></a> is a clear and elegant grey theme with some very nice opaque-effects.</p>\n<p><img class=\"alignnone size-full wp-image-10127\" title=\"mycorporation\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/06/mycorporation.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://www.wpexplorer.com/my-corporation-wordpress-theme.html\"><strong>My Corporation</strong></a> is a clean, professional and modern business WordPress theme and portfolio, that is perfect for professionals and corporations.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/xX-iBO-FTdI\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 10 Jun 2011 13:00:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"James Huff\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"Weblog Tools Collection: WordPress Tavern is Back\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=10120\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/lTZ0hDtomZA/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:973:\"<p>Less than a month ago, Jeff <a href=\"http://www.wptavern.com/thanks-for-everything\">announced the end</a> of long-time <a href=\"http://wordpress.org/\">WordPress</a> community, news source, and podcast, <a href=\"http://www.wptavern.com/\">WordPress Tavern</a>. While all seemed lost, WordPress Tavern was picked up by an anonymous buyer, and <a href=\"http://www.wptavern.com/more-of-the-same-really\">as announced</a>, Jeff will be containing to helm the community as always with no major changes in store for the foreseeable future.</p>\n<p>This is definitely a major victory for Jeff and the WordPress Tavern community, who&#8217;s <a href=\"http://www.wptavern.com/forum/\">forum</a> had often been the go-to place for the greater WordPress community outside of the walls of the <a href=\"http://wordpress.org/support/\">WordPress.org forums</a>. Well done, Jeff!</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/lTZ0hDtomZA\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 09 Jun 2011 13:00:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"James Huff\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Weblog Tools Collection: WordPress Plugin Releases for 6/8\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=10117\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/qxhszR_ws2Q/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1128:\"<h3>New plugins</h3>\n<p><a href=\"http://wordpress.org/extend/plugins/menu-humility/\"><strong>Menu Humility</strong></a> shoves plugins with top level nav menus (below &#8220;Dashboard&#8221;) to the bottom of your Dashboard sidebar.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/newsletter-sign-up/\"><strong>Newsletter Sign-Up</strong></a> provides various ways to gain more subscribers to your mailing list.</p>\n<p><a href=\"http://dannyvankooten.com/wordpress-plugins/wysiwyg-widgets/\"><strong>WYSIWYG Widgets</strong></a> allows you to create easy rich text widgets without having to know HTML.</p>\n<h3>Updated plugins</h3>\n<p><a href=\"http://scribu.net/wordpress/query-multiple-taxonomies\"><strong>Query Multiple Taxonomies</strong></a> adds an advanced taxonomy navigation widget that lets users filter posts by multiple criteria.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\"><strong>WordPress Beta Tester</strong></a> allows you to easily upgrade to WordPress Beta releases.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/qxhszR_ws2Q\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 08 Jun 2011 13:00:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"James Huff\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WPTavern: More Of The Same Really\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"http://www.wptavern.com/?p=5273\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"http://feedproxy.google.com/~r/WordpressTavern/~3/J7a_UGSK-Ig/more-of-the-same-really\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3092:\"<p>Long time no see. Last time we talked, I announced that I&#8217;d be stepping away and selling off everything I accomplished with this site and the podcast. I&#8217;m happy to report that not only have I sold the content I generated to an awesome buyer, they have requested that I continue about my business with WPTavern, the forum and the podcast as if nothing has happened. The only distinct change that has happened and will be the only thing to happen for the foreseeable future is that the site will be owned by someone else. I am in charge of maintaining and operating the site as I normally would. At the request of the new owner, the terms of the deal as well as who the new owner is is under wraps. </p>\n<p>So what this means is that I&#8217;ll be re-opening the forum as well as upgrading it to get it going again. I&#8217;ll also be conducting an episode or two of WordPress Weekly in the near future and I&#8217;ll be writing about WordPress again here on the site. I&#8217;m sticking around without any influence by the new owner as to what to write, say, or do. In all honesty, it&#8217;s a pretty weird deal on paper but it&#8217;s a deal that&#8217;s allowed me the greatest flexibility as well as allowing me to fulfill a couple of financial obligations that sprang up. For instance, I was recently able to put money down on a used truck. You don&#8217;t know how much you need a truck until you become a home owner!</p>\n<p>There is one change that I&#8217;ll be making. Thanks to the deal, I&#8217;m going to remove all display advertising from the site and will not need to pursue affiliate links in future reviews I do. While any additional income is great, writing without the weight of needing money is actually a huge weight off my shoulders. </p>\n<p>Before we get back to regular programming around here, I want to thank all of you for your comments on my good bye post. It became obvious that the audience of WPTavern values my work much more than I do. So many of you wanted me to stick around in some form or fashion while many of you were pretty darn sad to see WPWeekly to go by the wayside. It&#8217;s comments like those that convinced me of negotiating a deal that allowed me to stay on and manage the site.</p>\n<p>I&#8217;m not guaranteeing that I&#8217;ll be publishing posts or that I&#8217;ll be active in the forum every day or producing a podcast every weekend but I am guaranteeing that I&#8217;ll be behind the bar, taking your orders and continuing to talk about this thing called WordPress which is pretty cool publishing software. </p>\n\n\n<p>Related posts:<ol><li><a href=\"http://www.wptavern.com/thanks-for-everything\" rel=\"bookmark\" title=\"Permanent Link: Thanks For Everything\">Thanks For Everything</a></li>\n<li><a href=\"http://www.wptavern.com/wptavern-is-my-home-and-youre-just-a-guest\" rel=\"bookmark\" title=\"Permanent Link: WPTavern Is My Home And You&#8217;re Just A Guest\">WPTavern Is My Home And You&#8217;re Just A Guest</a></li>\n</ol></p><img src=\"http://feeds.feedburner.com/~r/WordpressTavern/~4/J7a_UGSK-Ig\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 08 Jun 2011 11:06:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Jeffro\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"Mark Jaquith: How to write a WordPress plugin that I’ll use\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"http://markjaquith.wordpress.com/?p=634\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"http://markjaquith.wordpress.com/2011/06/07/how-to-write-a-plugin-that-ill-use/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5631:\"<p>I tend to be very fastidious about the WordPress plugins that I&#8217;ll install. I&#8217;ll often write my own simple version of a plugin rather than install one from someone else that does a bunch of stuff I don&#8217;t need. Here is my philosophy behind writing WordPress plugins, best witnessed through the plugins I&#8217;ve written lately, like <a href=\"http://wordpress.org/extend/plugins/markdown-on-save/\">Markdown on Save</a>, <a href=\"http://wordpress.org/extend/plugins/login-logo/\">Login Logo</a>, <a href=\"http://wordpress.org/extend/plugins/monitor-pages/\">Monitor Pages</a>, and <a href=\"http://wordpress.org/extend/plugins/wp-help/\">WP Help</a>.</p>\n<h3>Fewer features as a feature</h3>\n<p>There are diminishing returns as you add features. That is, the more you add, the more likely you&#8217;re adding something that X % of your plugin&#8217;s users won&#8217;t ever use. Stick to the basics. I&#8217;ll often release a &#8220;0.1&#8243; version of my plugin with really obvious features missing. When I get a flurry of &#8220;You should add Y!&#8221; messages, that validates my assumption that Y is necessary. Start with the smallest version that gets the core job done. Iterate as needed.</p>\n<h3>Code the hell out of it</h3>\n<p>The best part of starting small is that you can code the hell out of the plugin. Do it right. Make each line of code beautiful. Make sure you&#8217;re using WordPress APIs properly, and while you&#8217;re at it, add i18n support (WP Help 0.2 shipped with support for Bulgarian, German, Spanish, Mexican Spanish, Macedonian, Dutch, Brazilian Portuguese, and Russian!)</p>\n<h3>Reduce UI</h3>\n<p>If you can do without UI, don&#8217;t make it. Make every bit of UI prove its necessity. As an example, look at my <a href=\"http://wordpress.org/extend/plugins/login-logo/\">Login Logo</a> plugin. It has zero UI. It looks for the presence of a file named <code>login-logo.png</code> in the <code>wp-content</code> directory. The rest is &#8220;magic.&#8221; It measures the image, generates appropriate CSS, and gives you an instantly and easily customized login screen. The plugin is invisible. It&#8217;s completely out of sight, and out of mind. Finally, UI screens are generally where plugin authors make security mistakes. By skipping them, you make it much more likely that your plugin is secure.</p>\n<h3>Code it for the future</h3>\n<p>Don&#8217;t use deprecated APIs. Plan features in future-forward ways. Implement it in such a way that a site that is using the plugin doesn&#8217;t break if the plugin suddenly goes away. One example of this is my <a href=\"http://wordpress.org/extend/plugins/markdown-on-save/\">Markdown on Save</a> plugin, which offers per-post Markdown formatting. First, I decided that for performance reasons, I wanted to parse Markdown then the post was updated, not on display. The obvious place to store the generated HTML was in the <code>post_content_filtered</code> column that WordPress provides (but does not use). But then I considered what would happen if someone deactivated the plugin or deleted the plugin. The code that accessed <code>post_content_filtered</code> would not work. Their blog would spit out raw Markdown. And any exports they made would export raw Markdown. What if they were exporting to WordPress.com which doesn&#8217;t support Markdown? So I decided to store the <em>Markdown</em> in <code>post_content_filtered</code>, and store the generated HTML in <code>post_content</code>. When you edit a Markdown-formatted post, it swaps in the Markdown, so you can edit that. But if you deactivated the plugin, it would fall back to the HTML. So you can feel free to use this plugin and know that if one day you wake up and you hate Markdown, all you have to do is deactivate the plugin and all of your posts are back to HTML.</p>\n<h3>Secure it</h3>\n<p>Writing secure WordPress plugins isn&#8217;t hard. It just takes awareness. Take the time to do your research and code a plugin that will be an asset to its users, not a liability.</p>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/markjaquith.wordpress.com/634/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/markjaquith.wordpress.com/634/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/markjaquith.wordpress.com/634/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/markjaquith.wordpress.com/634/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/markjaquith.wordpress.com/634/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/markjaquith.wordpress.com/634/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/markjaquith.wordpress.com/634/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/markjaquith.wordpress.com/634/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/markjaquith.wordpress.com/634/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/markjaquith.wordpress.com/634/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/markjaquith.wordpress.com/634/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/markjaquith.wordpress.com/634/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/markjaquith.wordpress.com/634/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/markjaquith.wordpress.com/634/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=markjaquith.wordpress.com&blog=316&post=634&subd=markjaquith&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 Jun 2011 17:53:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mark Jaquith\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"WordPress.tv: Isaac Keyet Create the Perfect Mobile WordPress Experience\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://wordpress.tv/?p=6114\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"http://wordpress.tv/2011/06/07/isaac-keyet-create-the-perfect-mobile-wordpress-experience/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1882:\"<div id=\"v-BuqB1tGQ\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/6114/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/6114/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/6114/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/6114/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/wptv.wordpress.com/6114/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/wptv.wordpress.com/6114/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/wptv.wordpress.com/6114/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/wptv.wordpress.com/6114/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/6114/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/6114/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/6114/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/6114/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/6114/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/6114/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=6114&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2011/06/07/isaac-keyet-create-the-perfect-mobile-wordpress-experience/\"><img alt=\"Isaac Keyet Create the Perfect Mobile WordPress Experience\" src=\"http://videos.videopress.com/BuqB1tGQ/isaac-keyet-create-the-perfect-mobile-wordpress-experience_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 Jun 2011 17:49:24 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"blazestreaming\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress.tv: Alex King Interview With Nick Ohrn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://wordpress.tv/?p=6078\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wordpress.tv/2011/06/07/alex-king-interview-with-nick-ohrn/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1810:\"<div id=\"v-Kub2S28L\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/6078/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/6078/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/6078/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/6078/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/wptv.wordpress.com/6078/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/wptv.wordpress.com/6078/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/wptv.wordpress.com/6078/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/wptv.wordpress.com/6078/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/6078/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/6078/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/6078/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/6078/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/6078/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/6078/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=6078&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2011/06/07/alex-king-interview-with-nick-ohrn/\"><img alt=\"Alex King Interview With Nick Ohrn\" src=\"http://videos.videopress.com/Kub2S28L/alex-king-interview-with-nick-ohrn_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 Jun 2011 17:47:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"blazestreaming\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"WordPress.tv: Andrew Nacin Ask Not What WordPress Can Do For You\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://wordpress.tv/?p=6098\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"http://wordpress.tv/2011/06/07/andrew-nacin-ask-not-what-wordpress-can-do-for-you/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1858:\"<div id=\"v-OLLkHvqM\" class=\"video-player\">\n</div>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wptv.wordpress.com/6098/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wptv.wordpress.com/6098/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/wptv.wordpress.com/6098/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/wptv.wordpress.com/6098/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/wptv.wordpress.com/6098/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/wptv.wordpress.com/6098/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/wptv.wordpress.com/6098/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/wptv.wordpress.com/6098/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/wptv.wordpress.com/6098/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/wptv.wordpress.com/6098/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/wptv.wordpress.com/6098/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/wptv.wordpress.com/6098/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/wptv.wordpress.com/6098/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/wptv.wordpress.com/6098/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=wordpress.tv&blog=5089392&post=6098&subd=wptv&ref=&feed=1\" width=\"1\" height=\"1\" /><div><a href=\"http://wordpress.tv/2011/06/07/andrew-nacin-ask-not-what-wordpress-can-do-for-you/\"><img alt=\"Andrew Nacin Ask Not What WordPress Can Do For You\" src=\"http://videos.videopress.com/OLLkHvqM/andrew-nacin-ask-not-what-wordpress-can-do-for-you_scruberthumbnail_0.jpg\" width=\"160\" height=\"120\" /></a></div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 Jun 2011 17:43:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"blazestreaming\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"Weblog Tools Collection: New WordPress Default Theme Unveiled\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=10114\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/jdR2fJqdkuI/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1333:\"<p><a href=\"http://theme.wordpress.com/themes/twentyeleven/\">Twenty Eleven</a>, the new <a href=\"http://wordpress.org/\">WordPress</a> default theme, has been <a href=\"http://en.blog.wordpress.com/2011/06/06/new-theme-twenty-eleven/\">officially unveiled</a>. If you notice the similarities between Twenty Eleven and <a href=\"http://wordpress.org/extend/themes/duster\">Duster</a>, that&#8217;s because Duster was more or less the beta release of Twenty Eleven, but don&#8217;t be fooled by the similar looks. Twenty Eleven contains several under-the-hood enhancements and additional features, and it will be included by default with all WordPress downloads as soon as WordPress 3.2 is released!</p>\n<p><a href=\"http://wordpress.com/\">WordPress.com</a> users are welcome to try Twenty Eleven on their blogs now, and self-hosted WordPress users eager to try Twenty Eleven are more than welcome to <a href=\"http://wordpress.org/extend/plugins/wordpress-beta-tester/\">get involved</a> in WordPress 3.2 beta testing. Of course, if beta testing isn&#8217;t your thing, you can always try out <a href=\"http://twentyelevendemo.wordpress.com/\">the theme&#8217;s demo</a>.</p>\n<p>What do you think of the new default WordPress theme?</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/jdR2fJqdkuI\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 Jun 2011 13:00:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"James Huff\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"Weblog Tools Collection: WordPress Theme Releases for 6/6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=10109\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/YQv679uLSPw/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1149:\"<p><img class=\"alignnone size-full wp-image-10110\" title=\"char\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/06/char.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://emptynestthemes.emptynestheritage.com/?p=1376\"><strong>Char</strong></a> is a dark, edgy, and grungy theme.</p>\n<p><img class=\"alignnone size-full wp-image-10111\" title=\"gridnotez\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/06/gridnotez.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://www.simplywp.net/2011/06/02/gridnotez-theme/\"><strong>Gridnotez</strong></a> is a two column theme with a brown grid-paper design and hand-drawn icons.</p>\n<p><img class=\"alignnone size-full wp-image-10112\" title=\"scyllalite\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/06/scyllalite.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://wordpress.org/extend/themes/scylla-lite\"><strong>Scylla lite</strong></a> has awesome skins, fonts, slider, layouts, and an easy to use theme options panel.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/YQv679uLSPw\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 06 Jun 2011 13:00:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"James Huff\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Weblog Tools Collection: WordPress Plugin Releases for 6/4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=10104\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/r5-Sl89qk5w/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1283:\"<h3>New plugins</h3>\n<p><a href=\"http://www.ahsan.pk/2011/06/google-1button/\"><strong>+1 Button Plugin</strong></a> adds a Google +1 button to your posts.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/google/\"><strong>The Google +1 plugin</strong></a> adds the Google +1 button to your site so your visitors can vote to tell the world how great your site is.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/hide-unwanted-shortcodes/\"><strong>Hide Unwanted Shortcodes</strong></a> prevents unwanted shortcodes from showing on blog.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/update-active-plugins-only/\"><strong>Update Active Plugins Only</strong></a> tells WordPress to only check for updates to active plugins.</p>\n<h3>Updated plugins</h3>\n<p><a href=\"http://scribu.net/wordpress/front-end-editor\"><strong>Front-end Editor</strong></a> allows inline editing of your content.</p>\n<p><a href=\"http://wordpress.org/extend/plugins/theme-check/\"><strong>Theme-Check</strong></a> allows you to run checks on the current theme before uploading to WordPress. This plugin uses the same API and is kept more or less in sync with the WordPress.org uploader tool.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/r5-Sl89qk5w\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 04 Jun 2011 13:00:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"James Huff\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"Lorelle on WP: Managing Multiple Authors: Customizing the Author Bio Box\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"http://lorelle.wordpress.com/?p=5115\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"http://lorelle.wordpress.com/2011/06/03/managing-multiple-authors-customizing-the-author-bio-box/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:500:\"In this series on managing multiple bloggers in WordPress, I&#8217;ve covered how to showcase the authors within the WordPress Theme design, talked about how to manage author content within WordPress to help you see all the ways you can promote your authors within the design and content management system, and started showing you code and [...]<img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=lorelle.wordpress.com&blog=72&post=5115&subd=lorelle&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 04 Jun 2011 01:38:47 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Lorelle VanFossen\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Matt: Seattle WP Meetup Friday\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"http://ma.tt/?p=38292\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"http://ma.tt/2011/06/seattle-wp-meetup-friday/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:974:\"<p><a href=\"http://ma.tt/2005/04/seattle-meetup/\">Six years ago on this blog we scheduled a WordPress meetup in Seattle</a> which ended up including a number of folks who are still changing the web today, including <a href=\"http://www.brepettis.com/\">Bre Pettis</a>, <a href=\"http://scobleizer.com/\">Robert Scoble</a>, <a href=\"http://chris.pirillo.com/\">Chris Pirillo</a>, <a href=\"http://www.bestkungfu.com/\">Matt May</a>, <a href=\"http://www.fortes.com/\">Filipe Fortes</a>, <a href=\"http://skeltoac.com/\">Andy Skelton</a>, <a href=\"http://www.scottberkun.com/\">Scott Berkun</a>, and <a href=\"http://www.commoncraft.com/\">Lee Lefever</a>. We&#8217;re going to do an informal 2.0 <strong>tonight at 6 PM, Friday June 3 at Pike Pub &amp; Brewery</strong> on 1st Avenue in downtown Seattle. Come by and share a beer, reminiscence about trackbacks, and talk about the future of the open web. It&#8217;s short notice, so please spread the word to your Seattle-area friends.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 03 Jun 2011 18:38:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"Weblog Tools Collection: WordPress Theme Releases for 6/2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=10095\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/aRgT2rDh9uA/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1142:\"<p><img class=\"alignnone size-full wp-image-10096\" title=\"brunelleschi\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/06/brunelleschi.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://wordpress.org/extend/themes/brunelleschi\"><strong>Brunelleschi</strong></a> is a clean and modern theme that celebrates content.</p>\n<p><img class=\"alignnone size-full wp-image-10097\" title=\"driftwood\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/06/driftwood.jpg\" alt=\"\" width=\"150\" height=\"113\" /></p>\n<p><a href=\"http://emptynestthemes.emptynestheritage.com/?p=1358\"><strong>Driftwood</strong></a> is a perfect theme for the onset of summer.</p>\n<p><img class=\"alignnone size-full wp-image-10098\" title=\"mantra\" src=\"http://weblogtoolscollection.com/wp-content/uploads/2011/06/mantra.jpg\" alt=\"\" width=\"150\" height=\"97\" /></p>\n<p><a href=\"http://wordpress.org/extend/themes/mantra\"><strong>Mantra</strong></a> is a clean and very web 2.0 theme with customizable layout, colors, fonts and graphics.</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/aRgT2rDh9uA\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Jun 2011 13:00:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"James Huff\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Weblog Tools Collection: WordCamp SF 2011 Call for Speakers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"http://weblogtoolscollection.com/?p=10092\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"http://feedproxy.google.com/~r/weblogtoolscollection/UXMP/~3/pqlpsjtnE1M/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:842:\"<p><a href=\"http://2011.sf.wordcamp.org/\">WordCamp San Francisco</a>, &#8220;the official annual conference of the <a href=\"http://wordpress.org/\">WordPress</a> open source project&#8221; and heralded by many as the largest annual gathering of WordPressians, <a href=\"http://2011.sf.wordcamp.org/2011/05/31/call-for-speakers/\">is putting out the call for speakers</a> for the 2011 convention.</p>\n<p>This year&#8217;s WordCamp SF will be held at the <a href=\"http://www.acc-missionbayconferencecenter.com/\">Mission Bay Conference Center</a> from August 12th &#8211; 14th, and they are &#8220;expanding the programming for publishers, bloggers, and developers.&#8221;</p>\n<p>I&#8217;ll definitely be there this year. How about you?</p>\n<img src=\"http://feeds.feedburner.com/~r/weblogtoolscollection/UXMP/~4/pqlpsjtnE1M\" height=\"1\" width=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 01 Jun 2011 13:00:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"James Huff\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Alex King: WordPress Code Snippet to Detect “Main” Loop\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:27:\"http://alexking.org/?p=5879\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"http://alexking.org/blog/2011/06/01/wordpress-code-snippet-to-detect-main-loop\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:929:\"<p>Cribbed from the <a href=\"http://lists.automattic.com/pipermail/wp-hackers/2011-May/039467.html\" rel=\"external\">WP-Hackers list</a>, the following sample code should give you a good way to test if the current &#8220;in the loop&#8221; action is within the main loop or a different loop:</p>\n<div class=\"code\">\n<pre><code>function main_loop_test($query) {\n  global $wp_the_query;\n  if ($query === $wp_the_query) {\n    echo \"main loop\";\n  }\n}\nadd_action(\'loop_start\', \'main_loop_test\');</code></pre>\n</div>\n<p>Thanks <a href=\"http://andrewnacin.com\" rel=\"external\">Nacin</a> and Konrad.</p>\n<p>This is useful if you&#8217;re creating a plugin that needs to be compatible with multiple themes, otherwise for a theme implementation there are better ways to check for this (for example, setting/unsetting a bit around the main loop call).</p>\n<img src=\"http://alexking.org/wp/?ak_action=api_record_view&id=5879&type=feed\" alt=\"\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 01 Jun 2011 08:10:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Alex\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"Dev Blog: WordCamp San Francisco Call for Speakers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"http://wordpress.org/news/?p=1886\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"http://wordpress.org/news/2011/05/wordcamp-san-francisco-call-for-speakers/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:904:\"<p>The annual WordPress conference, <a href=\"http://2011.sf.wordcamp.org/\">WordCamp San Francisco</a> (home of the very first WordCamp), is now accepting speaker applications. Past speakers have included core WordPress developers, people building successful businesses on WordPress, popular bloggers, people from related projects and businesses&#8230;you name it. In addition to Matt Mullenweg&#8217;s annual &#8220;State of the Word&#8221; address, WCSF has played host to talks by people like Mark Jaquith, Matt Cutts, Richard Stallman, Scott Berkun, Karl Fogel, Tim Ferriss, Tara Hunt, Chris Pirillo, and John Lilly. With 3 days of content this year instead of just one, the list of speakers should be even more impressive. If you think you&#8217;d make a good addition to this year&#8217;s roster, check out the <a href=\"http://2011.sf.wordcamp.org/call-for-speakers/\">WCSF Call for Speakers</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 31 May 2011 18:59:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Jane Wells\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"Publisher Blog: Primer: WordPress photo gallery without a plugin\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"http://publisherblog.automattic.com/?p=1515\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"http://publisherblog.automattic.com/2011/05/31/primer-wordpress-photo-gallery-without-a-plugin/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2605:\"<p><a href=\"http://ottopress.com/\">Otto</a> has created a very thorough <a href=\"http://ottopress.com/2011/photo-gallery-primer/\">primer to create a WordPress photo gallery without a plugin</a>. He walks you through understanding pictures and galleries, creating and modifying an image template, and tweaking image and thumbnail sizes.</p>\n<p>He reminds us:</p>\n<blockquote><p>You don’t really need plugins to create photo galleries. WordPress has a huge amount of gallery functionality built right in. You just need to make your theme smarter in order to take advantage of it.</p></blockquote>\n<p>Click through to read <a href=\"http://ottopress.com/2011/photo-gallery-primer/\">Photo gallery primer on Otto on WordPress</a>.</p>\n<p><em></em><strong><em><a href=\"http://get.wp.com/\"><strong>Want WordPress for your site? Get.WordPress.com</strong></a></em></strong></p>\n<br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/wordpresspublishers.wordpress.com/1515/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/wordpresspublishers.wordpress.com/1515/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godelicious/wordpresspublishers.wordpress.com/1515/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/delicious/wordpresspublishers.wordpress.com/1515/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gofacebook/wordpresspublishers.wordpress.com/1515/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/facebook/wordpresspublishers.wordpress.com/1515/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gotwitter/wordpresspublishers.wordpress.com/1515/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/twitter/wordpresspublishers.wordpress.com/1515/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gostumble/wordpresspublishers.wordpress.com/1515/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/stumble/wordpresspublishers.wordpress.com/1515/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/godigg/wordpresspublishers.wordpress.com/1515/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/digg/wordpresspublishers.wordpress.com/1515/\" /></a> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/goreddit/wordpresspublishers.wordpress.com/1515/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/reddit/wordpresspublishers.wordpress.com/1515/\" /></a> <img alt=\"\" border=\"0\" src=\"http://stats.wordpress.com/b.gif?host=publisherblog.automattic.com&blog=1470857&post=1515&subd=wordpresspublishers&ref=&feed=1\" width=\"1\" height=\"1\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 31 May 2011 16:30:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"Sara Rosso\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 23 Jun 2011 18:25:27 GMT\";s:12:\"content-type\";s:15:\"application/xml\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Thu, 23 Jun 2011 18:15:12 GMT\";s:14:\"content-length\";s:6:\"115355\";s:4:\"x-nc\";s:11:\"HIT luv 139\";s:13:\"accept-ranges\";s:5:\"bytes\";}s:5:\"build\";s:14:\"20090627192103\";}','no'),(641,0,'_transient_feed_mod_a5420c83891a9c88ad2a4f04584a5efc','1308853564','no'),(642,0,'_transient_timeout_feed_mod_867bd5c64f85878d03a060509cd2f92c','1308896764','no'),(643,0,'_transient_feed_mod_867bd5c64f85878d03a060509cd2f92c','1308853564','no'),(644,0,'_transient_timeout_feed_57bc725ad6568758915363af670fd8bc','1308896764','no'),(645,0,'_transient_feed_57bc725ad6568758915363af670fd8bc','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n	\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:72:\"\n		\n		\n		\n		\n		\n		\n				\n\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress Plugins » View: Newest\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"http://wordpress.org/extend/plugins/browse/new/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress Plugins » View: Newest\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 23 Jun 2011 18:24:37 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"http://bbpress.org/?v=1.1-alpha-2855\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:15:{i:0;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"Martin Lormes on \"Set Aside\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"http://wordpress.org/extend/plugins/set-aside/#post-27684\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 22 Jun 2011 11:37:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"27684@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:148:\"In the past many blogs used to style posts as &#34;Asides&#34; based on catgeories. With the latest version(s) of WordPress there is a post format c\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Martin Lormes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"Ramoonus on \"jPlot Charts and Graphs for jQuery\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"http://wordpress.org/extend/plugins/jqplot/#post-27600\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 19 Jun 2011 08:00:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"27600@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"jqPlot is a pure JavaScript charting plugin for the jQuery javascript framework.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Ramoonus\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"jmagnone on \"Magn WPSync\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"http://wordpress.org/extend/plugins/wpsync/#post-27637\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 20 Jun 2011 20:23:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"27637@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"WP Sync is a simple plugin that helps you to import Google Spreadsheet into WP posts.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"jmagnone\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"dhanugupta on \"Related Games\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://wordpress.org/extend/plugins/related-games/#post-27544\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 16 Jun 2011 14:26:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"27544@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:159:\"A customizable widget which displays the latest related Games Tag/Category Based from <a href=\"http://www.games.com/\" rel=\"nofollow\">http://www.games.com/</a>.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"dhanugupta\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"hda on \"Widget HDA\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://wordpress.org/extend/plugins/histoire-des-arts/#post-27656\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 21 Jun 2011 15:19:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"27656@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"Widget pour wordpress du site histoire des arts\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:3:\"hda\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"MarcFuller on \"Iframe Preserver\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"http://wordpress.org/extend/plugins/iframe-preserver/#post-27654\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 21 Jun 2011 14:53:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"27654@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:136:\"Iframe Preserver plugin allows you to easily embed any iframe and preserves embedded iframes by utilizing WordPress&#039; Custom Fields.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"MarcFuller\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"lordspace on \"Member Status\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://wordpress.org/extend/plugins/member-status/#post-27035\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 31 May 2011 22:34:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"27035@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"Member Status shows a flashing availability status.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"lordspace\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"webdevtsu on \"Ackuna Blog Translator\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"http://wordpress.org/extend/plugins/ackuna-language-translation-plugin/#post-27571\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Jun 2011 14:02:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"27571@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:117:\"Allows your users to translate your blog into many different languages. The button is added to the top of every post.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"webdevtsu\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"rockgod100 on \"Topic Manager\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://wordpress.org/extend/plugins/topic-manager/#post-27537\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 16 Jun 2011 11:27:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"27537@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"Manages topic assignments for multiple authors\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:10:\"rockgod100\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"Sebastien on \"WooThemes Framework Identifier\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"http://wordpress.org/extend/plugins/woothemes-framework-identifier/#post-27589\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 18 Jun 2011 01:50:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"27589@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:149:\"Displays version of WooThemes Framework in Right Now dashboard widget. If an update is available a link to the framework update page is displayed and\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Sebastien\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"howlinie on \"How-Interest\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://wordpress.org/extend/plugins/how-interest/#post-27651\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 21 Jun 2011 11:54:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"27651@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"A simple plugin to let your site&#039;s visitors register their interest in your services\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"howlinie\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"evnix on \"freichatx-4-wp\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"http://wordpress.org/extend/plugins/freichatx-4-wp/#post-27687\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 22 Jun 2011 16:17:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"27687@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"Integrates Wordpress with FreiChatX chat script.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"evnix\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"rizeo on \"Rent-A-Car-Plugin\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://wordpress.org/extend/plugins/rent-a-car/#post-27652\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 21 Jun 2011 13:43:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"27652@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"Rent-A-Car is an open source e-commerce solution built for Wordpress.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"rizeo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"finch88 on \"slider-widget\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"http://wordpress.org/extend/plugins/pictures-from-folder-slideshow/#post-27681\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 22 Jun 2011 06:39:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"27681@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"This plugin is a slidshow box, realizaed as widget.You can put it whereever you want.Enjoy!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"finch88\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"xxwca on \"Visitor to SMS\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://wordpress.org/extend/plugins/wp-visitor-to-sms/#post-27531\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 16 Jun 2011 06:15:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"27531@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"Send Text SMS message / Email on visitor hit.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"xxwca\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:48:\"http://wordpress.org/extend/plugins/rss/view/new\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 23 Jun 2011 18:25:28 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:19:\"2011-06-22 11:37:42\";s:14:\"content-length\";s:4:\"7558\";s:4:\"x-nc\";s:11:\"HIT luv 139\";}s:5:\"build\";s:14:\"20090627192103\";}','no'),(646,0,'_transient_timeout_feed_mod_57bc725ad6568758915363af670fd8bc','1308896764','no'),(647,0,'_transient_feed_mod_57bc725ad6568758915363af670fd8bc','1308853564','no'),(648,0,'_transient_timeout_feed_1a5f760f2e2b48827d4974a60857e7c2','1308896765','no'),(649,0,'_transient_feed_1a5f760f2e2b48827d4974a60857e7c2','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n	\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:72:\"\n		\n		\n		\n		\n		\n		\n				\n\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n		\n\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"WordPress Plugins » View: Recently Updated\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"http://wordpress.org/extend/plugins/browse/updated/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"WordPress Plugins » View: Recently Updated\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 23 Jun 2011 18:12:53 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"http://bbpress.org/?v=1.1-alpha-2855\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:15:{i:0;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"Martin Lormes on \"Set Aside\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"http://wordpress.org/extend/plugins/set-aside/#post-27684\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 22 Jun 2011 11:37:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"27684@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:148:\"In the past many blogs used to style posts as &#34;Asides&#34; based on catgeories. With the latest version(s) of WordPress there is a post format c\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Martin Lormes\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"philipwalton on \"PW_Archives\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"http://wordpress.org/extend/plugins/pw-archives/#post-24294\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Feb 2011 05:21:51 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"24294@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:149:\"A fully-customizable yet light-weight and intuitive archiving plugin. Its features include custom post type support, optional javascript enhancement,\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"philipwalton\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"m66b on \"Add Link to Facebook\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://wordpress.org/extend/plugins/add-link-to-facebook/#post-24221\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 05 Feb 2011 14:30:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"24221@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"Automatically add links to published posts or pages to your Facebook wall, pages or groups and more\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"m66b\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Austin Passy on \"Custom Login\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"http://wordpress.org/extend/plugins/custom-login/#post-12323\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 Aug 2009 23:53:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"12323@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"Use this plugin to customize your login screen, great for client sites!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Austin Passy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Austin Passy on \"Anywhere\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"http://wordpress.org/extend/plugins/anywhere/#post-17307\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 15 Apr 2010 22:54:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"17307@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"Adds Twitter @anywhere javascript code to your blog, enabling hovercards and more.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Austin Passy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"Austin Passy on \"Comment Validation Reloaded\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"http://wordpress.org/extend/plugins/comment-validation-reloaded/#post-17349\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 18 Apr 2010 18:31:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"17349@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:148:\"Avoid those pesky blank page with an error message like &#34;please fill out required fields&#34; then loosing your/users comment info. Validation w\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Austin Passy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"slawa19 on \"7feeds ticker\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"http://wordpress.org/extend/plugins/7feeds-news-ticker/#post-13802\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 26 Oct 2009 07:28:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"13802@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"Flash based RSS ticker widget for WordPress. Visit widget page for more information.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"slawa19\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"slawa19 on \"Recipe finder\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"http://wordpress.org/extend/plugins/recipe-finder/#post-24135\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Feb 2011 14:01:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"24135@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:148:\"Plugin &#34;Recipe Finder&#34; created to easily search and display recipes on your blog pages of 2 major recipe search engines: Recipe-Finder.com (\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:7:\"slawa19\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"Austin Passy on \"Eventbrite Attendees Shortcode\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"http://wordpress.org/extend/plugins/eventbrite-attendees-shortcode/#post-12222\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 07 Aug 2009 04:36:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"12222@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"A shortcode to pull in your Eventbrite attendee list (Must be RSS enabled)\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Austin Passy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"Austin Passy on \"Hellos Bar\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://wordpress.org/extend/plugins/hellos-bar/#post-23019\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 20 Dec 2010 17:09:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"23019@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"A fixed position (header) HTML with jQuery drop-down announcemnet bar using Custom Post Types.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Austin Passy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:38:\"Austin Passy on \"Hide and Catch Email\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"http://wordpress.org/extend/plugins/hide-and-catch-email/#post-20524\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 31 Aug 2010 21:12:46 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"20524@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:97:\"Adds a metabox to post/page and allows you to hide the content, and show only on form submission.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Austin Passy\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"gwycon on \"Admin Log\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"http://wordpress.org/extend/plugins/admin-log/#post-9718\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 18 Mar 2009 11:56:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"9718@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:147:\"Need to see who is accessing what in your admin section? This Plugin logs admin activity, and shows the page, user information, and time of access.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"gwycon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"Donald Gilbert on \"WordPress Admin Bar Improved\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"http://wordpress.org/extend/plugins/wordpress-admin-bar-improved/#post-14221\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 15 Nov 2009 18:31:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"14221@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"A set of custom tweaks to the WordPress Admin Bar that was introduced in WP3.1.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Donald Gilbert\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"Ramoonus on \"jPlot Charts and Graphs for jQuery\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"http://wordpress.org/extend/plugins/jqplot/#post-27600\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 19 Jun 2011 08:00:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"27600@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"jqPlot is a pure JavaScript charting plugin for the jQuery javascript framework.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Ramoonus\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:30:\"\n			\n			\n			\n			\n			\n			\n					\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"xxwca on \"Visitor to SMS\"\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"http://wordpress.org/extend/plugins/wp-visitor-to-sms/#post-27531\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 16 Jun 2011 06:15:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"27531@http://wordpress.org/extend/plugins/\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"Send Text SMS message / Email on visitor hit.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"xxwca\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:52:\"http://wordpress.org/extend/plugins/rss/view/updated\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 23 Jun 2011 18:25:29 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:10:\"connection\";s:5:\"close\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:19:\"2011-06-22 11:37:42\";s:14:\"content-length\";s:4:\"7842\";s:4:\"x-nc\";s:11:\"HIT luv 139\";}s:5:\"build\";s:14:\"20090627192103\";}','no'),(650,0,'_transient_timeout_feed_mod_1a5f760f2e2b48827d4974a60857e7c2','1308896765','no'),(651,0,'_transient_feed_mod_1a5f760f2e2b48827d4974a60857e7c2','1308853565','no'),(652,0,'_transient_timeout_plugin_slugs','1308939965','no'),(653,0,'_transient_plugin_slugs','a:5:{i:0;s:19:\"akismet/akismet.php\";i:1;s:21:\"eventify/eventify.php\";i:2;s:45:\"grunion-contact-form/grunion-contact-form.php\";i:3;s:9:\"hello.php\";i:4;s:37:\"wordpress-event-calendar/calendar.php\";}','no'),(663,0,'rewrite_rules','a:91:{s:57:\"index.php/category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:52:\"index.php/category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:45:\"index.php/category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:27:\"index.php/category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:54:\"index.php/tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:49:\"index.php/tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:42:\"index.php/tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:24:\"index.php/tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:55:\"index.php/type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:50:\"index.php/type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:43:\"index.php/type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:25:\"index.php/type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:50:\"index.php/accomodation/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:60:\"index.php/accomodation/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:80:\"index.php/accomodation/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:75:\"index.php/accomodation/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:75:\"index.php/accomodation/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:43:\"index.php/accomodation/([^/]+)/trackback/?$\";s:39:\"index.php?accomodation=$matches[1]&tb=1\";s:63:\"index.php/accomodation/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?accomodation=$matches[1]&feed=$matches[2]\";s:58:\"index.php/accomodation/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?accomodation=$matches[1]&feed=$matches[2]\";s:51:\"index.php/accomodation/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?accomodation=$matches[1]&paged=$matches[2]\";s:58:\"index.php/accomodation/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?accomodation=$matches[1]&cpage=$matches[2]\";s:43:\"index.php/accomodation/([^/]+)(/[0-9]+)?/?$\";s:51:\"index.php?accomodation=$matches[1]&page=$matches[2]\";s:39:\"index.php/accomodation/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:49:\"index.php/accomodation/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:69:\"index.php/accomodation/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"index.php/accomodation/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"index.php/accomodation/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:14:\".*wp-atom.php$\";s:19:\"index.php?feed=atom\";s:13:\".*wp-rdf.php$\";s:18:\"index.php?feed=rdf\";s:13:\".*wp-rss.php$\";s:18:\"index.php?feed=rss\";s:14:\".*wp-rss2.php$\";s:19:\"index.php?feed=rss2\";s:14:\".*wp-feed.php$\";s:19:\"index.php?feed=feed\";s:22:\".*wp-commentsrss2.php$\";s:34:\"index.php?feed=rss2&withcomments=1\";s:42:\"index.php/feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:37:\"index.php/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:30:\"index.php/page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:37:\"index.php/comment-page-([0-9]{1,})/?$\";s:38:\"index.php?&page_id=9&cpage=$matches[1]\";s:51:\"index.php/comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:46:\"index.php/comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:39:\"index.php/comments/page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:54:\"index.php/search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:49:\"index.php/search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:42:\"index.php/search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:24:\"index.php/search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:57:\"index.php/author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:52:\"index.php/author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:45:\"index.php/author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:27:\"index.php/author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:79:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:74:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:67:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:49:\"index.php/([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:66:\"index.php/([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:61:\"index.php/([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:54:\"index.php/([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:36:\"index.php/([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:53:\"index.php/([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:48:\"index.php/([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:41:\"index.php/([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:23:\"index.php/([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:57:\"index.php/[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:67:\"index.php/[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:87:\"index.php/[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:82:\"index.php/[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:82:\"index.php/[0-9]{4}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:54:\"index.php/([0-9]{4})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:69:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&tb=1\";s:74:\"index.php/([0-9]{4})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&feed=$matches[4]\";s:69:\"index.php/([0-9]{4})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&feed=$matches[4]\";s:62:\"index.php/([0-9]{4})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&paged=$matches[4]\";s:69:\"index.php/([0-9]{4})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:82:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&cpage=$matches[4]\";s:54:\"index.php/([0-9]{4})/([0-9]{1,2})/([^/]+)(/[0-9]+)?/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&name=$matches[3]&page=$matches[4]\";s:46:\"index.php/[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:56:\"index.php/[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:76:\"index.php/[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:71:\"index.php/[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:71:\"index.php/[0-9]{4}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:61:\"index.php/([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:48:\"index.php/([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:35:\"index.php/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"index.php/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"index.php/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"index.php/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"index.php/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:28:\"index.php/(.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:48:\"index.php/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:43:\"index.php/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:36:\"index.php/(.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:43:\"index.php/(.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:28:\"index.php/(.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(672,0,'_site_transient_timeout_theme_roots','1309357397','yes'),(673,0,'_site_transient_theme_roots','a:2:{s:3:\"oor\";s:7:\"/themes\";s:9:\"twentyten\";s:7:\"/themes\";}','yes');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_postmeta`
--

DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`)
) ENGINE=InnoDB AUTO_INCREMENT=216 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_postmeta`
--

LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (8,9,'_edit_last','1'),(9,9,'_edit_lock','1307035042:1'),(10,9,'_wp_page_template','default'),(11,14,'_edit_last','1'),(12,14,'_edit_lock','1306955627:1'),(13,14,'_wp_page_template','default'),(14,19,'_edit_last','1'),(15,19,'_edit_lock','1306955542:1'),(16,19,'_wp_page_template','default'),(17,21,'_edit_last','1'),(18,21,'_edit_lock','1306407393:1'),(21,25,'_edit_last','1'),(22,25,'_edit_lock','1309160054:1'),(23,27,'_edit_last','1'),(24,27,'_edit_lock','1307035418:1'),(25,27,'_wp_page_template','page-accomodations.php'),(30,34,'_wp_attached_file','2011/05/550-1.jpeg'),(31,34,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"550\";s:6:\"height\";s:3:\"550\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'96\'\";s:4:\"file\";s:18:\"2011/05/550-1.jpeg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(32,35,'_wp_attached_file','2011/05/550-2.jpeg'),(33,35,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"550\";s:6:\"height\";s:3:\"550\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'96\'\";s:4:\"file\";s:18:\"2011/05/550-2.jpeg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(34,36,'_wp_attached_file','2011/05/550.jpeg'),(35,36,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"550\";s:6:\"height\";s:3:\"550\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'96\'\";s:4:\"file\";s:16:\"2011/05/550.jpeg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(38,38,'_edit_last','1'),(39,38,'_edit_lock','1309160096:1'),(50,44,'_wp_attached_file','2011/05/Type6_FormerlyR.jpg'),(51,44,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"353\";s:6:\"height\";s:3:\"576\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'58\'\";s:4:\"file\";s:27:\"2011/05/Type6_FormerlyR.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(52,45,'_wp_attached_file','2011/05/Type7_FormerlyJ.jpg'),(53,45,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"353\";s:6:\"height\";s:3:\"576\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'58\'\";s:4:\"file\";s:27:\"2011/05/Type7_FormerlyJ.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(54,46,'_wp_attached_file','2011/05/Type9_FormerlyS.jpg'),(55,46,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"353\";s:6:\"height\";s:3:\"576\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'58\'\";s:4:\"file\";s:27:\"2011/05/Type9_FormerlyS.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(56,47,'_wp_attached_file','2011/05/Type11_FormerlyF.jpg'),(57,47,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"353\";s:6:\"height\";s:3:\"576\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'58\'\";s:4:\"file\";s:28:\"2011/05/Type11_FormerlyF.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(58,48,'_wp_attached_file','2011/05/Type13.jpg'),(59,48,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"353\";s:6:\"height\";s:3:\"576\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'58\'\";s:4:\"file\";s:18:\"2011/05/Type13.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(60,51,'_edit_last','1'),(61,51,'_edit_lock','1308933819:1'),(62,51,'_wp_page_template','default'),(63,53,'_edit_last','1'),(64,53,'_edit_lock','1307464610:1'),(65,53,'_wp_page_template','default'),(66,55,'_edit_last','1'),(67,55,'_edit_lock','1307464669:1'),(68,55,'_wp_page_template','default'),(69,57,'_edit_last','1'),(70,57,'_edit_lock','1307464746:1'),(71,57,'_wp_page_template','default'),(72,59,'_edit_last','1'),(73,59,'_edit_lock','1307478642:1'),(74,59,'_wp_page_template','default'),(75,61,'_edit_last','1'),(76,61,'_edit_lock','1307464774:1'),(77,61,'_wp_page_template','default'),(78,63,'_edit_last','1'),(79,63,'_edit_lock','1307479036:1'),(80,63,'_wp_page_template','default'),(81,65,'_edit_last','1'),(82,65,'_edit_lock','1307464841:1'),(83,65,'_wp_page_template','default'),(84,68,'_edit_last','1'),(85,68,'_edit_lock','1309153198:1'),(86,68,'_wp_page_template','onecolumn-page.php'),(87,72,'_edit_last','1'),(88,72,'_edit_lock','1306750756:1'),(89,72,'_wp_page_template','default'),(90,74,'_edit_last','1'),(91,74,'_edit_lock','1306415417:1'),(92,74,'_wp_page_template','default'),(101,83,'_edit_last','1'),(102,83,'_edit_lock','1309160140:1'),(103,84,'_wp_attached_file','2011/05/Type46_FormerlyN1.jpg'),(104,84,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"353\";s:6:\"height\";s:3:\"576\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'58\'\";s:4:\"file\";s:29:\"2011/05/Type46_FormerlyN1.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(105,85,'_wp_attached_file','2011/05/Type47_FormerlyN2.jpg'),(106,85,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"353\";s:6:\"height\";s:3:\"576\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'58\'\";s:4:\"file\";s:29:\"2011/05/Type47_FormerlyN2.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(107,87,'_edit_last','1'),(108,87,'_edit_lock','1309160492:1'),(109,88,'_wp_attached_file','2011/05/Type1_FormerlyC.jpg'),(110,88,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"353\";s:6:\"height\";s:3:\"576\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'58\'\";s:4:\"file\";s:27:\"2011/05/Type1_FormerlyC.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(113,91,'_edit_last','1'),(114,91,'_edit_lock','1308854163:1'),(115,101,'_edit_last','1'),(116,101,'_edit_lock','1306749374:1'),(117,101,'_wp_page_template','default'),(118,110,'_edit_last','1'),(119,110,'_edit_lock','1306810955:1'),(120,110,'_wp_page_template','default'),(133,145,'_wp_attached_file','2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg'),(134,145,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"130\";s:6:\"height\";s:3:\"110\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'113\'\";s:4:\"file\";s:58:\"2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(135,145,'_wp_attachment_image_alt','Alabama Theatre'),(136,146,'_wp_attached_file','2011/05/25739_117188041629520_117187501629574_301191_2621350_n.jpg'),(137,146,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"130\";s:6:\"height\";s:2:\"59\";s:14:\"hwstring_small\";s:23:\"height=\'58\' width=\'128\'\";s:4:\"file\";s:66:\"2011/05/25739_117188041629520_117187501629574_301191_2621350_n.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(138,146,'_wp_attachment_image_alt','Alligator Adventure'),(139,147,'_wp_attached_file','2011/05/185605_204035776273335_111374112206169_853743_1453142_n.jpg'),(140,147,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"130\";s:6:\"height\";s:2:\"93\";s:14:\"hwstring_small\";s:23:\"height=\'91\' width=\'128\'\";s:4:\"file\";s:67:\"2011/05/185605_204035776273335_111374112206169_853743_1453142_n.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(141,147,'_wp_attachment_image_alt','Barefoot Landing'),(142,149,'_wp_attached_file','2011/05/221105_10150598183460433_209961260432_18527166_4310333_o.jpg'),(143,149,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"130\";s:6:\"height\";s:2:\"99\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'126\'\";s:4:\"file\";s:68:\"2011/05/221105_10150598183460433_209961260432_18527166_4310333_o.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(144,149,'_wp_attachment_image_alt','Broadway at the Beach'),(145,151,'_wp_attached_file','2011/05/36803_426904242365_31054032365_4668034_4118876_n.jpg'),(146,151,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"130\";s:6:\"height\";s:3:\"130\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'96\'\";s:4:\"file\";s:60:\"2011/05/36803_426904242365_31054032365_4668034_4118876_n.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(147,151,'_wp_attachment_image_alt','The Carolina Opry'),(148,152,'_wp_attached_file','2011/05/165770_159098390807159_156683157715349_325517_5126739_n.jpg'),(149,152,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"130\";s:6:\"height\";s:3:\"118\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'105\'\";s:4:\"file\";s:67:\"2011/05/165770_159098390807159_156683157715349_325517_5126739_n.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(150,152,'_wp_attachment_image_alt','Celebration Music Theatre'),(151,153,'_wp_attached_file','2011/05/n60005132046_1972058_8249708.jpg'),(152,153,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"130\";s:6:\"height\";s:3:\"104\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'120\'\";s:4:\"file\";s:40:\"2011/05/n60005132046_1972058_8249708.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(153,153,'_wp_attachment_image_alt','Children\'s Museum of South Carolina'),(154,154,'_wp_attached_file','2011/05/29330_127959170555007_127958977221693_331764_1537881_n.jpg'),(155,154,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"130\";s:6:\"height\";s:3:\"133\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'93\'\";s:4:\"file\";s:66:\"2011/05/29330_127959170555007_127958977221693_331764_1537881_n.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(156,154,'_wp_attachment_image_alt','Coastal Grand Mall'),(157,155,'_wp_attached_file','2011/05/20039_235537488958_94486398958_3067222_3404770_n.jpg'),(158,155,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"130\";s:6:\"height\";s:2:\"65\";s:14:\"hwstring_small\";s:23:\"height=\'64\' width=\'128\'\";s:4:\"file\";s:60:\"2011/05/20039_235537488958_94486398958_3067222_3404770_n.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(159,155,'_wp_attachment_image_alt','Family Kingdom Amusement Park'),(160,156,'_wp_attached_file','2011/05/72254_10150319280965158_196453920157_15571741_4625780_n.jpg'),(161,156,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"130\";s:6:\"height\";s:3:\"130\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'96\'\";s:4:\"file\";s:67:\"2011/05/72254_10150319280965158_196453920157_15571741_4625780_n.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(162,156,'_wp_attachment_image_alt','House of Blues'),(163,157,'_wp_attached_file','2011/05/15867_170700122851_45187567851_2960017_1281271_n.jpg'),(164,157,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"130\";s:6:\"height\";s:2:\"77\";s:14:\"hwstring_small\";s:23:\"height=\'75\' width=\'128\'\";s:4:\"file\";s:60:\"2011/05/15867_170700122851_45187567851_2960017_1281271_n.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(165,157,'_wp_attachment_image_alt','Legends in Concert'),(166,158,'_wp_attached_file','2011/05/n43711241696_2031957_4252189.jpg'),(167,158,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"130\";s:6:\"height\";s:2:\"98\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'128\'\";s:4:\"file\";s:40:\"2011/05/n43711241696_2031957_4252189.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(168,158,'_wp_attachment_image_alt','The Market Common'),(169,159,'_wp_attached_file','2011/05/12935_202879413428_31330523428_3156769_3542982_n.jpg'),(170,159,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"130\";s:6:\"height\";s:3:\"130\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'96\'\";s:4:\"file\";s:60:\"2011/05/12935_202879413428_31330523428_3156769_3542982_n.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(171,159,'_wp_attachment_image_alt','Medieval Times'),(172,160,'_wp_attached_file','2011/05/30659_128515707171283_113684151987772_212653_3752426_n.jpg'),(173,160,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"130\";s:6:\"height\";s:2:\"62\";s:14:\"hwstring_small\";s:23:\"height=\'61\' width=\'128\'\";s:4:\"file\";s:66:\"2011/05/30659_128515707171283_113684151987772_212653_3752426_n.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(174,160,'_wp_attachment_image_alt','Myrtle Beach Boardwalk'),(175,161,'_wp_attached_file','2011/05/36253_189678207725374_113346388691890_679290_4273636_n.jpg'),(176,161,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"130\";s:6:\"height\";s:2:\"77\";s:14:\"hwstring_small\";s:23:\"height=\'75\' width=\'128\'\";s:4:\"file\";s:66:\"2011/05/36253_189678207725374_113346388691890_679290_4273636_n.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(177,161,'_wp_attachment_image_alt','Myrtle Beach Mall'),(178,162,'_wp_attached_file','2011/05/n70793224673_1768505_6774025.jpg'),(179,162,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"130\";s:6:\"height\";s:3:\"114\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'109\'\";s:4:\"file\";s:40:\"2011/05/n70793224673_1768505_6774025.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(180,162,'_wp_attachment_image_alt','Myrtle Beach Pelicans'),(181,163,'_wp_attached_file','2011/05/5815_111476139824_111222624824_2032117_1940650_n.jpg'),(182,163,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"130\";s:6:\"height\";s:2:\"58\";s:14:\"hwstring_small\";s:23:\"height=\'57\' width=\'128\'\";s:4:\"file\";s:60:\"2011/05/5815_111476139824_111222624824_2032117_1940650_n.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(183,163,'_wp_attachment_image_alt','Myrtle Waves'),(184,164,'_wp_attached_file','2011/05/19174_252369281043_209993466043_3841063_2345964_n.jpg'),(185,164,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"130\";s:6:\"height\";s:3:\"124\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'100\'\";s:4:\"file\";s:61:\"2011/05/19174_252369281043_209993466043_3841063_2345964_n.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(186,164,'_wp_attachment_image_alt','NASCAR SpeedPark'),(187,165,'_wp_attached_file','2011/05/6609_109386611532_107473016532_2615436_7261003_n.jpg'),(188,165,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"130\";s:6:\"height\";s:2:\"90\";s:14:\"hwstring_small\";s:23:\"height=\'88\' width=\'128\'\";s:4:\"file\";s:60:\"2011/05/6609_109386611532_107473016532_2615436_7261003_n.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(189,165,'_wp_attachment_image_alt','The Palace Theatre'),(190,166,'_wp_attached_file','2011/05/248098_168641923198993_103486043047915_488794_5571923_n.jpg'),(191,166,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"130\";s:6:\"height\";s:3:\"130\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'96\'\";s:4:\"file\";s:67:\"2011/05/248098_168641923198993_103486043047915_488794_5571923_n.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(192,166,'_wp_attachment_image_alt','Pirate\'s Voyage'),(193,167,'_wp_attached_file','2011/05/n52724914645_1534472_5319779.jpg'),(194,167,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"130\";s:6:\"height\";s:3:\"123\";s:14:\"hwstring_small\";s:23:\"height=\'96\' width=\'101\'\";s:4:\"file\";s:40:\"2011/05/n52724914645_1534472_5319779.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(195,167,'_wp_attachment_image_alt','Ripley\'s Aquarium'),(196,168,'_wp_attached_file','2011/05/17337_470146280006_470128185006_10677882_3874238_n.jpg'),(197,168,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"130\";s:6:\"height\";s:3:\"264\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'47\'\";s:4:\"file\";s:62:\"2011/05/17337_470146280006_470128185006_10677882_3874238_n.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(198,168,'_wp_attachment_image_alt','Second Avenue Pier'),(199,169,'_wp_attached_file','2011/05/170744_140966505959886_129530977103439_243558_6670767_o.jpg'),(200,169,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"130\";s:6:\"height\";s:2:\"90\";s:14:\"hwstring_small\";s:23:\"height=\'88\' width=\'128\'\";s:4:\"file\";s:67:\"2011/05/170744_140966505959886_129530977103439_243558_6670767_o.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(201,169,'_wp_attachment_image_alt','SkyWheel Myrtle Beach'),(202,170,'_wp_attached_file','2011/05/n25273984618_1008302_1057.jpg'),(203,170,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"130\";s:6:\"height\";s:2:\"87\";s:14:\"hwstring_small\";s:23:\"height=\'85\' width=\'128\'\";s:4:\"file\";s:37:\"2011/05/n25273984618_1008302_1057.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(204,170,'_wp_attachment_image_alt','Tanger Outlets'),(205,171,'_wp_attached_file','2011/05/193863_159995370724615_152235458167273_330537_123776_o.jpg'),(206,171,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"130\";s:6:\"height\";s:2:\"86\";s:14:\"hwstring_small\";s:23:\"height=\'84\' width=\'128\'\";s:4:\"file\";s:66:\"2011/05/193863_159995370724615_152235458167273_330537_123776_o.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(207,171,'_wp_attachment_image_alt','WonderWorks'),(208,204,'_wp_attached_file','2011/05/Type2_FormerlyD.jpg'),(209,204,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"353\";s:6:\"height\";s:3:\"576\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'58\'\";s:4:\"file\";s:27:\"2011/05/Type2_FormerlyD.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(210,205,'_wp_attached_file','2011/05/Type3_FormerlyO.jpg'),(211,205,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"353\";s:6:\"height\";s:3:\"576\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'58\'\";s:4:\"file\";s:27:\"2011/05/Type3_FormerlyO.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(212,206,'_wp_attached_file','2011/05/Type4_FormerlyP.jpg'),(213,206,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"353\";s:6:\"height\";s:3:\"576\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'58\'\";s:4:\"file\";s:27:\"2011/05/Type4_FormerlyP.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}'),(214,207,'_wp_attached_file','2011/05/Type5_FormerlyC2.jpg'),(215,207,'_wp_attachment_metadata','a:5:{s:5:\"width\";s:3:\"353\";s:6:\"height\";s:3:\"576\";s:14:\"hwstring_small\";s:22:\"height=\'96\' width=\'58\'\";s:4:\"file\";s:28:\"2011/05/Type5_FormerlyC2.jpg\";s:10:\"image_meta\";a:10:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";}}');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_posts`
--

DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext NOT NULL,
  `post_title` text NOT NULL,
  `post_excerpt` text NOT NULL,
  `post_status` varchar(20) NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) NOT NULL DEFAULT 'open',
  `post_password` varchar(20) NOT NULL DEFAULT '',
  `post_name` varchar(200) NOT NULL DEFAULT '',
  `to_ping` text NOT NULL,
  `pinged` text NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` text NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT '0',
  `post_type` varchar(20) NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=215 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_posts`
--

LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (9,1,'2011-05-25 18:50:22','2011-05-25 18:50:22','Oceans One Resort offers a higher level of seaside living in Myrtle Beach, South Carolina.  Recently voted \'BEST OF THE BEACH for Best Overall Hotel,\' our stunning combination of ultra modern architecture and contemporary decor is enhanced by the beautiful view of the Carolina Coastline. Our magnificent, fully furnished 1, 2 and 3 Bedroom Condominiums are highlighted by great property features like our state of the art indoor and outdoor mineral pools, Jacuzzi whirlpool, Lazy River, kids interactive splash area and spacious sun deck.\r\n\r\nOur convenient oceanfront location is at the foot of the NEW Myrtle Beach Boardwalk and just one block from Family Kingdom Amusement Park and the 2nd Avenue Fishing Pier. We\'re also just a short drive from Broadway at the Beach, The Market Common, Ripley\'s Aquarium, IMAX Theatre and many of the area\'s most popular attractions, restaurants, golf and shopping.\r\n<p style=\"text-align: center;\">Oceans One Resort in Myrtle Beach is a <strong>Non-Smoking Facility</strong></p>','Redefine the Traditional Myrtle Beach Vacation','','publish','open','open','','home-page','','','2011-06-02 17:17:21','2011-06-02 17:17:21','',0,'http://oor.wbtaylor.net/?page_id=9',0,'page','',0),(10,1,'2011-05-25 18:49:55','2011-05-25 18:49:55','','Home Page','','inherit','open','open','','9-revision','','','2011-05-25 18:49:55','2011-05-25 18:49:55','',9,'http://oor.wbtaylor.net/?p=10',0,'revision','',0),(11,1,'2011-05-26 07:39:59','2011-05-26 07:39:59','Oceans One Resort offers a higher level of seaside living in Myrtle Beach, South Carolina.  Recently voted \'BEST OF THE BEACH for Best Overall Hotel,\' our stunning combination of ultra modern architecture and contemporary decor is enhanced by the beautiful view of the Carolina Coastline. Our magnificent, fully furnished 1, 2 and 3 Bedroom Condominiums are highlighedt by great property features like our state of the art indoor and outdoor mineral pools, Jacuzzi whirlpool, Lazy River, kids interactive splash area and spacious sun deck.\n\nOur convenient oceanfront location is at the foot of the NEW Myrtle Beach Boardwalk and just one block from Family Kingdom Amusement Park and the 2nd Avenue Fishing Pier. We\'re also just a short drive from Broadway at the Beach, The Market Common, Ripley\'s Aquarium, IMAX Theatre and many of the area\'s most popular attractions, restaurants, golf and shopping.','Redefine the Traditional Myrtle Beach Vacation','','inherit','open','open','','9-autosave','','','2011-05-26 07:39:59','2011-05-26 07:39:59','',9,'http://oor.wbtaylor.net/?p=11',0,'revision','',0),(13,1,'2011-05-25 18:50:22','2011-05-25 18:50:22','test','Home Page','','inherit','open','open','','9-revision-2','','','2011-05-25 18:50:22','2011-05-25 18:50:22','',9,'http://oor.wbtaylor.net/?p=13',0,'revision','',0),(14,1,'2011-05-26 04:52:05','2011-05-26 04:52:05','Test content','Other Page','','publish','open','open','','other-page','','','2011-05-26 04:52:05','2011-05-26 04:52:05','',0,'http://oor.wbtaylor.net/?page_id=14',0,'page','',0),(15,1,'2011-05-26 04:51:17','2011-05-26 04:51:17','','Other Page','','inherit','open','open','','14-revision','','','2011-05-26 04:51:17','2011-05-26 04:51:17','',14,'http://oor.wbtaylor.net/index.php/2011/05/14-revision/',0,'revision','',0),(16,1,'2011-05-26 04:53:09','2011-05-26 04:53:09','Test content','Other Page','','inherit','open','open','','14-autosave','','','2011-05-26 04:53:09','2011-05-26 04:53:09','',14,'http://oor.wbtaylor.net/index.php/2011/05/14-autosave/',0,'revision','',0),(17,1,'2011-05-26 04:23:54','2011-05-26 04:23:54','test','Home','','inherit','open','open','','9-revision-3','','','2011-05-26 04:23:54','2011-05-26 04:23:54','',9,'http://oor.wbtaylor.net/index.php/2011/05/9-revision-3/',0,'revision','',0),(18,1,'2011-05-26 07:37:53','2011-05-26 07:37:53','Oceans One Resort offers a higher level of seaside living in Myrtle Beach, South Carolina.  Recently voted \'BEST OF THE BEACH for Best Overall Hotel,\' our stunning combination of ultra modern architecture and contemporary decor is enhanced by the beautiful view of the Carolina Coastline. Our magnificent, fully furnished 1, 2 and 3 Bedroom Condominiums are highlighedt by great property features like our state of the art indoor and outdoor mineral pools, Jacuzzi whirlpool, Lazy River, kids interactive splash area and spacious sun deck.\r\nOur convenient oceanfront location is at the foot of the NEW Myrtle Beach Boardwalk and just one block from Family Kingdom Amusement Park and the 2nd Avenue Fishing Pier. We\'re also just a short drive from Broadway at the Beach, The Market Common, Ripley\'s Aquarium, IMAX Theatre and many of the area\'s most popular attractions, restaurants, golf and shopping.','Redefine the Traditional Myrtle Beach Vacation','','inherit','open','open','','9-revision-4','','','2011-05-26 07:37:53','2011-05-26 07:37:53','',9,'http://oor.wbtaylor.net/index.php/2011/05/9-revision-4/',0,'revision','',0),(19,1,'2011-05-26 07:41:31','2011-05-26 07:41:31','','Blog','','publish','open','open','','blog','','','2011-05-26 07:41:31','2011-05-26 07:41:31','',0,'http://oor.wbtaylor.net/?page_id=19',0,'page','',0),(20,1,'2011-05-26 07:41:27','2011-05-26 07:41:27','','Blog','','inherit','open','open','','19-revision','','','2011-05-26 07:41:27','2011-05-26 07:41:27','',19,'http://oor.wbtaylor.net/index.php/2011/05/19-revision/',0,'revision','',0),(21,1,'2011-05-26 07:42:13','2011-05-26 07:42:13','[gallery link=\"file\" columns=\"4\"]','Blog Post','','publish','open','open','','blog-post','','','2011-05-26 10:56:33','2011-05-26 10:56:33','',0,'http://oor.wbtaylor.net/?p=21',0,'post','',0),(22,1,'2011-05-26 07:42:07','2011-05-26 07:42:07','','Blog Post','','inherit','open','open','','21-revision','','','2011-05-26 07:42:07','2011-05-26 07:42:07','',21,'http://oor.wbtaylor.net/index.php/2011/05/21-revision/',0,'revision','',0),(23,1,'2011-05-26 10:57:36','2011-05-26 10:57:36','[gallery link=\"file\" columns=\"4\"]','Blog Post','','inherit','open','open','','21-autosave','','','2011-05-26 10:57:36','2011-05-26 10:57:36','',21,'http://oor.wbtaylor.net/index.php/2011/05/21-autosave/',0,'revision','',0),(25,1,'2011-05-26 10:22:13','2011-05-26 10:22:13','These units feature 1 Bedroom with one King or two Queen beds, 1 Full Bath, and a living and dining area. There are sleeping accommodations for a maximum of four to six adults. Take advantage of multiple closets, stainless steel appliances, and more modern amenities in this unit. Enjoy the morning sunrise with your breakfast on your oceanfront balcony overlooking the white sands of the Grand Strand.\r\n\r\n[gallery size=\"medium\" link=\"file\" columns=\"2\"]','1 Bedroom Condo - Oceanfront','','publish','closed','closed','','1-bedroom-condo-oceanfront','','','2011-06-27 07:23:38','2011-06-27 07:23:38','',0,'http://oor.wbtaylor.net/?post_type=accomodation&#038;p=25',0,'accomodation','',0),(26,1,'2011-05-26 10:16:51','2011-05-26 10:16:51','','1 Bedroom Condo','','inherit','open','open','','25-revision','','','2011-05-26 10:16:51','2011-05-26 10:16:51','',25,'http://oor.wbtaylor.net/index.php/2011/05/25-revision/',0,'revision','',0),(27,1,'2011-05-26 10:28:04','2011-05-26 10:28:04','From your private balcony combined with the comfort of fully furnished and accessorized 1, 2, &amp; 3 Bedroom Oceanfront Condominiums. If this isn\'t your idea of vacation paradise, it\'s very close.\r\n\r\nThe living and dining areas were designed to provide our guests with unmatched ocean views to enhance your vacation experience. Relax and enjoy the sounds of crashing ocean waves and playing seagulls, and learn to leave all the stress and worries of everyday living at home. We have everything prepared for your visit.','Imagine one of the most magnificent views of the Carolina Coastline...','','publish','open','open','','accomodation','','','2011-06-02 17:23:38','2011-06-02 17:23:38','',0,'http://oor.wbtaylor.net/?page_id=27',0,'page','',0),(28,1,'2011-05-26 10:23:54','2011-05-26 10:23:54','from your private balcony combined with the comfort of fully furnished and accessorized 1, 2, &amp; 3 Bedroom Oceanfront Condominiums. If this isn\'t your idea of vacation paradise, it\'s very close.\nThe living and dining areas were designed to provide our guests with unmatched ocean views to enhance your vacation experience. Relax and enjoy the sounds of crashing ocean waves and playing seagulls, and learn to leave all the stress and worries of everyday living at home. We have everything prepared for your visit.','Accomodation','','inherit','open','open','','27-revision','','','2011-05-26 10:23:54','2011-05-26 10:23:54','',27,'http://oor.wbtaylor.net/index.php/2011/05/27-revision/',0,'revision','',0),(29,1,'2011-05-26 10:24:13','2011-05-26 10:24:13','from your private balcony combined with the comfort of fully furnished and accessorized 1, 2, &amp; 3 Bedroom Oceanfront Condominiums. If this isn\'t your idea of vacation paradise, it\'s very close.\r\nThe living and dining areas were designed to provide our guests with unmatched ocean views to enhance your vacation experience. Relax and enjoy the sounds of crashing ocean waves and playing seagulls, and learn to leave all the stress and worries of everyday living at home. We have everything prepared for your visit.','Imagine one of the most magnificent views of the Carolina Coastline...','','inherit','open','open','','27-revision-2','','','2011-05-26 10:24:13','2011-05-26 10:24:13','',27,'http://oor.wbtaylor.net/index.php/2011/05/27-revision-2/',0,'revision','',0),(30,1,'2011-05-26 10:25:59','2011-05-26 10:25:59','From your private balcony combined with the comfort of fully furnished and accessorized 1, 2, &amp; 3 Bedroom Oceanfront Condominiums. If this isn\'t your idea of vacation paradise, it\'s very close.\nThe living and dining areas were designed to provide our guests with unmatched ocean views to enhance your vacation experience. Relax and enjoy the sounds of crashing ocean waves and playing seagulls, and learn to leave all the stress and worries of everyday living at home. We have everything prepared for your visit.','Imagine one of the most magnificent views of the Carolina Coastline...','','inherit','open','open','','27-revision-3','','','2011-05-26 10:25:59','2011-05-26 10:25:59','',27,'http://oor.wbtaylor.net/index.php/2011/05/27-revision-3/',0,'revision','',0),(31,1,'2011-05-26 10:29:08','2011-05-26 10:29:08','From your private balcony combined with the comfort of fully furnished and accessorized 1, 2, &amp; 3 Bedroom Oceanfront Condominiums. If this isn\'t your idea of vacation paradise, it\'s very close.\nThe living and dining areas were designed to provide our guests with unmatched ocean views to enhance your vacation experience. Relax and enjoy the sounds of crashing ocean waves and playing seagulls, and learn to leave all the stress and worries of everyday living at home. We have everything prepared for your visit.','Imagine one of the most magnificent views of the Carolina Coastline...','','inherit','open','open','','27-autosave','','','2011-05-26 10:29:08','2011-05-26 10:29:08','',27,'http://oor.wbtaylor.net/index.php/2011/05/27-autosave/',0,'revision','',0),(32,1,'2011-05-26 07:42:13','2011-05-26 07:42:13','A blog post.','Blog Post','','inherit','open','open','','21-revision-2','','','2011-05-26 07:42:13','2011-05-26 07:42:13','',21,'http://oor.wbtaylor.net/index.php/2011/05/21-revision-2/',0,'revision','',0),(33,1,'2011-05-26 10:47:04','2011-05-26 10:47:04','A blog post.','Blog Post','','inherit','open','open','','21-revision-3','','','2011-05-26 10:47:04','2011-05-26 10:47:04','',21,'http://oor.wbtaylor.net/index.php/2011/05/21-revision-3/',0,'revision','',0),(34,1,'2011-05-26 10:55:45','2011-05-26 10:55:45','','550-1','','inherit','open','open','','550-1','','','2011-05-26 10:55:45','2011-05-26 10:55:45','',21,'http://oor.wbtaylor.net/wp-content/uploads/2011/05/550-1.jpeg',0,'attachment','image/jpeg',0),(35,1,'2011-05-26 10:55:48','2011-05-26 10:55:48','','550-2','','inherit','open','open','','550-2','','','2011-05-26 10:55:48','2011-05-26 10:55:48','',21,'http://oor.wbtaylor.net/wp-content/uploads/2011/05/550-2.jpeg',0,'attachment','image/jpeg',0),(36,1,'2011-05-26 10:55:50','2011-05-26 10:55:50','','550','','inherit','open','open','','550','','','2011-05-26 10:55:50','2011-05-26 10:55:50','',21,'http://oor.wbtaylor.net/wp-content/uploads/2011/05/550.jpeg',0,'attachment','image/jpeg',0),(37,1,'2011-05-26 10:50:52','2011-05-26 10:50:52','[caption id=\"\" align=\"alignnone\" width=\"550\" caption=\"Lorem Ipsum\"]<img title=\"Lorem Ipsum\" src=\"http://lorempixum.com/550/550/\" alt=\"\" width=\"550\" height=\"550\" />[/caption]\r\n\r\n[caption id=\"\" align=\"alignnone\" width=\"550\" caption=\"Dolor sit amet\"]<img title=\"Dolor sit amet\" src=\"http://lorempixum.com/550/550/\" alt=\"\" width=\"550\" height=\"550\" />[/caption]','Blog Post','','inherit','open','open','','21-revision-4','','','2011-05-26 10:50:52','2011-05-26 10:50:52','',21,'http://oor.wbtaylor.net/index.php/2011/05/21-revision-4/',0,'revision','',0),(38,1,'2011-05-26 17:52:24','2011-05-26 17:52:24','These units feature 2 Bedrooms with either one King bed each or one  with a King and one with two Queen beds. Also, 2 Baths with jacuzzi jets  in the master bath, and either 1 or 2 oceanfront balconies, depending  on the exact floorplan. Modern amenities complement the ultra-modern  styling of these units, featuring full size refrigerator with ice maker,  sitting area and hi-speed internet. Surround yourself with luxury in  this spacious, oceanfront condo.\r\n\r\n[gallery size=\"medium\" link=\"file\" columns=\"2\"]','2 Bedroom Condo - Oceanfront','','publish','closed','closed','','2-bedroom-condo','','','2011-06-27 07:34:55','2011-06-27 07:34:55','',0,'http://oor.wbtaylor.net/?post_type=accomodation&#038;p=38',0,'accomodation','',0),(44,1,'2011-05-26 12:44:56','2011-05-26 12:44:56','','Type6_FormerlyR','','inherit','open','open','','type6_formerlyr','','','2011-05-26 12:44:56','2011-05-26 12:44:56','',25,'http://oor.wbtaylor.net/wp-content/uploads/2011/05/Type6_FormerlyR.jpg',0,'attachment','image/jpeg',0),(45,1,'2011-05-26 12:44:58','2011-05-26 12:44:58','','Type7_FormerlyJ','','inherit','open','open','','type7_formerlyj','','','2011-05-26 12:44:58','2011-05-26 12:44:58','',25,'http://oor.wbtaylor.net/wp-content/uploads/2011/05/Type7_FormerlyJ.jpg',0,'attachment','image/jpeg',0),(46,1,'2011-05-26 12:45:01','2011-05-26 12:45:01','','Type9_FormerlyS','','inherit','open','open','','type9_formerlys','','','2011-05-26 12:45:01','2011-05-26 12:45:01','',25,'http://oor.wbtaylor.net/wp-content/uploads/2011/05/Type9_FormerlyS.jpg',0,'attachment','image/jpeg',0),(47,1,'2011-05-26 12:45:03','2011-05-26 12:45:03','','Type11_FormerlyF','','inherit','open','open','','type11_formerlyf','','','2011-05-26 12:45:03','2011-05-26 12:45:03','',25,'http://oor.wbtaylor.net/wp-content/uploads/2011/05/Type11_FormerlyF.jpg',0,'attachment','image/jpeg',0),(48,1,'2011-05-26 12:45:05','2011-05-26 12:45:05','','Type13','','inherit','open','open','','type13','','','2011-05-26 12:45:05','2011-05-26 12:45:05','',25,'http://oor.wbtaylor.net/wp-content/uploads/2011/05/Type13.jpg',0,'attachment','image/jpeg',0),(49,1,'2011-05-26 10:22:13','2011-05-26 10:22:13','These units feature 1 Bedroom with one King or two Queen beds, 1 Full Bath, and a living and dining area. There are sleeping accommodations for a maximum of four to six adults. Take advantage of multiple closets, stainless steel appliances, and more modern amenities in this unit. Enjoy the morning sunrise with your breakfast on your oceanfront balcony overlooking the white sands of the Grand Strand.','1 Bedroom Condo - Oceanfront','','inherit','open','open','','25-revision-2','','','2011-05-26 10:22:13','2011-05-26 10:22:13','',25,'http://oor.wbtaylor.net/index.php/2011/05/25-revision-2/',0,'revision','',0),(50,1,'2011-05-27 15:58:04','2011-05-27 15:58:04','<p>These units feature 1 Bedroom with one King or two Queen beds, 1 Full Bath, and a living and dining area. There are sleeping accommodations for a maximum of four to six adults. Take advantage of multiple closets, stainless steel appliances, and more modern amenities in this unit. Enjoy the morning sunrise with your breakfast on your oceanfront balcony overlooking the white sands of the Grand Strand.</p>\n\n[gallery link=\"file\" ]','1 Bedroom Condo - Oceanfront','','inherit','open','open','','25-autosave','','','2011-05-27 15:58:04','2011-05-27 15:58:04','',25,'http://oor.wbtaylor.net/index.php/2011/05/25-autosave/',0,'revision','',0),(51,1,'2011-05-26 12:49:41','2011-05-26 12:49:41','Located directly on the white sandy beach and Atlantic Ocean is quite a variety of swimming facilities. Highlighted by our large children\'s play and splash pool, families will always be \"in the swim\"!\r\n<h3>Features:</h3>\r\n<ul>\r\n	<li>1, 2 and 3 Bedroom Oceanfront Condos</li>\r\n	<li>4 Bedroom Townhouse (2nd Row)</li>\r\n	<li>Private Oceanfront Balcony (2 in some units)</li>\r\n	<li>Floor to Ceiling Glass Windows</li>\r\n	<li>180 degree views of Myrtle Beach and the Atlantic Ocean (corner units)</li>\r\n	<li>Internet (wi-fi)</li>\r\n	<li>Modern Decor</li>\r\n	<li>Living Area with leather seating</li>\r\n	<li>Dining Area with Table and Chairs</li>\r\n	<li>Full Kitchens with Stainless Steel Appliances</li>\r\n	<li>Granite Countertops</li>\r\n	<li>Full Size Refrigerators with Ice Maker</li>\r\n	<li>Coffee Maker</li>\r\n	<li>Jacuzzi Jetted Bathtub (Master Bedroom only)</li>\r\n	<li>Alarm Clocks</li>\r\n	<li>Flat Screen TVs</li>\r\n	<li>Tile Floors in Kitchen and Bathrooms</li>\r\n	<li>Washer</li>\r\n	<li>Dryer</li>\r\n</ul>','Oceans One Resort Amenities','','publish','open','open','','amenities','','','2011-06-24 16:43:38','2011-06-24 16:43:38','',0,'http://oor.wbtaylor.net/?page_id=51',0,'page','',0),(52,1,'2011-05-26 12:49:37','2011-05-26 12:49:37','','Amenities','','inherit','open','open','','51-revision','','','2011-05-26 12:49:37','2011-05-26 12:49:37','',51,'http://oor.wbtaylor.net/index.php/2011/05/51-revision/',0,'revision','',0),(53,1,'2011-05-26 12:50:11','2011-05-26 12:50:11','No content','Oceans One Resort Photo Galleries','','publish','open','open','','photos','','','2011-06-07 16:36:49','2011-06-07 16:36:49','',0,'http://oor.wbtaylor.net/?page_id=53',0,'page','',0),(54,1,'2011-05-26 12:50:04','2011-05-26 12:50:04','N','Photos','','inherit','open','open','','53-revision','','','2011-05-26 12:50:04','2011-05-26 12:50:04','',53,'http://oor.wbtaylor.net/index.php/2011/05/53-revision/',0,'revision','',0),(55,1,'2011-05-26 12:50:30','2011-05-26 12:50:30','<h3>Amenities</h3>\r\n<a href=\"http://hdvirtualcitytours.com/pl/12287/145/oceansoneresort\">Beach View</a>\r\n<a href=\"http://hdvirtualcitytours.com/pl/12288/190/oceansoneresort\">Kiddie Pool</a>\r\n<a href=\"http://hdvirtualcitytours.com/pl/12290/57/oceansoneresort\">Outdoor Pools</a>\r\n<a href=\"http://hdvirtualcitytours.com/pl/12293/134/oceansoneresort\">Lazy River</a>\r\n<a href=\"http://hdvirtualcitytours.com/pl/12296/3/oceansoneresort\">Indoor Pool</a>\r\n<h3>Property</h3>\r\n<a href=\"http://hdvirtualcitytours.com/pl/12285/345/oceansoneresort\">Lobby</a>\r\n<a href=\"http://hdvirtualcitytours.com/pl/13007/125/oceansoneresort\">Fitness Center</a>\r\n<a href=\"http://hdvirtualcitytours.com/pl/12283/150/oceansoneresort\">Parking Lot</a>\r\n<a href=\"http://hdvirtualcitytours.com/pl/12286/100/oceansoneresort\">Entrance</a>\r\n<a href=\"http://hdvirtualcitytours.com/pl/12299/310/oceansoneresort\">Lounge</a>\r\n<a href=\"http://hdvirtualcitytours.com/pl/12291/140/oceansoneresort\">Oceanfront</a>\r\n<h3>Rooms</h3>\r\n1 Bedroom - Type 6\r\n<a href=\"http://hdvirtualcitytours.com/pl/12304/115/oceansoneresort\">1 Bedroom - Type 7</a>\r\n1 Bedroom - Type 9\r\n<a href=\"http://hdvirtualcitytours.com/pl/12351/310/oceansoneresort\">1 Bedroom - Type 11</a>\r\n<a href=\"http://hdvirtualcitytours.com/pl/12346/340/oceansoneresort\">2 Bedroom - Type 2</a>\r\n<a href=\"http://hdvirtualcitytours.com/pl/12331/56/oceansoneresort\">2 Bedroom - Type 3</a>\r\n<a href=\"http://hdvirtualcitytours.com/pl/12313/92/oceansoneresort\">2 Bedroom - Type 4</a>\r\n2 Bedroom - Type 5\r\n<a href=\"http://hdvirtualcitytours.com/pl/12309/171/oceansoneresort\">2 Bedroom - Type 10</a>\r\n<a href=\"http://hdvirtualcitytours.com/pl/12337/120/oceansoneresort\">2 Bedroom - Type 12</a>\r\n<a href=\"http://hdvirtualcitytours.com/pl/12322/140/oceansoneresort\">3 Bedroom - Type 1</a>','Oceans One Resort Virtual Tours','','publish','open','open','','tours','','','2011-06-07 16:37:48','2011-06-07 16:37:48','',0,'http://oor.wbtaylor.net/?page_id=55',0,'page','',0),(56,1,'2011-05-26 12:50:19','2011-05-26 12:50:19','','Tours','','inherit','open','open','','55-revision','','','2011-05-26 12:50:19','2011-05-26 12:50:19','',55,'http://oor.wbtaylor.net/index.php/2011/05/55-revision/',0,'revision','',0),(57,1,'2011-05-26 12:50:43','2011-05-26 12:50:43','<object id=\"Oceans One Resort\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\"500\" height=\"280\" codebase=\"http://active.macromedia.com/flash4/cabs/swflash.cab#version=4,0,0,0\"><param name=\"movie\" value=\"/OceansOneClip.swf&quot;\" /><param name=\"quality\" value=\"high\" /><embed type=\"application/x-shockwave-flash\" width=\"500\" height=\"280\" src=\"/OceansOneClip.swf\" name=\"Movie2\" quality=\"high\" pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\"></embed></object>','Oceans One Resort Videos','','publish','open','open','','videos','','','2011-06-07 16:39:06','2011-06-07 16:39:06','',0,'http://oor.wbtaylor.net/?page_id=57',0,'page','',0),(58,1,'2011-05-26 12:50:38','2011-05-26 12:50:38','','Videos','','inherit','open','open','','57-revision','','','2011-05-26 12:50:38','2011-05-26 12:50:38','',57,'http://oor.wbtaylor.net/index.php/2011/05/57-revision/',0,'revision','',0),(59,1,'2011-05-26 12:51:01','2011-05-26 12:51:01','Just steps away from Oceans One Resort is the all new Myrtle Beach Boardwalk. The 1.2 mile boardwalk was completed in 2010 and stretches between 2nd Avenue North and 14th Avenue North in the downtown area of Myrtle Beach and has been divided into three sections.\r\n\r\n<strong>North Walkway:</strong> Extends from the 14th Avenue North Pier to Plyler Park (Mr. Joe White Avenue) providing a peaceful and tranquil environment for those seeking a more peaceful setting.  The walkway is eight feet wide and provides multiple beach access pathways.\r\n\r\n<strong>Second Section:</strong> Starting at Plyler Park (Mr. Joe White Avenue) and continuing to Eight Avenue North, the middle section of the boardwalk expands to 26-50 feet wide and is in the heart of it all. Featuring some of the most recognizable restaurants and bars (Oceanfront Bar and Grill, Marvin’s, The Bowery), shopping (Gay Dolphin), arcades, ice cream shops and more!  One of the newest additions can’t be missed; the all new SkyWheel Myrtle Beach is an observation wheel that stands 200 feet above sea level providing unparalleled views of the Grand Strand along with an amazing light show at night. Alongside this sits the newly opened Landshark Bar &amp; Grill, the latest Jimmy Buffet themed restaurant to open to rave reviews! Also included in the second section is the old Myrtle Beach Pavilion site which now provides the space for multiple music festivals, traveling exhibits and more throughout the year.\r\n\r\n<strong>South Promenade:</strong> Completing the Boardwalk from 8th Avenue North to First Avenue North is the South Promenade. This section is home to multiple benches allowing you to sit back and remember why you love Myrtle Beach and all the memories you have created.  You can walk along the main walkways (12 feet wide) or take the secondary pathways (8 feet wide). The South Promenade is also home to the newly renovated Second Avenue Pier featuring the Pier House restaurant and Pier View Open Air Bar. In June, fireworks shows are displayed every Wednesday night from the pier starting at 9:30pm!\r\n\r\nThe Myrtle Beach Boardwalk has quickly become a must see attraction by locals and vacationers regardless of the time of year while the festivals and events along the Boardwalk have become some of the most popular in the area.  March kicks off with the St. Patrick’s Day Festival and features free concerts throughout the day with past headliners such as Uncle Kracker and Sister Hazel. June, July and August get rolling with Hot Summer Nights, where the Boardwalk comes to life 7 nights a week featuring bands, fireworks, kids’ carnival, entertainers and more. Completing the festival lineup in October is Oktoberfest offering authentic German food, beer and wine along with another day of free concerts. All events are kid friendly and offer alcohol free zones, inflatables, entertainers and more!','Myrtle Beach Boardwalk','','publish','open','open','','boardwalk','','','2011-06-07 16:34:51','2011-06-07 16:34:51','',0,'http://oor.wbtaylor.net/?page_id=59',0,'page','',0),(60,1,'2011-05-26 12:50:55','2011-05-26 12:50:55','','Boardwalk','','inherit','open','open','','59-revision','','','2011-05-26 12:50:55','2011-05-26 12:50:55','',59,'http://oor.wbtaylor.net/index.php/2011/05/59-revision/',0,'revision','',0),(61,1,'2011-05-26 12:51:34','2011-05-26 12:51:34','<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\"><img class=\"alignleft size-full wp-image-145\" title=\"Alabama Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\" alt=\"Alabama Theatre\" width=\"130\" height=\"110\" /></a>Alabama Theatre</h4>\r\nVoted the #1 Live Theatre Attraction by Myrtle Beach Visitors featuring the Best in Family Entertainment is located in Barefoot Landing in North Myrtle Beach. The Alabama Theatre long standing performance is \"one The Show\". It has become a go-to show every vacation as the show changes from year to year. one features musical genres such as Country, Gospel, Broadway, Pop and Rock and don\'t forget the comedy! one is family favorite and a show you will never regret. If you visit during the holiday season, you will want to catch the other staple at Alabama Theatre - The South\'s Grandest Christmas Show. This family friendly holiday show features musical performances, dance and plenty of laughter from resident comedian Ricky Mokel. In addition to the regular shows, you will also have the opportunity to see live concerts from chart topping artists such as Kenny Rogers, The Oak Ridge Boys, LeeAnn Rimes and more!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/25739_117188041629520_117187501629574_301191_2621350_n.jpg\"><img class=\"alignleft size-full wp-image-146\" title=\"Alligator Adventure\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/25739_117188041629520_117187501629574_301191_2621350_n.jpg\" alt=\"Alligator Adventure\" width=\"130\" height=\"59\" /></a>Alligator Adventure</h4>\r\nLocated adjacent to Barefoot Landing in North Myrtle Beach, Alligator Adventure puts you face to face with reptiles, alligators, crocodiles, lemurs, tropical birds, tigers, beavers and bats...oh my! Their live shows are a favorite among visitors and feature Alligator Live Feedings in the warmer months (Mid-April through Mid-October), Alligator Handling and Lecture in the cooler months and Snake Handling. Alligator Adventure is also home to UTAN - King of Crocs, the largest crocodile in the United States measuring over 20 feet long! Tickets can be purchased online or at the ticket counter and discounts are available including Active Military discounts and a Locals discount. You also receive a 2nd day free with any paid admission, you can\'t afford not to experience Alligator Adventure!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/185605_204035776273335_111374112206169_853743_1453142_n.jpg\"><img class=\"alignleft size-full wp-image-147\" title=\"Barefoot Landing\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/185605_204035776273335_111374112206169_853743_1453142_n.jpg\" alt=\"Barefoot Landing\" width=\"130\" height=\"93\" /></a>Barefoot Landing</h4>\r\nBarefoot Landing, sitting along the Intercoastal Waterway, in North Myrtle Beach  is home to the Alabama Theatre, House of Blues, multiple restaurants, more than 100 specialty and retail shops and entertainment! During the summer months you can sit back and enjoy fireworks over the lake and also get up close and personal with exotic animals at the TIGERS Exhibit. SummerFest brings excitement all over Barefoot Landing with parades, magicians, clowns, face painters, stilt walkers, jugglers and more 7 nights a week! Barefoot Landing is conveintently located to both Myrtle Beach and North Myrtle Beach travelers wanting to take it slow and easy....that\'s the beach way, that\'s the Barefoot Way.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/221105_10150598183460433_209961260432_18527166_4310333_o.jpg\"><img class=\"alignleft size-full wp-image-149\" title=\"Broadway at the Beach\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/221105_10150598183460433_209961260432_18527166_4310333_o.jpg\" alt=\"Broadway at the Beach\" width=\"130\" height=\"99\" /></a>Broadway at the Beach</h4>\r\nIf you\'re looking for one place to go that has everything, Broadway at the Beach is 350 acres of paradise and was voted #1 Attraction in Myrtle Beach according to Trip Advisor. Featuring shopping, dining, nightlife, and entertainment you simply can not go wrong. 2011 brings new excitement and merchants such as WonderWorks Myrtle Beach (an amusement park for your mind), Legends in Concert (Myrtle Beach favorite recently relocated from Surfside Beach) and Bodies Revealed (summer months only). New restaurants feature Carlos \'n Charlies (family friendly Mexican restuarant), Tilted Kilt Pub &amp; Eatery (Scottish themed pub and festive eatery) and Good Time Charley\'s (American featuring sandwiches, hamburgers and more). You can still enjoy your favorites such as IMAX 3D Theatre, MagiQuest, Senor Frogs, Ripley\'s Aquarium, Jimmy Buffet\'s Margaritaville just to name a few. For those who once loved the Myrtle Beach Pavilion be sure to visit the Pavilion Nostaglia Park featuring some of the Pavilion\'s most popular rides including the historical carousel. Year round events and parades are some of the most popular in the area while the Fireworks show over Lake Broadway is a must see during the summer months and on special occasions. Shop, Dine, Dance, Play...It’s Broadwayyy Fun in Myrtle Beach!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36803_426904242365_31054032365_4668034_4118876_n.jpg\"><img class=\"alignleft size-full wp-image-151\" title=\"The Carolina Opry\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36803_426904242365_31054032365_4668034_4118876_n.jpg\" alt=\"The Carolina Opry\" width=\"130\" height=\"130\" /></a>The Carolina Opry</h4>\r\nCalvin Gilmore presents four legendary shows all in one legendary theater, The Carolina Opry located at Broadway at the Beach. For 25 years The Carolina Opry has been entertaining everyone who has walked through the door with 2 hours of high-energy music, comedy and dance. Good Vibrations features the best music from the 60s, 70s and 80s in a fast-paced show that will bring you back to the best in American popular music. The Carolina Opry Christmas Special combines the best of the holiday spirit with beloved musical performances, fresh comedy and breathtaking dance. LIGHT See The Music offers a one of a kind view of music with a lazer light show set to a variety of muscial genres. New for 2011 is Beatlemania Now! as seen on Broadway and recaptures everything you loved about The Beatles. Beatlemania Now! will run from June 15-September 4 and showtimes are at 5pm Wed-Sun. If you only see one show...it should be at The Carolina Opry.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/165770_159098390807159_156683157715349_325517_5126739_n.jpg\"><img class=\"alignleft size-full wp-image-152\" title=\"Celebration Music Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/165770_159098390807159_156683157715349_325517_5126739_n.jpg\" alt=\"Celebration Music Theatre\" width=\"130\" height=\"118\" /></a>Celebration Music Theatre</h4>\r\nNew for 2011 and located in Surfside Beach, Celebration Music Theatre features the legendary tribute artist show SUPERSTARZ! Live and the Broadway Celebration Series. They also offer a \"just for kids\" production called \"the Rocktastics!\" that will be performing June 15 - August 6. Don\'t miss their Broadway line-up for 2011 with the Minnie Pearl Gospel Hour, All Shook Up, Hairspray, The Southern Bellers and A Christmas Carol.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n60005132046_1972058_8249708.jpg\"><img class=\"alignleft size-full wp-image-153\" title=\"Children\'s Museum of South Carolina\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n60005132046_1972058_8249708.jpg\" alt=\"Children\'s Museum of South Carolina\" width=\"130\" height=\"104\" /></a>Children\'s Museum of South Carolina</h4>\r\nCome \"Touch, Explore, and Play...\" while learning about your world through the interactive exhibits and programs at The Children\'s Museum of South Carolina. Located near the Myrtle Beach Convention Center, CMSC offers special programs, such as Tales for Tots and Digitalis Planetarium, are extremely popular with the adults and children who visit the Museum. With a wide variety of interactive exhibits kids of all ages are sure to have a fun learning experience.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/29330_127959170555007_127958977221693_331764_1537881_n.jpg\"><img class=\"alignleft size-full wp-image-154\" title=\"Coastal Grand Mall\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/29330_127959170555007_127958977221693_331764_1537881_n.jpg\" alt=\"Coastal Grand Mall\" width=\"130\" height=\"133\" /></a>Coastal Grand Mall</h4>\r\nFeaturing anchor stores Belk, Dillard\'s, JC Penney and Sears; Coastal Grand Mall has quickly become the #1 mall in Myrtle Beach. Featuring more than 100 stores and restaurants, you will find everything you were looking for...and then some! After you have shopped until you drop, sit down and relax in the state of the art 14 screen Cinemark Movie Theater or enjoy something to eat at Abuelo\'s, Texas Roadhouse, Red Robin and more. Treat everyone in the family to something unique from Coastal Grand Mall.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/20039_235537488958_94486398958_3067222_3404770_n.jpg\"><img class=\"alignleft size-full wp-image-155\" title=\"Family Kingdom Amusement Park\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/20039_235537488958_94486398958_3067222_3404770_n.jpg\" alt=\"Family Kingdom Amusement Park\" width=\"130\" height=\"65\" /></a>Family Kingdom Amusement Park</h4>\r\nJust one block from Oceans One Resort you will find Myrtle Beach\'s only Seaside Amusement Park and Oceanfront Water Park, Family Kingdom! Featuring Go Karts, Kiddie Rides, Family Rides, Water Rides and Thrill Rides the entire family can enjoy their time in the park. Best of all, there is NO ADMISSION FEE! New for 2011 is the Picnic Pavilion, a covered dining area that can accommodate up to 100 guests for birthday parties, family reunions or any other group outing.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/72254_10150319280965158_196453920157_15571741_4625780_n.jpg\"><img class=\"alignleft size-full wp-image-156\" title=\"House of Blues\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/72254_10150319280965158_196453920157_15571741_4625780_n.jpg\" alt=\"House of Blues\" width=\"130\" height=\"130\" /></a>House of Blues</h4>\r\nThe House of Blues Myrtle Beach, located in Barefoot Landing, offers live music on the Sugar Shack Deck and the Concert Hall and delta inspired cuisine in their world famous restuarant. With leading acts from country, rock, top 40 and more your vacation won\'t be complete without the intimate setting with your favorite artist. You can even \"Pass the Line\" and \"Crash the Barricade\" to gain entry first into the concerts. The Gospel Brunch in the restaurant is something that shouldn\'t missed with an amazing buffet and inspiring gospel performances. Where the heart meets the soul®. The ultimate live music and dining experience.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/15867_170700122851_45187567851_2960017_1281271_n.jpg\"><img class=\"alignleft size-full wp-image-157\" title=\"Legends in Concert\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/15867_170700122851_45187567851_2960017_1281271_n.jpg\" alt=\"Legends in Concert\" width=\"130\" height=\"77\" /></a>Legends in Concert</h4>\r\nThe World\'s Longest Running Live Tribute Show, Legends in Concert has been a favorite in Myrtle Beach for years and offering a variety of concerts and live shows and many other activities for all ages. Legends in Concert recently relocated a state-of-the-art theater in Broadway at the Beach next to Planet Hollywood!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n43711241696_2031957_4252189.jpg\"><img class=\"alignleft size-full wp-image-158\" title=\"The Market Common\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n43711241696_2031957_4252189.jpg\" alt=\"The Market Common\" width=\"130\" height=\"98\" /></a>The Market Common</h4>\r\nA place where you can experience exceptional shopping and dining in a beautifully-designed village setting. From the nation’s most celebrated names in retail to ice cream and pizza for the kids, and from one-of-a-kind restaurants to the most comfortable movie theater at the beach, The Market Common is always worth your time. The Market Common is also home to multiple festivals all year long, such as Sun Fun Festival, Beerfest, Myrtle Beach Wine Fest, Oktoberfest and more!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/12935_202879413428_31330523428_3156769_3542982_n.jpg\"><img class=\"alignleft size-full wp-image-159\" title=\"Medieval Times\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/12935_202879413428_31330523428_3156769_3542982_n.jpg\" alt=\"Medieval Times\" width=\"130\" height=\"130\" /></a>Medieval Times</h4>\r\nInside the stone walls of the 11th century-style castle, Medieval Spain comes to life as six knights, donning authentic armor, clash in a jousting tournament for the title of King\'s Champion. Let your imagination take you to Medieval Times.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/30659_128515707171283_113684151987772_212653_3752426_n.jpg\"><img class=\"alignleft size-full wp-image-160\" title=\"Myrtle Beach Boardwalk\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/30659_128515707171283_113684151987772_212653_3752426_n.jpg\" alt=\"Myrtle Beach Boardwalk\" width=\"130\" height=\"62\" /></a>Myrtle Beach Boardwalk</h4>\r\nThe Myrtle Beach Boardwalk opened in 2010 to rave reviews! The 1.2 mile boardwalk stretches from 14th Avenue North to 2nd Avenue North in the heart of Myrtle Beach. The Myrtle Beach Boardwalk is home to restaurants, shopping, arcades, ice cream shops and more. In the center of it all is the brand new SkyWheel Myrtle Beach and Landshark Bar &amp; Grill which opened to rave reviews in May 2011!  Check out our <a title=\"Boardwalk\" href=\"http://oor.wbtaylor.net/index.php/boardwalk/\">Myrtle Beach Boardwalk page</a> for more information.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36253_189678207725374_113346388691890_679290_4273636_n.jpg\"><img class=\"alignleft size-full wp-image-161\" title=\"Myrtle Beach Mall\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36253_189678207725374_113346388691890_679290_4273636_n.jpg\" alt=\"Myrtle Beach Mall\" width=\"130\" height=\"77\" /></a>Myrtle Beach Mall</h4>\r\nConveinently located at the corner of Highways 22 and 17, Myrtle Beach Mall continues to provide shoppers with unique stores and value not offered by other malls in the area. Two Belk stores, JCPenney are the long standing anchors and are now accompanied by the only Bass Pro Shops in South Carolina! The mall is also home to Uptown Theater, Home of the Carolina Improv, an improv comedy about living and playing Myrtle Beach. If you aren\'t sure what you need, shopping at Myrtle Beach Mall will help you figure it out.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n70793224673_1768505_6774025.jpg\"><img class=\"alignleft size-full wp-image-162\" title=\"Myrtle Beach Pelicans\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n70793224673_1768505_6774025.jpg\" alt=\"Myrtle Beach Pelicans\" width=\"130\" height=\"114\" /></a>Myrtle Beach Pelicans</h4>\r\nThe Myrtle Beach Pelicans have been bringing minor league baseball to the beach since 1999 and as of 2011 are the Advanced \'A\' Affiliate of the Texas Rangers. With various promotions and events, including multiple fireworks shows, the Myrtle Beach Pelicans are a family favorite stop on their vacation. Kids are allowed to run the bases following the game and play catch on the field prior to the start of the game.  To add to the fun you always have to be on the lookout for Splash, the official mascot who is usually up to no good; Rally Shark, who adds excitement late in the game and the always popular, Deuce - part bat boy, part ball caddy. As they say...Baseball\'s Even Better at the Beach!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5815_111476139824_111222624824_2032117_1940650_n.jpg\"><img class=\"alignleft size-full wp-image-163\" title=\"Myrtle Waves\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5815_111476139824_111222624824_2032117_1940650_n.jpg\" alt=\"Myrtle Waves\" width=\"130\" height=\"58\" /></a>Myrtle Waves</h4>\r\nVoted 1st Place in Best of the Beach in 2010, Myrtle Waves offers over 20 acres of swerves, curves, waves, and chutes and over 1 million gallons of water! Raft rides, Slides and Family Attractions make this a one-stop place for all around family fun in the sun. The younger kids will enjoy Bubble Bay and Saturation Station while the older kids (and adults) have a blast twisting and turning on Racin\' River, Turbo Twisters, Riptide Rockets Night Flight and more. Myrtle Waves is open seasonally (mid-May thru mid-September) and season passes are available.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/19174_252369281043_209993466043_3841063_2345964_n.jpg\"><img class=\"alignleft size-full wp-image-164\" title=\"NASCAR SpeedPark\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/19174_252369281043_209993466043_3841063_2345964_n.jpg\" alt=\"NASCAR SpeedPark\" width=\"130\" height=\"124\" /></a>NASCAR SpeedPark</h4>\r\nIf speed is your thing then the NASCAR SpeedPark is for you, boasting over 26 acres of the industries hottest go-kart tracks, family rides, mini-golf courses, midway games, in addition to family dining in a relaxed and fun environment. Challenge everyone in your family to a little race and a lot of fun. NASCAR SpeedPark is open year round and various tickets pacakages are available.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/6609_109386611532_107473016532_2615436_7261003_n.jpg\"><img class=\"alignleft size-full wp-image-165\" title=\"The Palace Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/6609_109386611532_107473016532_2615436_7261003_n.jpg\" alt=\"The Palace Theatre\" width=\"130\" height=\"90\" /></a>The Palace Theatre</h4>\r\nThe Palace Theatre is located at Broadway at the Beach and is home to the best in live entertainment. Their 2011 lineup includes Hooray for Hollywood which will take you back through 50 years of movie history inlcuding some of the most popular song and dance routines from movies such as Singing in the Rain and Disney\'s \"Jungle Book\". Back by popular demand is The Magical Spirit of Ireland, enjoy sounds from the Irish Tenors and the world renowned Spirit of the Dance dancers. Get your heart pumping and your pulse racing with Le Grand Cirque Adreneline, a 2 hour death defying performance filled with contortionists, tumblers, incredible aerial acts as well as the breathtaking Wheel of Death. Start your holiday season in style with Christmas on Ice, a a one-of-a-kind show that is sure to be an instant family hit as Santa and his helpers take you on a journey around a 40 foot ice skating rink. The Palace Theatre boasts an elegance and beauty unrivaled by any other Theatre in South Carolina.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/248098_168641923198993_103486043047915_488794_5571923_n.jpg\"><img class=\"alignleft size-full wp-image-166\" title=\"Pirate\'s Voyage\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/248098_168641923198993_103486043047915_488794_5571923_n.jpg\" alt=\"Pirate\'s Voyage\" width=\"130\" height=\"130\" /></a>Pirate\'s Voyage</h4>\r\nAll new for 2011, Pirate\'s Voyage is the latest live dinner show from Dolly Parton. After closing the doors on the long time running Dixie Stampede, Dolly Parton has revamped the venue into a pirates dream! Featuring 15 foot deep, 750 thousand gallon  lagoon, and 3 full-sized ships, complete with pirates, battling over who will take the treasure. Just revealed was the live animal show which will feature a sea lion who will perform and even \"arrrrrrrrgh\" multiple times during the show. The dinner menu has been updated as well but still continues with the ever popular soup from Dixie Stampede. Pirate\'s Voyage opens on June 3rd, 2011...it\'s time to get your tickets, matey!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n52724914645_1534472_5319779.jpg\"><img class=\"alignleft size-full wp-image-167\" title=\"Ripley\'s Aquarium\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n52724914645_1534472_5319779.jpg\" alt=\"Ripley\'s Aquarium\" width=\"130\" height=\"123\" /></a>Ripley\'s Aquarium</h4>\r\nRipley\'s Aquarium Myrtle Beach can be found at Broadway at the Beach. Sea life is abundant in the aquarium with more than 350 individual species featuring 10,000 exotic sea creatures. Get hands on in the Discovery Center by holding a horseshoe crab or head over to Ray Bay, where you can reach out and touch a stingray as they glide by. See some of the more exotic fish from the Amazon River at Rio Amazon or get a glimpse of color at Rainbow Rock where the brightly colored Indo-Pacific fish swim through a coral reef. A new exhibit for 2011 gets you up close and personal with the ocean\'s most feared predator, Sharks-Perfect Predators features over a dozen species of sharks and interactive exhibits where you can even feel the force of a shark bite! Don\'t let your eyes fool you, another new exhibit for 2011 is Mermaids, a captivating show that will occur 3 times daily followed by meet and greets. If you\'re looking for family fun that is also educational, Ripley\'s Aquarium needs to be on your list!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/17337_470146280006_470128185006_10677882_3874238_n.jpg\"><img class=\"alignleft size-full wp-image-168\" title=\"Second Avenue Pier\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/17337_470146280006_470128185006_10677882_3874238_n.jpg\" alt=\"Second Avenue Pier\" width=\"130\" height=\"264\" /></a>Second Avenue Pier</h4>\r\nRecently renovated, Second Avenue Pier, which has been around since 1936, is located on the southern portion of the Myrtle Beach Boardwalk and just steps away from Oceans One Resort. The pier now features the Pier House Restaurant and Pier View Bar &amp; Lounge (open air bar) as well as what the pier has been famous for...fishing! During the summer season, Second Avenue Pier is home to an amazing fireworks display every Wednesday night as part of the Hot Summer Nights on the Boardwalk. Whether you want to relax with some fishing poles, eat breakfast, lunch or dinner, or simply enjoy a tasty beverage in the ocean breeze, Second Avenue Pier is the place to be!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/170744_140966505959886_129530977103439_243558_6670767_o.jpg\"><img class=\"alignleft size-full wp-image-169\" title=\"SkyWheel Myrtle Beach\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/170744_140966505959886_129530977103439_243558_6670767_o.jpg\" alt=\"SkyWheel Myrtle Beach\" width=\"130\" height=\"90\" /></a>SkyWheel Myrtle Beach</h4>\r\n<strong></strong>It\'s tall, it\'s round and it has a light show...yes, the SkyWheel Myrtle is hard to miss along the Myrtle Beach Boardwalk and for all the right reasons.  Standing 200 feet above sea level, you can enjoy a view rarely seen of the Grand Strand in one of 42 temperature controlled glass gondolas. At night a spectacular LED lightshow begins, giving that extra spark to downtown Myrtle Beach. Operating year round, your flight will consist of three rotations and ranges from 8-12 minutes in length and is the first observation wheel of its kind in the United States.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n25273984618_1008302_1057.jpg\"><img class=\"alignleft size-full wp-image-170\" title=\"Tanger Outlets\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n25273984618_1008302_1057.jpg\" alt=\"Tanger Outlets\" width=\"130\" height=\"87\" /></a>Tanger Outlets</h4>\r\n<strong></strong>Shop guilt free at either Tanger Outlets located in both Myrtle Beach on 501 or on Kings Highway near Myrtle Beach Mall. With stores such as Coach, kate spade, Old Navy, Gap, Levi\'s, Under Armour, Carter\'s, Disney Store and many, many more; you are sure to find something for the entire family, even Dad! Not only will you find the nation’s leading designer and brand name stores with the widest selection but the prices are also backed by the Best Price Guarantee. When you shop at Tanger Outlets, you can shop with confidence while on vacation.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/193863_159995370724615_152235458167273_330537_123776_o.jpg\"><img class=\"alignleft size-full wp-image-171\" title=\"WonderWorks\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/193863_159995370724615_152235458167273_330537_123776_o.jpg\" alt=\"WonderWorks\" width=\"130\" height=\"86\" /></a>WonderWorks</h4>\r\n<strong></strong>A new attraction at Broadway at the Beach in 2011 is WonderWorks, an indoor interactive amusement park for the mind. Whether you are driving by or walking around Broadway at the Beach, you can\'t help but be amazed at the building that appears to have fallen from the sky and landed upside down. WonderWorks features more than 100 exhibits that allow you to interact, discover and explore! Feel the 84 mph winds of a hurricane, build your own roller coaster or submarine adventure with WonderSimulators, pilot a fighter jet, manuever the controls of a NASA spacecraft or simply have fun with bubbles in the Bubble Lab. WonderWorks is open year round, seven days a week and they suggest you allow 3-4 hours to get the full experience.','Things to Do in Myrtle Beach','','publish','open','open','','things-to-do','','','2011-06-07 16:39:33','2011-06-07 16:39:33','',0,'http://oor.wbtaylor.net/?page_id=61',0,'page','',0),(62,1,'2011-05-26 12:51:15','2011-05-26 12:51:15','','Things to Do','','inherit','open','open','','61-revision','','','2011-05-26 12:51:15','2011-05-26 12:51:15','',61,'http://oor.wbtaylor.net/index.php/2011/05/61-revision/',0,'revision','',0),(63,1,'2011-05-26 12:51:50','2011-05-26 12:51:50','<h1>May 2011</h1>\r\n<h3>FREE Military Concert</h3>\r\n<strong> May 06 </strong>\r\nLocation: Downtown Myrtle Beach between 8th Ave North and 9th Ave North\r\nBands TBA\r\n<h3>Coastal Uncorked</h3>\r\n<strong> May 08   - 15 </strong>\r\n\r\nLocation: Various locations throughout Myrtle Beach area\r\nThe festival features a restaurant week; a wine tasting trolley tour of  Myrtle Beach; Paula Deen featured event; outdoor entertainment at Market  Common and the Myrtle Beach Boardwalk and Promenade; the Coastal  Uncorked Golf Tournament; and the Coastal Uncorked Food Fight Gala.  A portion of the funds raised will be donated to the Horry-Georgetown  Technical College Culinary Arts School and the Coastal Carolina  University’s Clay Brittain Jr. Center for Resort Tourism\r\n<h3>Myrtle Beach Bike Week - Spring Rally</h3>\r\n<strong> May 13   - 22 </strong>\r\n\r\nLocation: Various locations throughout the Grand Strand\r\nThe Carolina\'s Largest Motorcycle Event!\r\n<h3>FREE Military Concert</h3>\r\n<strong> May 13 </strong>\r\n\r\nLocation: Downtown Myrtle Beach between 8th Ave North and 9th Ave North\r\nFeaturing: 282nd US Army Band (Full stage band) at 8 p.m.\r\n<h3>First Annual Myrtle Beach Mud Run and Y Mini Mud Run</h3>\r\n<strong> May 14   - 14 </strong>\r\n\r\nLocation: Marina Inn at Grande Dunes\r\nThe 3.5 mile course is an all-terrain race on dirt roads, improved  trails and unimproved trails through one of the undeveloped areas in  Myrtle Beach.  The trail will include mud holes, walls, trenches and  other obstacles that require crawling, climbing and jumping.  Come  prepared to get muddy!  A portion of the proceeds will benefit the Grand  Strand Humane Society.  For more information and on-line registration,  visit http://www.myrtlebeachmudrun.com.\r\n<h3>FREE Military Concert</h3>\r\n<strong> May 20 </strong>\r\n\r\nLocation: Downtown Myrtle Beach between 8th Ave North and 9th Ave North\r\nFeaturing: 208th US Army Reserve Band at 7 p.m.\r\n<h3>Beach Blast! Christian Music Festival</h3>\r\n<strong> May 21 </strong>\r\n\r\nLocation: Downtown Myrtle Beach between 8th Ave North and 9th Ave North\r\nScheduled Performers:  - Toby Mac - Skillet - LeCrae - Disciple - Anthem Lights - Speaker Bob Lenz\r\n<h3>Vietnam Memorial Wall Exhibit</h3>\r\n<strong> May 25   - 27 </strong>\r\n\r\nLocation: Downtown Myrtle Beach between 8th Ave North and 9th Ave North\r\nA half-scale replica of the Vietnam Veterans Memorial in Washington,  D.C., designed to travel to communities throughout the United States.  Also featuring a Traveling Museum and Information Center.\r\n<h3>FREE Military Concert</h3>\r\n<strong> May 27 </strong>\r\n\r\nLocation: Downtown Myrtle Beach between 8th Ave North and 9th Ave North\r\nFeaturing:  282nd Army Band Jazz Combo- 6 p.m.             Navy Band 5 Star Edition- 7:15pm\r\n<h3>Memorial Day Weekend Festivities</h3>\r\n<strong> May 28   - 30 </strong>\r\n\r\nLocation: Downtown Myrtle Beach starting at 27th Ave North and heads south to 9th Ave North\r\nCelebrate active military members and veterans who have served our  country. US Senator John McCain will serve as Grand Marshall during the  parade.  Following the parade there will be food, vendors and celebrity  appearances!  Scheduled Celebrities: - Jeanette McCurdy from iCarly - Noah Munck from iCarly - Ethan Munck from iCarly - Ariana Grande from Victorious - Jake T. Austin from Wizards of Waverly Place - Doug Brochu from Sonny with a Chance - Zendaya Coleman from Shake It Up!\r\n<h3>5K Run/Walk</h3>\r\n<strong> May 29   - 29 </strong>\r\n\r\nLocation: Grand Park at The Market Common - 8:00 a.m. (Wheelchairs start at 7:55 a.m.)\r\nEnjoy this morning run/walk around The Market Common and Grand Park,  beginning at Crabtree Memorial Gym.  It\'s free for active duty, reserves  and veterans, or $20 for civilians.  Visit  http://militaryappreciationdays.com/ for more details and registration  forms.\r\n<h1>June 2011</h1>\r\n<h3>Hot Summer Nights</h3>\r\n<strong> Jun 01   - 30 </strong>\r\n\r\nLocation: Plyler Park on the Myrtle Beach Boardwalk\r\nMondays: Free Kids\' Carnival 7-10pm (Plyer Park)  Tuesday / Thursday / Saturday: Free Concerts 8pm-12am (Plyer Park) see  http://myrtlebeachdowntown.com/events/summer-concert-schedule/ for  concert lineup  Wednesdays: Fireworks over the Ocean 9:30pm (2nd Avenue Pier)  Fridays: Strolling Dixie Band 8pm (along the Myrtle Beach Boardwalk)  Sundays: Whacker Barrell 7-10pm (along the Myrtle Beach Boardwalk)\r\n<h3>Fireworks</h3>\r\n<strong> Jun 01   - 01 </strong>\r\n\r\nLocation: Second Avenue Pier\r\nFireworks over the Atlantic Ocean - starts at 9:30pm\r\n<h3>60th Annual Sun Fun Festival</h3>\r\n<strong> Jun 03   - 04 </strong>\r\n\r\nLocation: Grand Park @ The Market Common\r\nFeaturing the famous Miss Sun Fun USA and Teen USA pageants, this  festival has become a staple in Myrtle Beach over the past 60 years.   The festival also includes a variety of games, sporting events, kid\'s  fair and more! Stay tuned for more details.\r\n<h3>The World\'s Largest Covertible Car Show</h3>\r\n<strong> Jun 04   - 05 </strong>\r\n\r\nLocation: The Market Common\r\nSaturday, June 4 from 10am to 5pm and Sunday, June 5 from 12pm to 5pm.  The Sun Fun Festival will host the World\'s Largest Convertible Car Show  at Grand Park at Market Common. Enter your car today and you can be a  part of helping set the Guinness Book World Record for the most cars  ever to be in a convertible car show! Cash prizes will be awarded for  fan favorites and more. Proceeds benefit the Make-A-Wish Foundation of  South Carolina.\r\n<h3>SC Fire-Rescue Conference</h3>\r\n<strong> Jun 06   - 11 </strong>\r\n\r\nLocation: Myrtle Beach Convention Center\r\nThe 106th Annual South Carolina Fire-Rescue Conference will be held  again in Myrtle Beach, SC.  The conference features training, education,  speakers, over 150 vendors as well as a Firefighter Challenge, an Auto  Extrication Competition.\r\n<h3>Fireworks</h3>\r\n<strong> Jun 08   - 08 </strong>\r\n\r\nLocation: Second Avenue Pier\r\nFireworks over the Atlantic Ocean - starts at 9:30pm\r\n<h3>Grand Strand Fishing Rodeo</h3>\r\n<strong> Jun 10   - 12 </strong>\r\n\r\nLocation: Various Locations\r\nSpring King Mackerel Fishing Tournament\r\n<h3>Fireworks</h3>\r\n<strong> Jun 15   - 15 </strong>\r\n\r\nLocation: Second Avenue Pier\r\nFireworks over the Atlantic Ocean - starts at 9:30pm\r\n<h3>Fireworks</h3>\r\n<strong> Jun 22   - 22 </strong>\r\n\r\nLocation: Second Avenue Pier\r\nFireworks over the Atlantic Ocean - starts at 9:30pm\r\n<h3>2011 USA Youth Outdoor Track &amp; Field Championships</h3>\r\n<strong> Jun 28   - 28 </strong>\r\n\r\nLocation: Doug Shaw Stadium - Myrtle Beach, SC\r\nThe 2011 USA Youth Outdoor Track &amp; Field Championships will be held  in Myrtle Beach, SC at Doug Shaw Stadium. The 2011 Championships will be  even more exciting for athletes, coaches, family members, and  spectators alike! This event typically produces several youth national  records and is the only track &amp; field competition that also awards  team championships in every age division!\r\n<h3>Fireworks</h3>\r\n<strong> Jun 29   - 29 </strong>\r\n\r\nLocation: Second Avenue Pier\r\nFireworks over the Atlantic Ocean - starts at 9:30pm\r\n<h1>July 2011</h1>\r\n<h3>Hot Summer Nights</h3>\r\n<strong> Jul 01   - 31 </strong>\r\n\r\nLocation: Plyler Park on the Myrtle Beach Boardwalk\r\nMondays: Free Kids\' Carnival 7-10pm (Plyer Park) Tuesday / Thursday /  Saturday: Free Concerts 8pm-12am (Plyer Park) see  http://myrtlebeachdowntown.com/events/summer-concert-schedule/ for  concert lineup Wednesdays: Fireworks over the Ocean 9:30pm (2nd Avenue  Pier) Fridays: Strolling Dixie Band 8pm (along the Myrtle Beach  Boardwalk) Sundays: Whacker Barrell 7-10pm (along the Myrtle Beach  Boardwalk)\r\n<h3>2nd Annual Independence Day 8K and Freedom 5K</h3>\r\n<strong> Jul 02   - 02 </strong>\r\n\r\nLocation: Valor Park at The Market Common\r\nCelebrate the Fourth of July with a 5K or 8K run through The Market  Common in Myrtle Beach, SC! Visit http://www.independenceday8k.com/ for  more information and registration details.\r\n<h3>Fireworks</h3>\r\n<strong> Jul 04   - 04 </strong>\r\n\r\nLocation: Second Avenue Pier\r\nFireworks over the Atlantic Ocean - starts at 9:30pm\r\n<h3>Fireworks</h3>\r\n<strong> Jul 06   - 06 </strong>\r\n\r\nLocation: Second Avenue Pier\r\nFireworks over the Atlantic Ocean - starts at 9:30pm\r\n<h3>Fireworks</h3>\r\n<strong> Jul 13   - 13 </strong>\r\n\r\nLocation: Second Avenue Pier\r\nFireworks over the Atlantic Ocean - starts at 9:30pm\r\n<h3>Fireworks</h3>\r\n<strong> Jul 20   - 20 </strong>\r\n\r\nLocation: Second Avenue Pier\r\nFireworks over the Atlantic Ocean - starts at 9:30pm\r\n<h3>Fireworks</h3>\r\n<strong> Jul 27   - 27 </strong>\r\n\r\nLocation: Second Avenue Pier\r\nFireworks over the Atlantic Ocean - starts at 9:30pm\r\n<h1>August 2011</h1>\r\n<h3>Hot Summer Nights</h3>\r\n<strong> Aug 01   - 31 </strong>\r\n\r\nLocation: Plyler Park on the Myrtle Beach Boardwalk\r\nMondays: Free Kids\' Carnival 7-10pm (Plyer Park) Tuesday / Thursday /  Saturday: Free Concerts 8pm-12am (Plyer Park) see  http://myrtlebeachdowntown.com/events/summer-concert-schedule/ for  concert lineup Wednesdays: Fireworks over the Ocean 9:30pm (2nd Avenue  Pier) Fridays: Strolling Dixie Band 8pm (along the Myrtle Beach  Boardwalk) Sundays: Whacker Barrell 7-10pm (along the Myrtle Beach  Boardwalk)\r\n<h3>Fireworks</h3>\r\n<strong> Aug 03   - 03 </strong>\r\n\r\nLocation: Second Avenue Pier\r\nFireworks over the Atlantic Ocean - starts at 9:30pm\r\n<h3>Fireworks</h3>\r\n<strong> Aug 10   - 10 </strong>\r\n\r\nLocation: Second Avenue Pier\r\nFireworks over the Atlantic Ocean - starts at 9:30pm\r\n<h3>Fireworks</h3>\r\n<strong> Aug 17   - 17 </strong>\r\n\r\nLocation: Second Avenue Pier\r\nFireworks over the Atlantic Ocean - starts at 9:30pm\r\n<h3>Fireworks</h3>\r\n<strong> Aug 24   - 24 </strong>\r\n\r\nLocation: Second Avenue Pier\r\nFireworks over the Atlantic Ocean - starts at 9:30pm\r\n<h3>Fireworks</h3>\r\n<strong> Aug 31   - 31 </strong>\r\n\r\nLocation: Second Avenue Pier\r\nFireworks over the Atlantic Ocean - starts at 9:30pm\r\n<h1>September 2011</h1>\r\n<h3>Hot Summer Nights</h3>\r\n<strong> Sep 01   - 03 </strong>\r\n\r\nLocation: Plyler Park on the Myrtle Beach Boardwalk\r\nMondays: Free Kids\' Carnival 7-10pm (Plyer Park) Tuesday / Thursday /  Saturday: Free Concerts 8pm-12am (Plyer Park) see  http://myrtlebeachdowntown.com/events/summer-concert-schedule/ for  concert lineup Wednesdays: Fireworks over the Ocean 9:30pm (2nd Avenue  Pier) Fridays: Strolling Dixie Band 8pm (along the Myrtle Beach  Boardwalk) Sundays: Whacker Barrell 7-10pm (along the Myrtle Beach  Boardwalk)\r\n<h3>Beach Boogie &amp; BBQ Festival</h3>\r\n<strong> Sep 02   - 04 </strong>\r\n\r\nLocation: Myrtle Beach, SC\r\nEvent Listing Coming Soon!\r\n<h3>Fireworks</h3>\r\n<strong> Sep 03   - 03 </strong>\r\n\r\nLocation: Second Avenue Pier\r\nFireworks over the Atlantic Ocean - starts at 9:30pm\r\n<h3>South Carolina\'s Largest Garage Sale</h3>\r\n<strong> Sep 10   - 10 </strong>\r\n\r\nLocation: Myrtle Beach Convention Center\r\nEntering its 23rd year, the sale features 280 booths and thousands of  bargain-hunters.  Sale hours are 7:00 a.m. to 2:00 p.m.  Parking at the  Convention Center is $3 per car, per day, and admission to the sale  itself is free.\r\n<h3>Grand Strand Fishing Rodeo</h3>\r\n<strong> Sep 16   - 18 </strong>\r\n\r\nLocation: Various Locations\r\nFall King Mackerel Fishing Tournament\r\n<h1>October 2011</h1>\r\n<h3>Grand Strand Fishing Rodeo</h3>\r\n<strong> Oct 22   - 22 </strong>\r\n\r\nLocation: Various Locations\r\nTake A Kid Fishing Tournament\r\n<h1>November 2011</h1>\r\nNo Events Planned For This Month\r\n<h1>December 2011</h1>\r\nNo Events Planned For This Month\r\n<h1>January 2012</h1>\r\nNo Events Planned For This Month\r\n<h1>February 2012</h1>\r\nNo Events Planned For This Month\r\n<h1>March 2012</h1>\r\nNo Events Planned For This Month','Myrtle Beach Area Events','','publish','open','open','','events','','','2011-06-07 16:39:50','2011-06-07 16:39:50','',0,'http://oor.wbtaylor.net/?page_id=63',0,'page','',0),(64,1,'2011-05-26 12:51:44','2011-05-26 12:51:44','','Events','','inherit','open','open','','63-revision','','','2011-05-26 12:51:44','2011-05-26 12:51:44','',63,'http://oor.wbtaylor.net/index.php/2011/05/63-revision/',0,'revision','',0),(65,1,'2011-05-26 12:52:05','2011-05-26 12:52:05','No content.','Oceans One Resort Partners','','publish','open','open','','partners','','','2011-06-07 16:40:41','2011-06-07 16:40:41','',0,'http://oor.wbtaylor.net/?page_id=65',0,'page','',0),(66,1,'2011-05-26 12:52:01','2011-05-26 12:52:01','','Partners','','inherit','open','open','','65-revision','','','2011-05-26 12:52:01','2011-05-26 12:52:01','',65,'http://oor.wbtaylor.net/index.php/2011/05/65-revision/',0,'revision','',0),(67,1,'2011-05-26 12:53:09','2011-05-26 12:53:09','No content.','Partners','','inherit','open','open','','65-autosave','','','2011-05-26 12:53:09','2011-05-26 12:53:09','',65,'http://oor.wbtaylor.net/index.php/2011/05/65-autosave/',0,'revision','',0),(68,1,'2011-05-26 13:01:35','2011-05-26 13:01:35','<object width=\"640\" height=\"480\" data=\"http://appnetjobs.com:8081/flashMJPEG.swf\" type=\"application/x-shockwave-flash\"><param name=\"movie\" value=\"http://appnetjobs.com:8081/flashMJPEG.swf?webcam=http://appnetjobs.com:8081/cam_11.jpg&amp;refresh=50&amp;connect=&amp;offline=&amp;transtype=Fade&amp;bgcolor=#FFFFFF&amp;txtcolor=#FFFFFF\" /><param name=\"FlashVars\" value=\"webcam=http://appnetjobs.com:8081/cam_11.jpg&amp;refresh=50&amp;connect=&amp;offline=&amp;transtype=Fade&amp;bgcolor=#FFFFFF&amp;txtcolor=#FFFFFF\" /><param name=\"loop\" value=\"false\" /><param name=\"menu\" value=\"false\" /><param name=\"quality\" value=\"best\" /><param name=\"scale\" value=\"noscale\" /><param name=\"salign\" value=\"lt\" /><param name=\"wmode\" value=\"opaque\" /></object>','Myrtle Beach Webcam','','publish','open','open','','webcam','','','2011-06-27 05:39:57','2011-06-27 05:39:57','',0,'http://oor.wbtaylor.net/?page_id=68',0,'page','',0),(69,1,'2011-05-26 13:01:30','2011-05-26 13:01:30','','Webcam','','inherit','open','open','','68-revision','','','2011-05-26 13:01:30','2011-05-26 13:01:30','',68,'http://oor.wbtaylor.net/index.php/2011/05/68-revision/',0,'revision','',0),(70,1,'2011-06-27 05:41:01','2011-06-27 05:41:01','<object width=\"640\" height=\"480\" type=\"application/x-shockwave-flash\" data=\"http://appnetjobs.com:8081/flashMJPEG.swf\"><param name=\"movie\" value=\"http://appnetjobs.com:8081/flashMJPEG.swf?webcam=http://appnetjobs.com:8081/cam_11.jpg&amp;refresh=50&amp;connect=&amp;offline=&amp;transtype=Fade&amp;bgcolor=#FFFFFF&amp;txtcolor=#FFFFFF\" /><param name=\"FlashVars\" value=\"webcam=http://appnetjobs.com:8081/cam_11.jpg&amp;refresh=50&amp;connect=&amp;offline=&amp;transtype=Fade&amp;bgcolor=#FFFFFF&amp;txtcolor=#FFFFFF\" /><param name=\"loop\" value=\"false\" /><param name=\"menu\" value=\"false\" /><param name=\"quality\" value=\"best\" /><param name=\"scale\" value=\"noscale\" /><param name=\"salign\" value=\"lt\" /><param name=\"wmode\" value=\"opaque\" /></object>','Myrtle Beach Webcam','','inherit','open','open','','68-autosave','','','2011-06-27 05:41:01','2011-06-27 05:41:01','',68,'http://oor.wbtaylor.net/index.php/2011/05/68-autosave/',0,'revision','',0),(71,1,'2011-05-26 12:49:41','2011-05-26 12:49:41','No content','Amenities','','inherit','open','open','','51-revision-2','','','2011-05-26 12:49:41','2011-05-26 12:49:41','',51,'http://oor.wbtaylor.net/index.php/2011/05/51-revision-2/',0,'revision','',0),(72,1,'2011-05-26 13:05:02','2011-05-26 13:05:02','<p style=\"padding-left: 30px;\">Location:102 South Ocean Boulevard\r\nMyrtle Beach, SC 29577\r\nToll Free: 1.866.626.2033\r\nEmail: <a title=\"info@Oceansoneresort.com\" href=\"mailto:info@Oceansoneresort.com\">info@Oceansoneresort.com</a></p>\r\n\r\n<h2>Or Use This Form</h2>\r\n[contact-form] [contact-field label=\"Name\" type=\"name\" required=\"true\" /] [contact-field label=\"Email\" type=\"email\" required=\"true\" /] [contact-field label=\"Address\" type=\"text\" /] [contact-field label=\"Phone\" type=\"text\" /] [contact-field label=\"Comment\" type=\"textarea\" required=\"true\" /] [/contact-form]','Contact Us','','publish','open','open','','contact','','','2011-05-30 10:19:15','2011-05-30 10:19:15','',0,'http://oor.wbtaylor.net/?page_id=72',0,'page','',0),(73,1,'2011-05-26 13:04:57','2011-05-26 13:04:57','','Contact','','inherit','open','open','','72-revision','','','2011-05-26 13:04:57','2011-05-26 13:04:57','',72,'http://oor.wbtaylor.net/index.php/2011/05/72-revision/',0,'revision','',0),(74,1,'2011-05-26 13:09:31','2011-05-26 13:09:31','Use the form below to sign up for our newsletter.\r\n\r\n[contact-form] [contact-field label=\"Name\" type=\"name\" required=\"true\" /] [contact-field label=\"Email\" type=\"email\" required=\"true\" /] [/contact-form]','Newsletter','','publish','open','open','','newsletter','','','2011-05-26 13:10:16','2011-05-26 13:10:16','',0,'http://oor.wbtaylor.net/?page_id=74',0,'page','',0),(75,1,'2011-05-26 13:09:16','2011-05-26 13:09:16','','Newsletter','','inherit','open','open','','74-revision','','','2011-05-26 13:09:16','2011-05-26 13:09:16','',74,'http://oor.wbtaylor.net/index.php/2011/05/74-revision/',0,'revision','',0),(76,1,'2011-05-26 13:09:31','2011-05-26 13:09:31','[contact-form] [contact-field label=\"Name\" type=\"name\" required=\"true\" /] [contact-field label=\"Email\" type=\"email\" required=\"true\" /] [/contact-form]','Newsletter','','inherit','open','open','','74-revision-2','','','2011-05-26 13:09:31','2011-05-26 13:09:31','',74,'http://oor.wbtaylor.net/index.php/2011/05/74-revision-2/',0,'revision','',0),(77,1,'2011-05-26 13:11:19','2011-05-26 13:11:19','Use the form below to sign up for our newsletter.\n\n[contact-form] [contact-field label=\"Name\" type=\"name\" required=\"true\" /] [contact-field label=\"Email\" type=\"email\" required=\"true\" /] [/contact-form]','Newsletter','','inherit','open','open','','74-autosave','','','2011-05-26 13:11:19','2011-05-26 13:11:19','',74,'http://oor.wbtaylor.net/index.php/2011/05/74-autosave/',0,'revision','',0),(82,1,'2011-05-26 12:37:22','2011-05-26 12:37:22','','2 Bedroom Condo','','inherit','open','open','','38-revision','','','2011-05-26 12:37:22','2011-05-26 12:37:22','',38,'http://oor.wbtaylor.net/index.php/2011/05/38-revision/',0,'revision','',0),(83,1,'2011-05-26 17:57:55','2011-05-26 17:57:55','These units feature all of the amenities of our other 2 Bedroom units listed above, plus expanded views. These corner units are at least 50% floor-to-ceiling glass for amazing 180 degree views of the coastline, city and ocean. For the complete Oceans One experience!\r\n\r\n[gallery size=\"medium\" link=\"file\" columns=\"4\"]','2 Bedroom Condo Corner - Oceanfront','','publish','closed','closed','','2-bedroom-condo-corner','','','2011-06-27 07:35:39','2011-06-27 07:35:39','',0,'http://oor.wbtaylor.net/?post_type=accomodation&#038;p=83',0,'accomodation','',0),(84,1,'2011-05-26 17:53:35','2011-05-26 17:53:35','','Type46_FormerlyN1','','inherit','open','open','','type46_formerlyn1','','','2011-05-26 17:53:35','2011-05-26 17:53:35','',83,'http://oor.wbtaylor.net/wp-content/uploads/2011/05/Type46_FormerlyN1.jpg',0,'attachment','image/jpeg',0),(85,1,'2011-05-26 17:53:38','2011-05-26 17:53:38','','Type47_FormerlyN2','','inherit','open','open','','type47_formerlyn2','','','2011-05-26 17:53:38','2011-05-26 17:53:38','',83,'http://oor.wbtaylor.net/wp-content/uploads/2011/05/Type47_FormerlyN2.jpg',0,'attachment','image/jpeg',0),(86,1,'2011-05-26 17:57:49','2011-05-26 17:57:49','[gallery link=\"file\" columns=\"4\"]','2 Bedroom Condo Corner','','inherit','open','open','','83-revision','','','2011-05-26 17:57:49','2011-05-26 17:57:49','',83,'http://oor.wbtaylor.net/index.php/2011/05/83-revision/',0,'revision','',0),(87,1,'2011-05-26 18:02:35','2011-05-26 18:02:35','These spacious units feature 3 Bedrooms and 3 Bathrooms. The master and second bedrooms have king beds, the third bedroom has 2 double beds, plus there is a sofa bed in the living area. The master bath also features luxurious jacuzzi jets in the bathtub. Not only do these units offer multiple closets and the most modern amenities and styling, but they all offer two oceanfront balconies, with one off the living area and one off the master bedroom. Spacious and luxurious.\r\n\r\n<a class=\"lightbox\" href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/Type1_FormerlyC.jpg\"><img class=\"alignnone size-medium wp-image-88\" title=\"Type1_FormerlyC\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/Type1_FormerlyC.jpg\" alt=\"\" width=\"212\" height=\"346\" /></a>','3 Bedroom Condo - Oceanfront','','publish','closed','closed','','3-bedroom-condo','','','2011-06-27 07:41:31','2011-06-27 07:41:31','',0,'http://oor.wbtaylor.net/?post_type=accomodation&#038;p=87',0,'accomodation','',0),(88,1,'2011-05-26 18:00:19','2011-05-26 18:00:19','','Type1_FormerlyC','','inherit','open','open','','type1_formerlyc','','','2011-05-26 18:00:19','2011-05-26 18:00:19','',87,'http://oor.wbtaylor.net/wp-content/uploads/2011/05/Type1_FormerlyC.jpg',0,'attachment','image/jpeg',0),(90,1,'2011-05-26 17:58:57','2011-05-26 17:58:57','','4 Bedroom Condo Townhouse','','inherit','open','open','','87-revision','','','2011-05-26 17:58:57','2011-05-26 17:58:57','',87,'http://oor.wbtaylor.net/index.php/2011/05/87-revision/',0,'revision','',0),(91,1,'2011-05-26 18:03:08','2011-05-26 18:03:08','This large townhouse is located on the 2nd row behind our main office. The townhouse has four bedrooms, 4 1/2 baths, a shared outdoor pool, full-size, fully equipped kitchen and private washer and dryer. Must call 1-866-626-2033 to book this unit. Not available online.','4 Bedroom Townhouse - 2nd Row','','publish','closed','closed','','4-bedroom-condo-townhouse','','','2011-06-07 20:23:53','2011-06-07 20:23:53','',0,'http://oor.wbtaylor.net/?post_type=accomodation&#038;p=91',0,'accomodation','',0),(92,1,'2011-05-26 18:03:02','2011-05-26 18:03:02','','4 Bedroom Condo Townhouse','','inherit','open','open','','91-revision','','','2011-05-26 18:03:02','2011-05-26 18:03:02','',91,'http://oor.wbtaylor.net/index.php/2011/05/91-revision/',0,'revision','',0),(93,1,'2011-06-23 18:37:07','2011-06-23 18:37:07','This large townhouse is located on the 2nd row behind our main office. The townhouse has four bedrooms, 4 1/2 baths, a shared outdoor pool, full-size, fully equipped kitchen and private washer and dryer. Must call 1-866-626-2033 to book this unit. Not available online.','4 Bedroom Townhouse - 2nd Row','','inherit','open','open','','91-autosave','','','2011-06-23 18:37:07','2011-06-23 18:37:07','',91,'http://oor.wbtaylor.net/index.php/2011/05/91-autosave/',0,'revision','',0),(94,1,'2011-05-26 12:45:33','2011-05-26 12:45:33','These units feature 1 Bedroom with one King or two Queen beds, 1 Full Bath, and a living and dining area. There are sleeping accommodations for a maximum of four to six adults. Take advantage of multiple closets, stainless steel appliances, and more modern amenities in this unit. Enjoy the morning sunrise with your breakfast on your oceanfront balcony overlooking the white sands of the Grand Strand.\r\n\r\n&nbsp;\r\n\r\n[gallery link=\"file\"]','1 Bedroom Condo - Oceanfront','','inherit','open','open','','25-revision-3','','','2011-05-26 12:45:33','2011-05-26 12:45:33','',25,'http://oor.wbtaylor.net/index.php/2011/05/25-revision-3/',0,'revision','',0),(95,1,'2011-05-30 09:40:31','2011-05-30 09:40:31','<h2>Amenities</h2>\n<a href=\"http://hdvirtualcitytours.com/pl/12287/145/oceansoneresort\">Beach View</a>\n<a href=\"http://hdvirtualcitytours.com/pl/12288/190/oceansoneresort\">Kiddie Pool</a>\n<a href=\"http://hdvirtualcitytours.com/pl/12290/57/oceansoneresort\">Outdoor Pools</a>\n<a href=\"http://hdvirtualcitytours.com/pl/12293/134/oceansoneresort\">Lazy River</a>\n<a href=\"http://hdvirtualcitytours.com/pl/12296/3/oceansoneresort\">Indoor Pool</a>\n(grab thumbnail image from http://www.oceansoneresort.com/virtualtours.cfm page for now)\n<h2>Property</h2>\n<a href=\"http://hdvirtualcitytours.com/pl/12285/345/oceansoneresort\">Lobby</a>\n<a href=\"http://hdvirtualcitytours.com/pl/13007/125/oceansoneresort\">Fitness Center</a>\n<a href=\"http://hdvirtualcitytours.com/pl/12283/150/oceansoneresort\">Parking Lot</a>\n<a href=\"http://hdvirtualcitytours.com/pl/12286/100/oceansoneresort\">Entrance</a>\n<a href=\"http://hdvirtualcitytours.com/pl/12299/310/oceansoneresort\">Lounge</a>\n<a href=\"http://hdvirtualcitytours.com/pl/12291/140/oceansoneresort\">Oceanfront</a>\n<h2>Rooms</h2>\n1 Bedroom - Type 6\n<a href=\"http://hdvirtualcitytours.com/pl/12304/115/oceansoneresort\">1 Bedroom - Type 7</a>\n1 Bedroom - Type 9\n<a href=\"http://hdvirtualcitytours.com/pl/12351/310/oceansoneresort\">1 Bedroom - Type 11</a>\n<a href=\"http://hdvirtualcitytours.com/pl/12346/340/oceansoneresort\">2 Bedroom - Type 2</a>\n<a href=\"http://hdvirtualcitytours.com/pl/12331/56/oceansoneresort\">2 Bedroom - Type 3</a>\n<a href=\"http://hdvirtualcitytours.com/pl/12313/92/oceansoneresort\">2 Bedroom - Type 4</a>\n2 Bedroom - Type 5\n<a href=\"http://hdvirtualcitytours.com/pl/12309/171/oceansoneresort\">2 Bedroom - Type 10</a>\n<a href=\"http://hdvirtualcitytours.com/pl/12337/120/oceansoneresort\">2 Bedroom - Type 12</a>\n<a href=\"http://hdvirtualcitytours.com/pl/12322/140/oceansoneresort\">3 Bedroom - Type 1</a>','Virtual Tours','','inherit','open','open','','55-autosave','','','2011-05-30 09:40:31','2011-05-30 09:40:31','',55,'http://oor.wbtaylor.net/index.php/2011/05/55-autosave/',0,'revision','',0),(96,1,'2011-05-26 12:50:30','2011-05-26 12:50:30','No content','Tours','','inherit','open','open','','55-revision-2','','','2011-05-26 12:50:30','2011-05-26 12:50:30','',55,'http://oor.wbtaylor.net/index.php/2011/05/55-revision-2/',0,'revision','',0),(97,1,'2011-05-30 09:40:36','2011-05-30 09:40:36','<h2>Amenities</h2>\r\n<a href=\"http://hdvirtualcitytours.com/pl/12287/145/oceansoneresort\">Beach View</a>\r\n<a href=\"http://hdvirtualcitytours.com/pl/12288/190/oceansoneresort\">Kiddie Pool</a>\r\n<a href=\"http://hdvirtualcitytours.com/pl/12290/57/oceansoneresort\">Outdoor Pools</a>\r\n<a href=\"http://hdvirtualcitytours.com/pl/12293/134/oceansoneresort\">Lazy River</a>\r\n<a href=\"http://hdvirtualcitytours.com/pl/12296/3/oceansoneresort\">Indoor Pool</a>\r\n(grab thumbnail image from http://www.oceansoneresort.com/virtualtours.cfm page for now)\r\n<h2>Property</h2>\r\n<a href=\"http://hdvirtualcitytours.com/pl/12285/345/oceansoneresort\">Lobby</a>\r\n<a href=\"http://hdvirtualcitytours.com/pl/13007/125/oceansoneresort\">Fitness Center</a>\r\n<a href=\"http://hdvirtualcitytours.com/pl/12283/150/oceansoneresort\">Parking Lot</a>\r\n<a href=\"http://hdvirtualcitytours.com/pl/12286/100/oceansoneresort\">Entrance</a>\r\n<a href=\"http://hdvirtualcitytours.com/pl/12299/310/oceansoneresort\">Lounge</a>\r\n<a href=\"http://hdvirtualcitytours.com/pl/12291/140/oceansoneresort\">Oceanfront</a>\r\n<h2>Rooms</h2>\r\n1 Bedroom - Type 6\r\n<a href=\"http://hdvirtualcitytours.com/pl/12304/115/oceansoneresort\">1 Bedroom - Type 7</a>\r\n1 Bedroom - Type 9\r\n<a href=\"http://hdvirtualcitytours.com/pl/12351/310/oceansoneresort\">1 Bedroom - Type 11</a>\r\n<a href=\"http://hdvirtualcitytours.com/pl/12346/340/oceansoneresort\">2 Bedroom - Type 2</a>\r\n<a href=\"http://hdvirtualcitytours.com/pl/12331/56/oceansoneresort\">2 Bedroom - Type 3</a>\r\n<a href=\"http://hdvirtualcitytours.com/pl/12313/92/oceansoneresort\">2 Bedroom - Type 4</a>\r\n2 Bedroom - Type 5\r\n<a href=\"http://hdvirtualcitytours.com/pl/12309/171/oceansoneresort\">2 Bedroom - Type 10</a>\r\n<a href=\"http://hdvirtualcitytours.com/pl/12337/120/oceansoneresort\">2 Bedroom - Type 12</a>\r\n<a href=\"http://hdvirtualcitytours.com/pl/12322/140/oceansoneresort\">3 Bedroom - Type 1</a>','Virtual Tours','','inherit','open','open','','55-revision-3','','','2011-05-30 09:40:36','2011-05-30 09:40:36','',55,'http://oor.wbtaylor.net/index.php/2011/05/55-revision-3/',0,'revision','',0),(98,1,'2011-05-26 13:01:35','2011-05-26 13:01:35','No content.','Webcam','','inherit','open','open','','68-revision-2','','','2011-05-26 13:01:35','2011-05-26 13:01:35','',68,'http://oor.wbtaylor.net/index.php/2011/05/68-revision-2/',0,'revision','',0),(99,1,'2011-05-26 12:50:43','2011-05-26 12:50:43','No content','Videos','','inherit','open','open','','57-revision-2','','','2011-05-26 12:50:43','2011-05-26 12:50:43','',57,'http://oor.wbtaylor.net/index.php/2011/05/57-revision-2/',0,'revision','',0),(100,1,'2011-05-30 09:47:15','2011-05-30 09:47:15','','Videos','','inherit','open','open','','57-autosave','','','2011-05-30 09:47:15','2011-05-30 09:47:15','',57,'http://oor.wbtaylor.net/index.php/2011/05/57-autosave/',0,'revision','',0),(101,1,'2011-05-30 09:55:52','2011-05-30 09:55:52','<iframe width=\"450\" height=\"450\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.com/maps?f=q&amp;hl=en&amp;geocode=&amp;q=102+south+ocean+boulevard,+myrtle+beach,+SC++29577&amp;sll=37.0625,-95.677068&amp;sspn=40.59616,95.976562&amp;ie=UTF8&amp;s=AARTsJq1jTzNjMC-DuSD996aLdFqjQyFgg&amp;ll=33.692495,-78.884153&amp;spn=0.032136,0.051498&amp;z=14&amp;iwloc=addr&amp;output=embed\"></iframe><br /><small><a href=\"http://maps.google.com/maps?f=q&amp;hl=en&amp;geocode=&amp;q=102+south+ocean+boulevard,+myrtle+beach,+SC++29577&amp;sll=37.0625,-95.677068&amp;sspn=40.59616,95.976562&amp;ie=UTF8&amp;ll=33.692495,-78.884153&amp;spn=0.032136,0.051498&amp;z=14&amp;iwloc=addr&amp;source=embed\" style=\"color:#0000FF;text-align:left\">View Larger Map</a></small>','Directions','','publish','open','open','','directions','','','2011-05-30 09:56:13','2011-05-30 09:56:13','',0,'http://oor.wbtaylor.net/?page_id=101',0,'page','',0),(102,1,'2011-05-30 09:55:47','2011-05-30 09:55:47','','Directions','','inherit','open','open','','101-revision','','','2011-05-30 09:55:47','2011-05-30 09:55:47','',101,'http://oor.wbtaylor.net/index.php/2011/05/101-revision/',0,'revision','',0),(103,1,'2011-05-30 09:55:52','2011-05-30 09:55:52','<iframe width=\"400\" height=\"450\" frameborder=\"0\" scrolling=\"no\" marginheight=\"0\" marginwidth=\"0\" src=\"http://maps.google.com/maps?f=q&amp;hl=en&amp;geocode=&amp;q=102+south+ocean+boulevard,+myrtle+beach,+SC++29577&amp;sll=37.0625,-95.677068&amp;sspn=40.59616,95.976562&amp;ie=UTF8&amp;s=AARTsJq1jTzNjMC-DuSD996aLdFqjQyFgg&amp;ll=33.692495,-78.884153&amp;spn=0.032136,0.051498&amp;z=14&amp;iwloc=addr&amp;output=embed\"></iframe><br /><small><a href=\"http://maps.google.com/maps?f=q&amp;hl=en&amp;geocode=&amp;q=102+south+ocean+boulevard,+myrtle+beach,+SC++29577&amp;sll=37.0625,-95.677068&amp;sspn=40.59616,95.976562&amp;ie=UTF8&amp;ll=33.692495,-78.884153&amp;spn=0.032136,0.051498&amp;z=14&amp;iwloc=addr&amp;source=embed\" style=\"color:#0000FF;text-align:left\">View Larger Map</a></small>','Directions','','inherit','open','open','','101-revision-2','','','2011-05-30 09:55:52','2011-05-30 09:55:52','',101,'http://oor.wbtaylor.net/index.php/2011/05/101-revision-2/',0,'revision','',0),(104,1,'2011-05-30 10:20:17','2011-05-30 10:20:17','<p style=\"padding-left: 30px;\">Location:102 South Ocean Boulevard\nMyrtle Beach, SC 29577\nToll Free: 1.866.626.2033\nEmail: <a title=\"info@Oceansoneresort.com\" href=\"mailto:info@Oceansoneresort.com\">info@Oceansoneresort.com</a></p>\n\n<h2>Or Use This Form</h2>\n[contact-form] [contact-field label=\"Name\" type=\"name\" required=\"true\" /] [contact-field label=\"Email\" type=\"email\" required=\"true\" /] [contact-field label=\"Address\" type=\"text\" /] [contact-field label=\"Phone\" type=\"text\" /] [contact-field label=\"Comment\" type=\"textarea\" required=\"true\" /] [/contact-form]','Contact Us','','inherit','open','open','','72-autosave','','','2011-05-30 10:20:17','2011-05-30 10:20:17','',72,'http://oor.wbtaylor.net/index.php/2011/05/72-autosave/',0,'revision','',0),(105,1,'2011-05-26 13:05:02','2011-05-26 13:05:02','Contact Us\r\nLocation:102 South Ocean BoulevardMyrtle Beach, SC\r\nToll Free: 1.866.626.2033\r\nEmail: info@Oceansoneresort.com','Contact','','inherit','open','open','','72-revision-2','','','2011-05-26 13:05:02','2011-05-26 13:05:02','',72,'http://oor.wbtaylor.net/index.php/2011/05/72-revision-2/',0,'revision','',0),(106,1,'2011-05-30 10:14:57','2011-05-30 10:14:57','Contact Us\r\nLocation:102 South Ocean Boulevard\r\nMyrtle Beach, SC 29577\r\nToll Free: 1.866.626.2033\r\nEmail: <a title=\"info@Oceansoneresort.com\" href=\"mailto:info@Oceansoneresort.com\">info@Oceansoneresort.com</a>\r\n\r\n[contact-form] [contact-field label=\"Name\" type=\"name\" required=\"true\" /] [contact-field label=\"Email\" type=\"email\" required=\"true\" /] [contact-field label=\"Address\" type=\"text\" /] [contact-field label=\"Phone\" type=\"text\" /] [contact-field label=\"Comment\" type=\"textarea\" required=\"true\" /] [/contact-form]','Contact','','inherit','open','open','','72-revision-3','','','2011-05-30 10:14:57','2011-05-30 10:14:57','',72,'http://oor.wbtaylor.net/index.php/2011/05/72-revision-3/',0,'revision','',0),(107,1,'2011-05-30 10:18:43','2011-05-30 10:18:43','<p style=\"padding-left: 30px;\">Location:102 South Ocean Boulevard\r\nMyrtle Beach, SC 29577\r\nToll Free: 1.866.626.2033\r\nEmail: <a title=\"info@Oceansoneresort.com\" href=\"mailto:info@Oceansoneresort.com\">info@Oceansoneresort.com</a></p>\r\n[contact-form] [contact-field label=\"Name\" type=\"name\" required=\"true\" /] [contact-field label=\"Email\" type=\"email\" required=\"true\" /] [contact-field label=\"Address\" type=\"text\" /] [contact-field label=\"Phone\" type=\"text\" /] [contact-field label=\"Comment\" type=\"textarea\" required=\"true\" /] [/contact-form]','Contact Us','','inherit','open','open','','72-revision-4','','','2011-05-30 10:18:43','2011-05-30 10:18:43','',72,'http://oor.wbtaylor.net/index.php/2011/05/72-revision-4/',0,'revision','',0),(108,1,'2011-05-31 02:44:15','2011-05-31 02:44:15','<h1>May 2011</h1>\n<h3>FREE Military Concert</h3>\n<strong> May 06 </strong>\nLocation: Downtown Myrtle Beach between 8th Ave North and 9th Ave North\nBands TBA\n<h3>Coastal Uncorked</h3>\n<strong> May 08   - 15 </strong>\n\nLocation: Various locations throughout Myrtle Beach area\nThe festival features a restaurant week; a wine tasting trolley tour of  Myrtle Beach; Paula Deen featured event; outdoor entertainment at Market  Common and the Myrtle Beach Boardwalk and Promenade; the Coastal  Uncorked Golf Tournament; and the Coastal Uncorked Food Fight Gala.  A portion of the funds raised will be donated to the Horry-Georgetown  Technical College Culinary Arts School and the Coastal Carolina  University’s Clay Brittain Jr. Center for Resort Tourism\n<h3>Myrtle Beach Bike Week - Spring Rally</h3>\n<strong> May 13   - 22 </strong>\n\nLocation: Various locations throughout the Grand Strand\nThe Carolina\'s Largest Motorcycle Event!\n<h3>FREE Military Concert</h3>\n<strong> May 13 </strong>\n\nLocation: Downtown Myrtle Beach between 8th Ave North and 9th Ave North\nFeaturing: 282nd US Army Band (Full stage band) at 8 p.m.\n<h3>First Annual Myrtle Beach Mud Run and Y Mini Mud Run</h3>\n<strong> May 14   - 14 </strong>\n\nLocation: Marina Inn at Grande Dunes\nThe 3.5 mile course is an all-terrain race on dirt roads, improved  trails and unimproved trails through one of the undeveloped areas in  Myrtle Beach.  The trail will include mud holes, walls, trenches and  other obstacles that require crawling, climbing and jumping.  Come  prepared to get muddy!  A portion of the proceeds will benefit the Grand  Strand Humane Society.  For more information and on-line registration,  visit http://www.myrtlebeachmudrun.com.\n<h3>FREE Military Concert</h3>\n<strong> May 20 </strong>\n\nLocation: Downtown Myrtle Beach between 8th Ave North and 9th Ave North\nFeaturing: 208th US Army Reserve Band at 7 p.m.\n<h3>Beach Blast! Christian Music Festival</h3>\n<strong> May 21 </strong>\n\nLocation: Downtown Myrtle Beach between 8th Ave North and 9th Ave North\nScheduled Performers:  - Toby Mac - Skillet - LeCrae - Disciple - Anthem Lights - Speaker Bob Lenz\n<h3>Vietnam Memorial Wall Exhibit</h3>\n<strong> May 25   - 27 </strong>\n\nLocation: Downtown Myrtle Beach between 8th Ave North and 9th Ave North\nA half-scale replica of the Vietnam Veterans Memorial in Washington,  D.C., designed to travel to communities throughout the United States.  Also featuring a Traveling Museum and Information Center.\n<h3>FREE Military Concert</h3>\n<strong> May 27 </strong>\n\nLocation: Downtown Myrtle Beach between 8th Ave North and 9th Ave North\nFeaturing:  282nd Army Band Jazz Combo- 6 p.m.             Navy Band 5 Star Edition- 7:15pm\n<h3>Memorial Day Weekend Festivities</h3>\n<strong> May 28   - 30 </strong>\n\nLocation: Downtown Myrtle Beach starting at 27th Ave North and heads south to 9th Ave North\nCelebrate active military members and veterans who have served our  country. US Senator John McCain will serve as Grand Marshall during the  parade.  Following the parade there will be food, vendors and celebrity  appearances!  Scheduled Celebrities: - Jeanette McCurdy from iCarly - Noah Munck from iCarly - Ethan Munck from iCarly - Ariana Grande from Victorious - Jake T. Austin from Wizards of Waverly Place - Doug Brochu from Sonny with a Chance - Zendaya Coleman from Shake It Up!\n<h3>5K Run/Walk</h3>\n<strong> May 29   - 29 </strong>\n\nLocation: Grand Park at The Market Common - 8:00 a.m. (Wheelchairs start at 7:55 a.m.)\nEnjoy this morning run/walk around The Market Common and Grand Park,  beginning at Crabtree Memorial Gym.  It\'s free for active duty, reserves  and veterans, or $20 for civilians.  Visit  http://militaryappreciationdays.com/ for more details and registration  forms.\n<h1>June 2011</h1>\n<h3>Hot Summer Nights</h3>\n<strong> Jun 01   - 30 </strong>\n\nLocation: Plyler Park on the Myrtle Beach Boardwalk\nMondays: Free Kids\' Carnival 7-10pm (Plyer Park)  Tuesday / Thursday / Saturday: Free Concerts 8pm-12am (Plyer Park) see  http://myrtlebeachdowntown.com/events/summer-concert-schedule/ for  concert lineup  Wednesdays: Fireworks over the Ocean 9:30pm (2nd Avenue Pier)  Fridays: Strolling Dixie Band 8pm (along the Myrtle Beach Boardwalk)  Sundays: Whacker Barrell 7-10pm (along the Myrtle Beach Boardwalk)\n<h3>Fireworks</h3>\n<strong> Jun 01   - 01 </strong>\n\nLocation: Second Avenue Pier\nFireworks over the Atlantic Ocean - starts at 9:30pm\n<h3>60th Annual Sun Fun Festival</h3>\n<strong> Jun 03   - 04 </strong>\n\nLocation: Grand Park @ The Market Common\nFeaturing the famous Miss Sun Fun USA and Teen USA pageants, this  festival has become a staple in Myrtle Beach over the past 60 years.   The festival also includes a variety of games, sporting events, kid\'s  fair and more! Stay tuned for more details.\n<h3>The World\'s Largest Covertible Car Show</h3>\n<strong> Jun 04   - 05 </strong>\n\nLocation: The Market Common\nSaturday, June 4 from 10am to 5pm and Sunday, June 5 from 12pm to 5pm.  The Sun Fun Festival will host the World\'s Largest Convertible Car Show  at Grand Park at Market Common. Enter your car today and you can be a  part of helping set the Guinness Book World Record for the most cars  ever to be in a convertible car show! Cash prizes will be awarded for  fan favorites and more. Proceeds benefit the Make-A-Wish Foundation of  South Carolina.\n<h3>SC Fire-Rescue Conference</h3>\n<strong> Jun 06   - 11 </strong>\n\nLocation: Myrtle Beach Convention Center\nThe 106th Annual South Carolina Fire-Rescue Conference will be held  again in Myrtle Beach, SC.  The conference features training, education,  speakers, over 150 vendors as well as a Firefighter Challenge, an Auto  Extrication Competition.\n<h3>Fireworks</h3>\n<strong> Jun 08   - 08 </strong>\n\nLocation: Second Avenue Pier\nFireworks over the Atlantic Ocean - starts at 9:30pm\n<h3>Grand Strand Fishing Rodeo</h3>\n<strong> Jun 10   - 12 </strong>\n\nLocation: Various Locations\nSpring King Mackerel Fishing Tournament\n<h3>Fireworks</h3>\n<strong> Jun 15   - 15 </strong>\n\nLocation: Second Avenue Pier\nFireworks over the Atlantic Ocean - starts at 9:30pm\n<h3>Fireworks</h3>\n<strong> Jun 22   - 22 </strong>\n\nLocation: Second Avenue Pier\nFireworks over the Atlantic Ocean - starts at 9:30pm\n<h3>2011 USA Youth Outdoor Track &amp; Field Championships</h3>\n<strong> Jun 28   - 28 </strong>\n\nLocation: Doug Shaw Stadium - Myrtle Beach, SC\nThe 2011 USA Youth Outdoor Track &amp; Field Championships will be held  in Myrtle Beach, SC at Doug Shaw Stadium. The 2011 Championships will be  even more exciting for athletes, coaches, family members, and  spectators alike! This event typically produces several youth national  records and is the only track &amp; field competition that also awards  team championships in every age division!\n<h3>Fireworks</h3>\n<strong> Jun 29   - 29 </strong>\n\nLocation: Second Avenue Pier\nFireworks over the Atlantic Ocean - starts at 9:30pm\n<h1>July 2011</h1>\n<h3>Hot Summer Nights</h3>\n<strong> Jul 01   - 31 </strong>\n\nLocation: Plyler Park on the Myrtle Beach Boardwalk\nMondays: Free Kids\' Carnival 7-10pm (Plyer Park) Tuesday / Thursday /  Saturday: Free Concerts 8pm-12am (Plyer Park) see  http://myrtlebeachdowntown.com/events/summer-concert-schedule/ for  concert lineup Wednesdays: Fireworks over the Ocean 9:30pm (2nd Avenue  Pier) Fridays: Strolling Dixie Band 8pm (along the Myrtle Beach  Boardwalk) Sundays: Whacker Barrell 7-10pm (along the Myrtle Beach  Boardwalk)\n<h3>2nd Annual Independence Day 8K and Freedom 5K</h3>\n<strong> Jul 02   - 02 </strong>\n\nLocation: Valor Park at The Market Common\nCelebrate the Fourth of July with a 5K or 8K run through The Market  Common in Myrtle Beach, SC! Visit http://www.independenceday8k.com/ for  more information and registration details.\n<h3>Fireworks</h3>\n<strong> Jul 04   - 04 </strong>\n\nLocation: Second Avenue Pier\nFireworks over the Atlantic Ocean - starts at 9:30pm\n<h3>Fireworks</h3>\n<strong> Jul 06   - 06 </strong>\n\nLocation: Second Avenue Pier\nFireworks over the Atlantic Ocean - starts at 9:30pm\n<h3>Fireworks</h3>\n<strong> Jul 13   - 13 </strong>\n\nLocation: Second Avenue Pier\nFireworks over the Atlantic Ocean - starts at 9:30pm\n<h3>Fireworks</h3>\n<strong> Jul 20   - 20 </strong>\n\nLocation: Second Avenue Pier\nFireworks over the Atlantic Ocean - starts at 9:30pm\n<h3>Fireworks</h3>\n<strong> Jul 27   - 27 </strong>\n\nLocation: Second Avenue Pier\nFireworks over the Atlantic Ocean - starts at 9:30pm\n<h1>August 2011</h1>\n<h3>Hot Summer Nights</h3>\n<strong> Aug 01   - 31 </strong>\n\nLocation: Plyler Park on the Myrtle Beach Boardwalk\nMondays: Free Kids\' Carnival 7-10pm (Plyer Park) Tuesday / Thursday /  Saturday: Free Concerts 8pm-12am (Plyer Park) see  http://myrtlebeachdowntown.com/events/summer-concert-schedule/ for  concert lineup Wednesdays: Fireworks over the Ocean 9:30pm (2nd Avenue  Pier) Fridays: Strolling Dixie Band 8pm (along the Myrtle Beach  Boardwalk) Sundays: Whacker Barrell 7-10pm (along the Myrtle Beach  Boardwalk)\n<h3>Fireworks</h3>\n<strong> Aug 03   - 03 </strong>\n\nLocation: Second Avenue Pier\nFireworks over the Atlantic Ocean - starts at 9:30pm\n<h3>Fireworks</h3>\n<strong> Aug 10   - 10 </strong>\n\nLocation: Second Avenue Pier\nFireworks over the Atlantic Ocean - starts at 9:30pm\n<h3>Fireworks</h3>\n<strong> Aug 17   - 17 </strong>\n\nLocation: Second Avenue Pier\nFireworks over the Atlantic Ocean - starts at 9:30pm\n<h3>Fireworks</h3>\n<strong> Aug 24   - 24 </strong>\n\nLocation: Second Avenue Pier\nFireworks over the Atlantic Ocean - starts at 9:30pm\n<h3>Fireworks</h3>\n<strong> Aug 31   - 31 </strong>\n\nLocation: Second Avenue Pier\nFireworks over the Atlantic Ocean - starts at 9:30pm\n<h1>September 2011</h1>\n<h3>Hot Summer Nights</h3>\n<strong> Sep 01   - 03 </strong>\n\nLocation: Plyler Park on the Myrtle Beach Boardwalk\nMondays: Free Kids\' Carnival 7-10pm (Plyer Park) Tuesday / Thursday /  Saturday: Free Concerts 8pm-12am (Plyer Park) see  http://myrtlebeachdowntown.com/events/summer-concert-schedule/ for  concert lineup Wednesdays: Fireworks over the Ocean 9:30pm (2nd Avenue  Pier) Fridays: Strolling Dixie Band 8pm (along the Myrtle Beach  Boardwalk) Sundays: Whacker Barrell 7-10pm (along the Myrtle Beach  Boardwalk)\n<h3>Beach Boogie &amp; BBQ Festival</h3>\n<strong> Sep 02   - 04 </strong>\n\nLocation: Myrtle Beach, SC\nEvent Listing Coming Soon!\n<h3>Fireworks</h3>\n<strong> Sep 03   - 03 </strong>\n\nLocation: Second Avenue Pier\nFireworks over the Atlantic Ocean - starts at 9:30pm\n<h3>South Carolina\'s Largest Garage Sale</h3>\n<strong> Sep 10   - 10 </strong>\n\nLocation: Myrtle Beach Convention Center\nEntering its 23rd year, the sale features 280 booths and thousands of  bargain-hunters.  Sale hours are 7:00 a.m. to 2:00 p.m.  Parking at the  Convention Center is $3 per car, per day, and admission to the sale  itself is free.\n<h3>Grand Strand Fishing Rodeo</h3>\n<strong> Sep 16   - 18 </strong>\n\nLocation: Various Locations\nFall King Mackerel Fishing Tournament\n<h1>October 2011</h1>\n<h3>Grand Strand Fishing Rodeo</h3>\n<strong> Oct 22   - 22 </strong>\n\nLocation: Various Locations\nTake A Kid Fishing Tournament\n<h1>November 2011</h1>\nNo Events Planned For This Month\n<h1>December 2011</h1>\nNo Events Planned For This Month\n<h1>January 2012</h1>\nNo Events Planned For This Month\n<h1>February 2012</h1>\nNo Events Planned For This Month\n<h1>March 2012</h1>\nNo Events Planned For This Month','Events','','inherit','open','open','','63-autosave','','','2011-05-31 02:44:15','2011-05-31 02:44:15','',63,'http://oor.wbtaylor.net/index.php/2011/05/63-autosave/',0,'revision','',0),(109,1,'2011-05-26 12:51:50','2011-05-26 12:51:50','No content.','Events','','inherit','open','open','','63-revision-2','','','2011-05-26 12:51:50','2011-05-26 12:51:50','',63,'http://oor.wbtaylor.net/index.php/2011/05/63-revision-2/',0,'revision','',0),(110,1,'2011-05-31 02:56:11','2011-05-31 02:56:11','<div style=\'width: 500px; height: 440px; background-image: url( http://vortex.accuweather.com/adcbin/netweather_v2/backgrounds/blue_500x440_bg.jpg ); background-repeat: no-repeat; background-color: #346797;\' ><div id=\'NetweatherContainer\' style=\'height: 420px;\' ><script src=\'http://netweather.accuweather.com/adcbin/netweather_v2/netweatherV2ex.asp?partner=netweather&tStyle=whteYell&logo=1&zipcode=29577&lang=eng&size=13&theme=blue&metric=0&target=_self\'></script></div><div style=\'text-align: center; font-family: arial, helvetica, verdana, sans-serif; font-size: 12px; line-height: 20px; color: #FFFFFF;\' ><a style=\'color: #FFFFFF\' href=\'http://www.accuweather.com/us/SC/MYRTLE BEACH/29577/city-weather-forecast.asp?partner=accuweather&traveler=0\' >Weather Forecast</a> | <a style=\'color: #FFFFFF\' href=\'http://www.accuweather.com/maps-satellite.asp\' >Weather Maps</a> | <a style=\'color: #FFFFFF\' href=\'http://www.accuweather.com/index-radar.asp?partner=accuweather&traveler=0&zipcode=29577\' >Weather Radar</a> | <a style=\'color: #FFFFFF\' href=\'http://hurricane.accuweather.com/hurricane/index.asp\' >Hurricane Center</a></div></div>','Weather','','publish','open','open','','weather','','','2011-05-31 03:02:35','2011-05-31 03:02:35','',0,'http://oor.wbtaylor.net/?page_id=110',0,'page','',0),(111,1,'2011-05-31 02:55:32','2011-05-31 02:55:32','<div style=\'width: 630px; height: 440px; background-image: url( http://vortex.accuweather.com/adcbin/netweather_v2/backgrounds/lhtblue_630x440_bg.jpg ); background-repeat: no-repeat; background-color: #3BA6C9;\' ><div style=\'height: 420px;\' ><script src=\'http://netweather.accuweather.com/adcbin/netweather_v2/netweatherV2.asp?partner=netweather&tStyle=whteYell&logo=1&zipcode=29577&lang=eng&size=14&theme=lhtblue&metric=0&target=_self\'></script></div><div style=\'text-align: center; font-family: arial, helvetica, verdana, sans-serif; font-size: 12px; line-height: 20px; color: #FFFFFF;\' ><a style=\'color: #FFFFFF\' href=\'http://www.accuweather.com/us/SC/MYRTLE BEACH/29577/city-weather-forecast.asp?partner=accuweather&traveler=0\' target=\"_blank\" >Weather Forecast</a> | <a style=\'color: #FFFFFF\' href=\'http://www.accuweather.com/maps-satellite.asp\' target=\"_blank\">Weather Maps</a> | <a style=\'color: #FFFFFF\' href=\'http://www.accuweather.com/index-radar.asp?partner=accuweather&traveler=0&zipcode=29577\' target=\"_blank\" >Weather Radar</a> | <a style=\'color: #FFFFFF\' href=\'http://hurricane.accuweather.com/hurricane/index.asp\' target=\"_blank\" >Hurricane Center</a></div></div>\n','Weather','','inherit','open','open','','110-revision','','','2011-05-31 02:55:32','2011-05-31 02:55:32','',110,'http://oor.wbtaylor.net/index.php/2011/05/110-revision/',0,'revision','',0),(112,1,'2011-05-31 02:56:11','2011-05-31 02:56:11','<div style=\'width: 630px; height: 440px; background-image: url( http://vortex.accuweather.com/adcbin/netweather_v2/backgrounds/lhtblue_630x440_bg.jpg ); background-repeat: no-repeat; background-color: #3BA6C9;\' ><div style=\'height: 420px;\' ><script src=\'http://netweather.accuweather.com/adcbin/netweather_v2/netweatherV2.asp?partner=netweather&tStyle=whteYell&logo=1&zipcode=29577&lang=eng&size=14&theme=lhtblue&metric=0&target=_self\'></script></div><div style=\'text-align: center; font-family: arial, helvetica, verdana, sans-serif; font-size: 12px; line-height: 20px; color: #FFFFFF;\' ><a style=\'color: #FFFFFF\' href=\'http://www.accuweather.com/us/SC/MYRTLE BEACH/29577/city-weather-forecast.asp?partner=accuweather&traveler=0\' target=\"_blank\" >Weather Forecast</a> | <a style=\'color: #FFFFFF\' href=\'http://www.accuweather.com/maps-satellite.asp\' target=\"_blank\">Weather Maps</a> | <a style=\'color: #FFFFFF\' href=\'http://www.accuweather.com/index-radar.asp?partner=accuweather&traveler=0&zipcode=29577\' target=\"_blank\" >Weather Radar</a> | <a style=\'color: #FFFFFF\' href=\'http://hurricane.accuweather.com/hurricane/index.asp\' target=\"_blank\" >Hurricane Center</a></div></div>\r\n','Weather','','inherit','open','open','','110-revision-2','','','2011-05-31 02:56:11','2011-05-31 02:56:11','',110,'http://oor.wbtaylor.net/index.php/2011/05/110-revision-2/',0,'revision','',0),(113,1,'2011-05-31 02:56:52','2011-05-31 02:56:52','<div style=\'width: 530px; height: 440px; background-image: url( http://vortex.accuweather.com/adcbin/netweather_v2/backgrounds/lhtblue_630x440_bg.jpg ); background-repeat: no-repeat; background-color: #3BA6C9;\' ><div style=\'height: 420px;\' ><script src=\'http://netweather.accuweather.com/adcbin/netweather_v2/netweatherV2.asp?partner=netweather&tStyle=whteYell&logo=1&zipcode=29577&lang=eng&size=14&theme=lhtblue&metric=0&target=_self\'></script></div><div style=\'text-align: center; font-family: arial, helvetica, verdana, sans-serif; font-size: 12px; line-height: 20px; color: #FFFFFF;\' ><a style=\'color: #FFFFFF\' href=\'http://www.accuweather.com/us/SC/MYRTLE BEACH/29577/city-weather-forecast.asp?partner=accuweather&traveler=0\' target=\"_blank\" >Weather Forecast</a> | <a style=\'color: #FFFFFF\' href=\'http://www.accuweather.com/maps-satellite.asp\' target=\"_blank\">Weather Maps</a> | <a style=\'color: #FFFFFF\' href=\'http://www.accuweather.com/index-radar.asp?partner=accuweather&traveler=0&zipcode=29577\' target=\"_blank\" >Weather Radar</a> | <a style=\'color: #FFFFFF\' href=\'http://hurricane.accuweather.com/hurricane/index.asp\' target=\"_blank\" >Hurricane Center</a></div></div>\r\n','Weather','','inherit','open','open','','110-revision-3','','','2011-05-31 02:56:52','2011-05-31 02:56:52','',110,'http://oor.wbtaylor.net/index.php/2011/05/110-revision-3/',0,'revision','',0),(114,1,'2011-05-30 09:45:13','2011-05-30 09:45:13','<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://active.macromedia.com/flash4/cabs/swflash.cab#version=4,0,0,0\"  id=\"Oceans One Resort\" width=\"500\" height=\"280\">\r\n				 <param name=\"movie\" value=\"OceansOneClip.swf\">\r\n				 <param name=\"quality\" value=\"high\">\r\n				 <embed name=\"Movie2\" src=\"OceansOneClip.swf\" quality=\"high\" width=\"500\" height=\"280\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\">\r\n\r\n				 </embed>\r\n			</object>','Videos','','inherit','open','open','','57-revision-3','','','2011-05-30 09:45:13','2011-05-30 09:45:13','',57,'http://oor.wbtaylor.net/index.php/2011/05/57-revision-3/',0,'revision','',0),(115,1,'2011-05-26 07:38:56','2011-05-26 07:38:56','Oceans One Resort offers a higher level of seaside living in Myrtle Beach, South Carolina.  Recently voted \'BEST OF THE BEACH for Best Overall Hotel,\' our stunning combination of ultra modern architecture and contemporary decor is enhanced by the beautiful view of the Carolina Coastline. Our magnificent, fully furnished 1, 2 and 3 Bedroom Condominiums are highlighedt by great property features like our state of the art indoor and outdoor mineral pools, Jacuzzi whirlpool, Lazy River, kids interactive splash area and spacious sun deck.\r\n\r\nOur convenient oceanfront location is at the foot of the NEW Myrtle Beach Boardwalk and just one block from Family Kingdom Amusement Park and the 2nd Avenue Fishing Pier. We\'re also just a short drive from Broadway at the Beach, The Market Common, Ripley\'s Aquarium, IMAX Theatre and many of the area\'s most popular attractions, restaurants, golf and shopping.','Redefine the Traditional Myrtle Beach Vacation','','inherit','open','open','','9-revision-5','','','2011-05-26 07:38:56','2011-05-26 07:38:56','',9,'http://oor.wbtaylor.net/index.php/2011/05/9-revision-5/',0,'revision','',0),(116,1,'2011-06-02 17:13:56','2011-06-02 17:13:56','Oceans One Resort offers a higher level of seaside living in Myrtle Beach, South Carolina.  Recently voted \'BEST OF THE BEACH for Best Overall Hotel,\' our stunning combination of ultra modern architecture and contemporary decor is enhanced by the beautiful view of the Carolina Coastline. Our magnificent, fully furnished 1, 2 and 3 Bedroom Condominiums are highlighed by great property features like our state of the art indoor and outdoor mineral pools, Jacuzzi whirlpool, Lazy River, kids interactive splash area and spacious sun deck.\r\n\r\nOur convenient oceanfront location is at the foot of the NEW Myrtle Beach Boardwalk and just one block from Family Kingdom Amusement Park and the 2nd Avenue Fishing Pier. We\'re also just a short drive from Broadway at the Beach, The Market Common, Ripley\'s Aquarium, IMAX Theatre and many of the area\'s most popular attractions, restaurants, golf and shopping.','Redefine the Traditional Myrtle Beach Vacation','','inherit','open','open','','9-revision-6','','','2011-06-02 17:13:56','2011-06-02 17:13:56','',9,'http://oor.wbtaylor.net/index.php/2011/06/9-revision-6/',0,'revision','',0),(117,1,'2011-06-02 17:14:11','2011-06-02 17:14:11','Oceans One Resort offers a higher level of seaside living in Myrtle Beach, South Carolina.  Recently voted \'BEST OF THE BEACH for Best Overall Hotel,\' our stunning combination of ultra modern architecture and contemporary decor is enhanced by the beautiful view of the Carolina Coastline. Our magnificent, fully furnished 1, 2 and 3 Bedroom Condominiums are highlighted by great property features like our state of the art indoor and outdoor mineral pools, Jacuzzi whirlpool, Lazy River, kids interactive splash area and spacious sun deck.\r\n\r\nOur convenient oceanfront location is at the foot of the NEW Myrtle Beach Boardwalk and just one block from Family Kingdom Amusement Park and the 2nd Avenue Fishing Pier. We\'re also just a short drive from Broadway at the Beach, The Market Common, Ripley\'s Aquarium, IMAX Theatre and many of the area\'s most popular attractions, restaurants, golf and shopping.','Redefine the Traditional Myrtle Beach Vacation','','inherit','open','open','','9-revision-7','','','2011-06-02 17:14:11','2011-06-02 17:14:11','',9,'http://oor.wbtaylor.net/index.php/2011/06/9-revision-7/',0,'revision','',0),(118,1,'2011-06-02 17:17:06','2011-06-02 17:17:06','Oceans One Resort offers a higher level of seaside living in Myrtle Beach, South Carolina.  Recently voted \'BEST OF THE BEACH for Best Overall Hotel,\' our stunning combination of ultra modern architecture and contemporary decor is enhanced by the beautiful view of the Carolina Coastline. Our magnificent, fully furnished 1, 2 and 3 Bedroom Condominiums are highlighted by great property features like our state of the art indoor and outdoor mineral pools, Jacuzzi whirlpool, Lazy River, kids interactive splash area and spacious sun deck.\r\n\r\nOur convenient oceanfront location is at the foot of the NEW Myrtle Beach Boardwalk and just one block from Family Kingdom Amusement Park and the 2nd Avenue Fishing Pier. We\'re also just a short drive from Broadway at the Beach, The Market Common, Ripley\'s Aquarium, IMAX Theatre and many of the area\'s most popular attractions, restaurants, golf and shopping.\r\n\r\nOceans One Resort in Myrtle Beach is a <strong>Non-Smoking Facility</strong>','Redefine the Traditional Myrtle Beach Vacation','','inherit','open','open','','9-revision-8','','','2011-06-02 17:17:06','2011-06-02 17:17:06','',9,'http://oor.wbtaylor.net/index.php/2011/06/9-revision-8/',0,'revision','',0),(119,1,'2011-05-26 10:28:04','2011-05-26 10:28:04','From your private balcony combined with the comfort of fully furnished and accessorized 1, 2, &amp; 3 Bedroom Oceanfront Condominiums. If this isn\'t your idea of vacation paradise, it\'s very close.\r\nThe living and dining areas were designed to provide our guests with unmatched ocean views to enhance your vacation experience. Relax and enjoy the sounds of crashing ocean waves and playing seagulls, and learn to leave all the stress and worries of everyday living at home. We have everything prepared for your visit.','Imagine one of the most magnificent views of the Carolina Coastline...','','inherit','open','open','','27-revision-4','','','2011-05-26 10:28:04','2011-05-26 10:28:04','',27,'http://oor.wbtaylor.net/index.php/2011/05/27-revision-4/',0,'revision','',0),(120,1,'2011-05-26 12:51:01','2011-05-26 12:51:01','No content.','Boardwalk','','inherit','open','open','','59-revision-2','','','2011-05-26 12:51:01','2011-05-26 12:51:01','',59,'http://oor.wbtaylor.net/index.php/2011/05/59-revision-2/',0,'revision','',0),(121,1,'2011-06-07 20:34:44','2011-06-07 20:34:44','Just steps away from Oceans One Resort is the all new Myrtle Beach Boardwalk. The 1.2 mile boardwalk was completed in 2010 and stretches between 2nd Avenue North and 14th Avenue North in the downtown area of Myrtle Beach and has been divided into three sections.\n\n<strong>North Walkway:</strong> Extends from the 14th Avenue North Pier to Plyler Park (Mr. Joe White Avenue) providing a peaceful and tranquil environment for those seeking a more peaceful setting.  The walkway is eight feet wide and provides multiple beach access pathways.\n\n<strong>Second Section:</strong> Starting at Plyler Park (Mr. Joe White Avenue) and continuing to Eight Avenue North, the middle section of the boardwalk expands to 26-50 feet wide and is in the heart of it all. Featuring some of the most recognizable restaurants and bars (Oceanfront Bar and Grill, Marvin’s, The Bowery), shopping (Gay Dolphin), arcades, ice cream shops and more!  One of the newest additions can’t be missed; the all new SkyWheel Myrtle Beach is an observation wheel that stands 200 feet above sea level providing unparalleled views of the Grand Strand along with an amazing light show at night. Alongside this sits the newly opened Landshark Bar &amp; Grill, the latest Jimmy Buffet themed restaurant to open to rave reviews! Also included in the second section is the old Myrtle Beach Pavilion site which now provides the space for multiple music festivals, traveling exhibits and more throughout the year.\n\n<strong>South Promenade:</strong> Completing the Boardwalk from 8th Avenue North to First Avenue North is the South Promenade. This section is home to multiple benches allowing you to sit back and remember why you love Myrtle Beach and all the memories you have created.  You can walk along the main walkways (12 feet wide) or take the secondary pathways (8 feet wide). The South Promenade is also home to the newly renovated Second Avenue Pier featuring the Pier House restaurant and Pier View Open Air Bar. In June, fireworks shows are displayed every Wednesday night from the pier starting at 9:30pm!\n\nThe Myrtle Beach Boardwalk has quickly become a must see attraction by locals and vacationers regardless of the time of year while the festivals and events along the Boardwalk have become some of the most popular in the area.  March kicks off with the St. Patrick’s Day Festival and features free concerts throughout the day with past headliners such as Uncle Kracker and Sister Hazel. June, July and August get rolling with Hot Summer Nights, where the Boardwalk comes to life 7 nights a week featuring bands, fireworks, kids’ carnival, entertainers and more. Completing the festival lineup in October is Oktoberfest offering authentic German food, beer and wine along with another day of free concerts. All events are kid friendly and offer alcohol free zones, inflatables, entertainers and more!','Myrtle Beach Boardwalk','','inherit','open','open','','59-autosave','','','2011-06-07 20:34:44','2011-06-07 20:34:44','',59,'http://oor.wbtaylor.net/index.php/2011/06/59-autosave/',0,'revision','',0),(122,1,'2011-06-02 17:24:22','2011-06-02 17:24:22','Just steps away from Oceans One Resort is the all new Myrtle Beach Boardwalk. The 1.2 mile boardwalk was completed in 2010 and stretches between 2nd Avenue North and 14th Avenue North in the downtown area of Myrtle Beach and has been divided into three sections.\r\n\r\nNorth Walkway: Extends from the 14th Avenue North Pier to Plyler Park (Mr. Joe White Avenue) providing a peaceful and tranquil environment for those seeking a more peaceful setting.  The walkway is eight feet wide and provides multiple beach access pathways.\r\n\r\nSecond Section: Starting at Plyler Park (Mr. Joe White Avenue) and continuing to Eight Avenue North, the middle section of the boardwalk expands to 26-50 feet wide and is in the heart of it all. Featuring some of the most recognizable restaurants and bars (Oceanfront Bar and Grill, Marvin’s, The Bowery), shopping (Gay Dolphin), arcades, ice cream shops and more!  One of the newest additions can’t be missed; the all new SkyWheel Myrtle Beach is an observation wheel that stands 200 feet above sea level providing unparalleled views of the Grand Strand along with an amazing light show at night. Alongside this sits the newly opened Landshark Bar &amp; Grill, the latest Jimmy Buffet themed restaurant to open to rave reviews! Also included in the second section is the old Myrtle Beach Pavilion site which now provides the space for multiple music festivals, traveling exhibits and more throughout the year.\r\n\r\nSouth Promenade: Completing the Boardwalk from 8th Avenue North to First Avenue North is the South Promenade. This section is home to multiple benches allowing you to sit back and remember why you love Myrtle Beach and all the memories you have created.  You can walk along the main walkways (12 feet wide) or take the secondary pathways (8 feet wide). The South Promenade is also home to the newly renovated Second Avenue Pier featuring the Pier House restaurant and Pier View Open Air Bar. In June, fireworks shows are displayed every Wednesday night from the pier starting at 9:30pm!\r\n\r\nThe Myrtle Beach Boardwalk has quickly become a must see attraction by locals and vacationers regardless of the time of year while the festivals and events along the Boardwalk have become some of the most popular in the area.  March kicks off with the St. Patrick’s Day Festival and features free concerts throughout the day with past headliners such as Uncle Kracker and Sister Hazel. June, July and August get rolling with Hot Summer Nights, where the Boardwalk comes to life 7 nights a week featuring bands, fireworks, kids’ carnival, entertainers and more. Completing the festival lineup in October is Oktoberfest offering authentic German food, beer and wine along with another day of free concerts. All events are kid friendly and offer alcohol free zones, inflatables, entertainers and more!','Boardwalk','','inherit','open','open','','59-revision-3','','','2011-06-02 17:24:22','2011-06-02 17:24:22','',59,'http://oor.wbtaylor.net/index.php/2011/06/59-revision-3/',0,'revision','',0),(123,1,'2011-06-06 20:01:02','2011-06-06 20:01:02','<h3><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\"><img class=\"alignleft size-full wp-image-145\" title=\"Alabama Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\" alt=\"Alabama Theatre\" width=\"130\" height=\"110\" /></a>Alabama Theatre<strong>\n</h3>\n4750 Hwy 17 South</strong>\n<span style=\"color: #000000;\"> <strong> North Myrtle Beach, SC 29582</strong>\n</span>\n\nVoted the #1 Live Theatre Attraction by Myrtle Beach Visitors featuring the Best in Family Entertainment is located in Barefoot Landing in North Myrtle Beach. The Alabama Theatre long standing performance is \"one The Show\". It has become a go-to show every vacation as the show changes from year to year. one features musical genres such as Country, Gospel, Broadway, Pop and Rock and don\'t forget the comedy! one is family favorite and a show you will never regret. If you visit during the holiday season, you will want to catch the other staple at Alabama Theatre - The South\'s Grandest Christmas Show. This family friendly holiday show features musical performances, dance and plenty of laughter from resident comedian Ricky Mokel. In addition to the regular shows, you will also have the opportunity to see live concerts from chart topping artists such as Kenny Rogers, The Oak Ridge Boys, LeeAnn Rimes and more!\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/25739_117188041629520_117187501629574_301191_2621350_n.jpg\"><img class=\"alignleft size-full wp-image-146\" title=\"Alligator Adventure\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/25739_117188041629520_117187501629574_301191_2621350_n.jpg\" alt=\"Alligator Adventure\" width=\"130\" height=\"59\" /></a>Alligator Adventure</h4>\nLocated adjacent to Barefoot Landing in North Myrtle Beach, Alligator Adventure puts you face to face with reptiles, alligators, crocodiles, lemurs, tropical birds, tigers, beavers and bats...oh my! Their live shows are a favorite among visitors and feature Alligator Live Feedings in the warmer months (Mid-April through Mid-October), Alligator Handling and Lecture in the cooler months and Snake Handling. Alligator Adventure is also home to UTAN - King of Crocs, the largest crocodile in the United States measuring over 20 feet long! Tickets can be purchased online or at the ticket counter and discounts are available including Active Military discounts and a Locals discount. You also receive a 2nd day free with any paid admission, you can\'t afford not to experience Alligator Adventure!\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/185605_204035776273335_111374112206169_853743_1453142_n.jpg\"><img class=\"alignleft size-full wp-image-147\" title=\"Barefoot Landing\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/185605_204035776273335_111374112206169_853743_1453142_n.jpg\" alt=\"Barefoot Landing\" width=\"130\" height=\"93\" /></a>Barefoot Landing</h4>\nBarefoot Landing, sitting along the Intercoastal Waterway, in North Myrtle Beach  is home to the Alabama Theatre, House of Blues, multiple restaurants, more than 100 specialty and retail shops and entertainment! During the summer months you can sit back and enjoy fireworks over the lake and also get up close and personal with exotic animals at the TIGERS Exhibit. SummerFest brings excitement all over Barefoot Landing with parades, magicians, clowns, face painters, stilt walkers, jugglers and more 7 nights a week! Barefoot Landing is conveintently located to both Myrtle Beach and North Myrtle Beach travelers wanting to take it slow and easy....that\'s the beach way, that\'s the Barefoot Way.\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/221105_10150598183460433_209961260432_18527166_4310333_o.jpg\"><img class=\"alignleft size-full wp-image-149\" title=\"Broadway at the Beach\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/221105_10150598183460433_209961260432_18527166_4310333_o.jpg\" alt=\"Broadway at the Beach\" width=\"130\" height=\"99\" /></a>Broadway at the Beach</h4>\nIf you\'re looking for one place to go that has everything, Broadway at the Beach is 350 acres of paradise and was voted #1 Attraction in Myrtle Beach according to Trip Advisor. Featuring shopping, dining, nightlife, and entertainment you simply can not go wrong. 2011 brings new excitement and merchants such as WonderWorks Myrtle Beach (an amusement park for your mind), Legends in Concert (Myrtle Beach favorite recently relocated from Surfside Beach) and Bodies Revealed (summer months only). New restaurants feature Carlos \'n Charlies (family friendly Mexican restuarant), Tilted Kilt Pub &amp; Eatery (Scottish themed pub and festive eatery) and Good Time Charley\'s (American featuring sandwiches, hamburgers and more). You can still enjoy your favorites such as IMAX 3D Theatre, MagiQuest, Senor Frogs, Ripley\'s Aquarium, Jimmy Buffet\'s Margaritaville just to name a few. For those who once loved the Myrtle Beach Pavilion be sure to visit the Pavilion Nostaglia Park featuring some of the Pavilion\'s most popular rides including the historical carousel. Year round events and parades are some of the most popular in the area while the Fireworks show over Lake Broadway is a must see during the summer months and on special occasions. Shop, Dine, Dance, Play...It’s Broadwayyy Fun in Myrtle Beach!\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36803_426904242365_31054032365_4668034_4118876_n.jpg\"><img class=\"alignleft size-full wp-image-151\" title=\"The Carolina Opry\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36803_426904242365_31054032365_4668034_4118876_n.jpg\" alt=\"The Carolina Opry\" width=\"130\" height=\"130\" /></a>The Carolina Opry</h4>\nCalvin Gilmore presents four legendary shows all in one legendary theater, The Carolina Opry located at Broadway at the Beach. For 25 years The Carolina Opry has been entertaining everyone who has walked through the door with 2 hours of high-energy music, comedy and dance. Good Vibrations features the best music from the 60s, 70s and 80s in a fast-paced show that will bring you back to the best in American popular music. The Carolina Opry Christmas Special combines the best of the holiday spirit with beloved musical performances, fresh comedy and breathtaking dance. LIGHT See The Music offers a one of a kind view of music with a lazer light show set to a variety of muscial genres. New for 2011 is Beatlemania Now! as seen on Broadway and recaptures everything you loved about The Beatles. Beatlemania Now! will run from June 15-September 4 and showtimes are at 5pm Wed-Sun. If you only see one show...it should be at The Carolina Opry.\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/165770_159098390807159_156683157715349_325517_5126739_n.jpg\"><img class=\"alignleft size-full wp-image-152\" title=\"Celebration Music Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/165770_159098390807159_156683157715349_325517_5126739_n.jpg\" alt=\"Celebration Music Theatre\" width=\"130\" height=\"118\" /></a>Celebration Music Theatre</h4>\nNew for 2011 and located in Surfside Beach, Celebration Music Theatre features the legendary tribute artist show SUPERSTARZ! Live and the Broadway Celebration Series. They also offer a \"just for kids\" production called \"the Rocktastics!\" that will be performing June 15 - August 6. Don\'t miss their Broadway line-up for 2011 with the Minnie Pearl Gospel Hour, All Shook Up, Hairspray, The Southern Bellers and A Christmas Carol.\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n60005132046_1972058_8249708.jpg\"><img class=\"alignleft size-full wp-image-153\" title=\"Children\'s Museum of South Carolina\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n60005132046_1972058_8249708.jpg\" alt=\"Children\'s Museum of South Carolina\" width=\"130\" height=\"104\" /></a>Children\'s Museum of South Carolina</h4>\nCome \"Touch, Explore, and Play...\" while learning about your world through the interactive exhibits and programs at The Children\'s Museum of South Carolina. Located near the Myrtle Beach Convention Center, CMSC offers special programs, such as Tales for Tots and Digitalis Planetarium, are extremely popular with the adults and children who visit the Museum. With a wide variety of interactive exhibits kids of all ages are sure to have a fun learning experience.\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/29330_127959170555007_127958977221693_331764_1537881_n.jpg\"><img class=\"alignleft size-full wp-image-154\" title=\"Coastal Grand Mall\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/29330_127959170555007_127958977221693_331764_1537881_n.jpg\" alt=\"Coastal Grand Mall\" width=\"130\" height=\"133\" /></a>Coastal Grand Mall</h4>\nFeaturing anchor stores Belk, Dillard\'s, JC Penney and Sears; Coastal Grand Mall has quickly become the #1 mall in Myrtle Beach. Featuring more than 100 stores and restaurants, you will find everything you were looking for...and then some! After you have shopped until you drop, sit down and relax in the state of the art 14 screen Cinemark Movie Theater or enjoy something to eat at Abuelo\'s, Texas Roadhouse, Red Robin and more. Treat everyone in the family to something unique from Coastal Grand Mall.\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/20039_235537488958_94486398958_3067222_3404770_n.jpg\"><img class=\"alignleft size-full wp-image-155\" title=\"Family Kingdom Amusement Park\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/20039_235537488958_94486398958_3067222_3404770_n.jpg\" alt=\"Family Kingdom Amusement Park\" width=\"130\" height=\"65\" /></a>Family Kingdom Amusement Park</h4>\nJust one block from Oceans One Resort you will find Myrtle Beach\'s only Seaside Amusement Park and Oceanfront Water Park, Family Kingdom! Featuring Go Karts, Kiddie Rides, Family Rides, Water Rides and Thrill Rides the entire family can enjoy their time in the park. Best of all, there is NO ADMISSION FEE! New for 2011 is the Picnic Pavilion, a covered dining area that can accommodate up to 100 guests for birthday parties, family reunions or any other group outing.\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/72254_10150319280965158_196453920157_15571741_4625780_n.jpg\"><img class=\"alignleft size-full wp-image-156\" title=\"House of Blues\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/72254_10150319280965158_196453920157_15571741_4625780_n.jpg\" alt=\"House of Blues\" width=\"130\" height=\"130\" /></a>House of Blues</h4>\nThe House of Blues Myrtle Beach, located in Barefoot Landing, offers live music on the Sugar Shack Deck and the Concert Hall and delta inspired cuisine in their world famous restuarant. With leading acts from country, rock, top 40 and more your vacation won\'t be complete without the intimate setting with your favorite artist. You can even \"Pass the Line\" and \"Crash the Barricade\" to gain entry first into the concerts. The Gospel Brunch in the restaurant is something that shouldn\'t missed with an amazing buffet and inspiring gospel performances. Where the heart meets the soul®. The ultimate live music and dining experience.\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/15867_170700122851_45187567851_2960017_1281271_n.jpg\"><img class=\"alignleft size-full wp-image-157\" title=\"Legends in Concert\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/15867_170700122851_45187567851_2960017_1281271_n.jpg\" alt=\"Legends in Concert\" width=\"130\" height=\"77\" /></a>Legends in Concert</h4>\nThe World\'s Longest Running Live Tribute Show, Legends in Concert has been a favorite in Myrtle Beach for years and offering a variety of concerts and live shows and many other activities for all ages. Legends in Concert recently relocated a state-of-the-art theater in Broadway at the Beach next to Planet Hollywood!\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n43711241696_2031957_4252189.jpg\"><img class=\"alignleft size-full wp-image-158\" title=\"The Market Common\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n43711241696_2031957_4252189.jpg\" alt=\"The Market Common\" width=\"130\" height=\"98\" /></a>The Market Common</h4>\nA place where you can experience exceptional shopping and dining in a beautifully-designed village setting. From the nation’s most celebrated names in retail to ice cream and pizza for the kids, and from one-of-a-kind restaurants to the most comfortable movie theater at the beach, The Market Common is always worth your time. The Market Common is also home to multiple festivals all year long, such as Sun Fun Festival, Beerfest, Myrtle Beach Wine Fest, Oktoberfest and more!\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/12935_202879413428_31330523428_3156769_3542982_n.jpg\"><img class=\"alignleft size-full wp-image-159\" title=\"Medieval Times\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/12935_202879413428_31330523428_3156769_3542982_n.jpg\" alt=\"Medieval Times\" width=\"130\" height=\"130\" /></a>Medieval Times</h4>\nInside the stone walls of the 11th century-style castle, Medieval Spain comes to life as six knights, donning authentic armor, clash in a jousting tournament for the title of King\'s Champion. Let your imagination take you to Medieval Times.\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/30659_128515707171283_113684151987772_212653_3752426_n.jpg\"><img class=\"alignleft size-full wp-image-160\" title=\"Myrtle Beach Boardwalk\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/30659_128515707171283_113684151987772_212653_3752426_n.jpg\" alt=\"Myrtle Beach Boardwalk\" width=\"130\" height=\"62\" /></a>Myrtle Beach Boardwalk</h4>\nThe Myrtle Beach Boardwalk opened in 2010 to rave reviews! The 1.2 mile boardwalk stretches from 14th Avenue North to 2nd Avenue North in the heart of Myrtle Beach. The Myrtle Beach Boardwalk is home to restaurants, shopping, arcades, ice cream shops and more. In the center of it all is the brand new SkyWheel Myrtle Beach and Landshark Bar &amp; Grill which opened to rave reviews in May 2011!  Check out our <a title=\"Boardwalk\" href=\"http://oor.wbtaylor.net/index.php/boardwalk/\">Myrtle Beach Boardwalk page</a> for more information.\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36253_189678207725374_113346388691890_679290_4273636_n.jpg\"><img class=\"alignleft size-full wp-image-161\" title=\"Myrtle Beach Mall\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36253_189678207725374_113346388691890_679290_4273636_n.jpg\" alt=\"Myrtle Beach Mall\" width=\"130\" height=\"77\" /></a>Myrtle Beach Mall</h4>\nConveinently located at the corner of Highways 22 and 17, Myrtle Beach Mall continues to provide shoppers with unique stores and value not offered by other malls in the area. Two Belk stores, JCPenney are the long standing anchors and are now accompanied by the only Bass Pro Shops in South Carolina! The mall is also home to Uptown Theater, Home of the Carolina Improv, an improv comedy about living and playing Myrtle Beach. If you aren\'t sure what you need, shopping at Myrtle Beach Mall will help you figure it out.\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n70793224673_1768505_6774025.jpg\"><img class=\"alignleft size-full wp-image-162\" title=\"Myrtle Beach Pelicans\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n70793224673_1768505_6774025.jpg\" alt=\"Myrtle Beach Pelicans\" width=\"130\" height=\"114\" /></a>Myrtle Beach Pelicans</h4>\nThe Myrtle Beach Pelicans have been bringing minor league baseball to the beach since 1999 and as of 2011 are the Advanced \'A\' Affiliate of the Texas Rangers. With various promotions and events, including multiple fireworks shows, the Myrtle Beach Pelicans are a family favorite stop on their vacation. Kids are allowed to run the bases following the game and play catch on the field prior to the start of the game.  To add to the fun you always have to be on the lookout for Splash, the official mascot who is usually up to no good; Rally Shark, who adds excitement late in the game and the always popular, Deuce - part bat boy, part ball caddy. As they say...Baseball\'s Even Better at the Beach!\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5815_111476139824_111222624824_2032117_1940650_n.jpg\"><img class=\"alignleft size-full wp-image-163\" title=\"Myrtle Waves\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5815_111476139824_111222624824_2032117_1940650_n.jpg\" alt=\"Myrtle Waves\" width=\"130\" height=\"58\" /></a>Myrtle Waves</h4>\nVoted 1st Place in Best of the Beach in 2010, Myrtle Waves offers over 20 acres of swerves, curves, waves, and chutes and over 1 million gallons of water! Raft rides, Slides and Family Attractions make this a one-stop place for all around family fun in the sun. The younger kids will enjoy Bubble Bay and Saturation Station while the older kids (and adults) have a blast twisting and turning on Racin\' River, Turbo Twisters, Riptide Rockets Night Flight and more. Myrtle Waves is open seasonally (mid-May thru mid-September) and season passes are available.\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/19174_252369281043_209993466043_3841063_2345964_n.jpg\"><img class=\"alignleft size-full wp-image-164\" title=\"NASCAR SpeedPark\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/19174_252369281043_209993466043_3841063_2345964_n.jpg\" alt=\"NASCAR SpeedPark\" width=\"130\" height=\"124\" /></a>NASCAR SpeedPark</h4>\nIf speed is your thing then the NASCAR SpeedPark is for you, boasting over 26 acres of the industries hottest go-kart tracks, family rides, mini-golf courses, midway games, in addition to family dining in a relaxed and fun environment. Challenge everyone in your family to a little race and a lot of fun. NASCAR SpeedPark is open year round and various tickets pacakages are available.\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/6609_109386611532_107473016532_2615436_7261003_n.jpg\"><img class=\"alignleft size-full wp-image-165\" title=\"The Palace Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/6609_109386611532_107473016532_2615436_7261003_n.jpg\" alt=\"The Palace Theatre\" width=\"130\" height=\"90\" /></a>The Palace Theatre</h4>\nThe Palace Theatre is located at Broadway at the Beach and is home to the best in live entertainment. Their 2011 lineup includes Hooray for Hollywood which will take you back through 50 years of movie history inlcuding some of the most popular song and dance routines from movies such as Singing in the Rain and Disney\'s \"Jungle Book\". Back by popular demand is The Magical Spirit of Ireland, enjoy sounds from the Irish Tenors and the world renowned Spirit of the Dance dancers. Get your heart pumping and your pulse racing with Le Grand Cirque Adreneline, a 2 hour death defying performance filled with contortionists, tumblers, incredible aerial acts as well as the breathtaking Wheel of Death. Start your holiday season in style with Christmas on Ice, a a one-of-a-kind show that is sure to be an instant family hit as Santa and his helpers take you on a journey around a 40 foot ice skating rink. The Palace Theatre boasts an elegance and beauty unrivaled by any other Theatre in South Carolina.\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/248098_168641923198993_103486043047915_488794_5571923_n.jpg\"><img class=\"alignleft size-full wp-image-166\" title=\"Pirate\'s Voyage\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/248098_168641923198993_103486043047915_488794_5571923_n.jpg\" alt=\"Pirate\'s Voyage\" width=\"130\" height=\"130\" /></a>Pirate\'s Voyage</h4>\nAll new for 2011, Pirate\'s Voyage is the latest live dinner show from Dolly Parton. After closing the doors on the long time running Dixie Stampede, Dolly Parton has revamped the venue into a pirates dream! Featuring 15 foot deep, 750 thousand gallon  lagoon, and 3 full-sized ships, complete with pirates, battling over who will take the treasure. Just revealed was the live animal show which will feature a sea lion who will perform and even \"arrrrrrrrgh\" multiple times during the show. The dinner menu has been updated as well but still continues with the ever popular soup from Dixie Stampede. Pirate\'s Voyage opens on June 3rd, 2011...it\'s time to get your tickets, matey!\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n52724914645_1534472_5319779.jpg\"><img class=\"alignleft size-full wp-image-167\" title=\"Ripley\'s Aquarium\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n52724914645_1534472_5319779.jpg\" alt=\"Ripley\'s Aquarium\" width=\"130\" height=\"123\" /></a>Ripley\'s Aquarium</h4>\nRipley\'s Aquarium Myrtle Beach can be found at Broadway at the Beach. Sea life is abundant in the aquarium with more than 350 individual species featuring 10,000 exotic sea creatures. Get hands on in the Discovery Center by holding a horseshoe crab or head over to Ray Bay, where you can reach out and touch a stingray as they glide by. See some of the more exotic fish from the Amazon River at Rio Amazon or get a glimpse of color at Rainbow Rock where the brightly colored Indo-Pacific fish swim through a coral reef. A new exhibit for 2011 gets you up close and personal with the ocean\'s most feared predator, Sharks-Perfect Predators features over a dozen species of sharks and interactive exhibits where you can even feel the force of a shark bite! Don\'t let your eyes fool you, another new exhibit for 2011 is Mermaids, a captivating show that will occur 3 times daily followed by meet and greets. If you\'re looking for family fun that is also educational, Ripley\'s Aquarium needs to be on your list!\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/17337_470146280006_470128185006_10677882_3874238_n.jpg\"><img class=\"alignleft size-full wp-image-168\" title=\"Second Avenue Pier\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/17337_470146280006_470128185006_10677882_3874238_n.jpg\" alt=\"Second Avenue Pier\" width=\"130\" height=\"264\" /></a>Second Avenue Pier</h4>\nRecently renovated, Second Avenue Pier, which has been around since 1936, is located on the southern portion of the Myrtle Beach Boardwalk and just steps away from Oceans One Resort. The pier now features the Pier House Restaurant and Pier View Bar &amp; Lounge (open air bar) as well as what the pier has been famous for...fishing! During the summer season, Second Avenue Pier is home to an amazing fireworks display every Wednesday night as part of the Hot Summer Nights on the Boardwalk. Whether you want to relax with some fishing poles, eat breakfast, lunch or dinner, or simply enjoy a tasty beverage in the ocean breeze, Second Avenue Pier is the place to be!\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/170744_140966505959886_129530977103439_243558_6670767_o.jpg\"><img class=\"alignleft size-full wp-image-169\" title=\"SkyWheel Myrtle Beach\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/170744_140966505959886_129530977103439_243558_6670767_o.jpg\" alt=\"SkyWheel Myrtle Beach\" width=\"130\" height=\"90\" /></a>SkyWheel Myrtle Beach</h4>\n<strong></strong>It\'s tall, it\'s round and it has a light show...yes, the SkyWheel Myrtle is hard to miss along the Myrtle Beach Boardwalk and for all the right reasons.  Standing 200 feet above sea level, you can enjoy a view rarely seen of the Grand Strand in one of 42 temperature controlled glass gondolas. At night a spectacular LED lightshow begins, giving that extra spark to downtown Myrtle Beach. Operating year round, your flight will consist of three rotations and ranges from 8-12 minutes in length and is the first observation wheel of its kind in the United States.\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n25273984618_1008302_1057.jpg\"><img class=\"alignleft size-full wp-image-170\" title=\"Tanger Outlets\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n25273984618_1008302_1057.jpg\" alt=\"Tanger Outlets\" width=\"130\" height=\"87\" /></a>Tanger Outlets</h4>\n<strong></strong>Shop guilt free at either Tanger Outlets located in both Myrtle Beach on 501 or on Kings Highway near Myrtle Beach Mall. With stores such as Coach, kate spade, Old Navy, Gap, Levi\'s, Under Armour, Carter\'s, Disney Store and many, many more; you are sure to find something for the entire family, even Dad! Not only will you find the nation’s leading designer and brand name stores with the widest selection but the prices are also backed by the Best Price Guarantee. When you shop at Tanger Outlets, you can shop with confidence while on vacation.\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/193863_159995370724615_152235458167273_330537_123776_o.jpg\"><img class=\"alignleft size-full wp-image-171\" title=\"WonderWorks\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/193863_159995370724615_152235458167273_330537_123776_o.jpg\" alt=\"WonderWorks\" width=\"130\" height=\"86\" /></a>WonderWorks</h4>\n<strong></strong>A new attraction at Broadway at the Beach in 2011 is WonderWorks, an indoor interactive amusement park for the mind. Whether you are driving by or walking around Broadway at the Beach, you can\'t help but be amazed at the building that appears to have fallen from the sky and landed upside down. WonderWorks features more than 100 exhibits that allow you to interact, discover and explore! Feel the 84 mph winds of a hurricane, build your own roller coaster or submarine adventure with WonderSimulators, pilot a fighter jet, manuever the controls of a NASA spacecraft or simply have fun with bubbles in the Bubble Lab. WonderWorks is open year round, seven days a week and they suggest you allow 3-4 hours to get the full experience.','Things to Do','','inherit','open','open','','61-autosave','','','2011-06-06 20:01:02','2011-06-06 20:01:02','',61,'http://oor.wbtaylor.net/index.php/2011/06/61-autosave/',0,'revision','',0),(124,1,'2011-05-26 12:51:34','2011-05-26 12:51:34','No content.','Things to Do','','inherit','open','open','','61-revision-2','','','2011-05-26 12:51:34','2011-05-26 12:51:34','',61,'http://oor.wbtaylor.net/index.php/2011/05/61-revision-2/',0,'revision','',0),(125,1,'2011-06-03 20:19:27','2011-06-03 20:19:27','Alabama Theatre\r\nVoted the #1 Live Theatre Attraction by Myrtle Beach Visitors featuring the Best in Family Entertainment is located in Barefoot Landing in North Myrtle Beach. The Alabama Theatre long standing performance is \"one The Show\". It has become a go-to show every vacation as the show changes from year to year. one features musical genres such as Country, Gospel, Broadway, Pop and Rock and don\'t forget the comedy! one is family favorite and a show you will never regret. If you visit during the holiday season, you will want to catch the other staple at Alabama Theatre - The South\'s Grandest Christmas Show. This family friendly holiday show features musical performances, dance and plenty of laughter from resident comedian Ricky Mokel. In addition to the regular shows, you will also have the opportunity to see live concerts from chart topping artists such as Kenny Rogers, The Oak Ridge Boys, LeeAnn Rimes and more!\r\n\r\nAlligator Adventure\r\nLocated adjacent to Barefoot Landing in North Myrtle Beach, Alligator Adventure puts you face to face with reptiles, alligators, crocodiles, lemurs, tropical birds, tigers, beavers and bats...oh my! Their live shows are a favorite among visitors and feature Alligator Live Feedings in the warmer months (Mid-April through Mid-October), Alligator Handling and Lecture in the cooler months and Snake Handling. Alligator Adventure is also home to UTAN - King of Crocs, the largest crocodile in the United States measuring over 20 feet long! Tickets can be purchased online or at the ticket counter and discounts are available including Active Military discounts and a Locals discount. You also receive a 2nd day free with any paid admission, you can\'t afford not to experience Alligator Adventure!\r\n\r\nBarefoot Landing\r\nBarefoot Landing, sitting along the Intercoastal Waterway, in North Myrtle Beach  is home to the Alabama Theatre, House of Blues, multiple restaurants, more than 100 specialty and retail shops and entertainment! During the summer months you can sit back and enjoy fireworks over the lake and also get up close and personal with exotic animals at the TIGERS Exhibit. SummerFest brings excitement all over Barefoot Landing with parades, magicians, clowns, face painters, stilt walkers, jugglers and more 7 nights a week! Barefoot Landing is conveintently located to both Myrtle Beach and North Myrtle Beach travelers wanting to take it slow and easy....that\'s the beach way, that\'s the Barefoot Way.\r\n\r\nBroadway at the Beach\r\nIf you\'re looking for one place to go that has everything, Broadway at the Beach is 350 acres of paradise and was voted #1 Attraction in Myrtle Beach according to Trip Advisor. Featuring shopping, dining, nightlife, and entertainment you simply can not go wrong. 2011 brings new excitement and merchants such as WonderWorks Myrtle Beach (an amusement park for your mind), Legends in Concert (Myrtle Beach favorite recently relocated from Surfside Beach) and Bodies Revealed (summer months only). New restaurants feature Carlos \'n Charlies (family friendly Mexican restuarant), Tilted Kilt Pub &amp; Eatery (Scottish themed pub and festive eatery) and Good Time Charley\'s (American featuring sandwiches, hamburgers and more). You can still enjoy your favorites such as IMAX 3D Theatre, MagiQuest, Senor Frogs, Ripley\'s Aquarium, Jimmy Buffet\'s Margaritaville just to name a few. For those who once loved the Myrtle Beach Pavilion be sure to visit the Pavilion Nostaglia Park featuring some of the Pavilion\'s most popular rides including the historical carousel. Year round events and parades are some of the most popular in the area while the Fireworks show over Lake Broadway is a must see during the summer months and on special occasions. Shop, Dine, Dance, Play...It’s Broadwayyy Fun in Myrtle Beach!\r\n\r\nCarolina Opry\r\nCalvin Gilmore presents four legendary shows all in one legendary theater, The Carolina Opry located at Broadway at the Beach. For 25 years The Carolina Opry has been entertaining everyone who has walked through the door with 2 hours of high-energy music, comedy and dance. Good Vibrations features the best music from the 60s, 70s and 80s in a fast-paced show that will bring you back to the best in American popular music. The Carolina Opry Christmas Special combines the best of the holiday spirit with beloved musical performances, fresh comedy and breathtaking dance. LIGHT See The Music offers a one of a kind view of music with a lazer light show set to a variety of muscial genres. New for 2011 is Beatlemania Now! as seen on Broadway and recaptures everything you loved about The Beatles. Beatlemania Now! will run from June 15-September 4 and showtimes are at 5pm Wed-Sun. If you only see one show...it should be at The Carolina Opry.\r\n\r\nCelebration Music Theatre\r\nNew for 2011 and located in Surfside Beach, Celebration Music Theatre features the legendary tribute artist show SUPERSTARZ! Live and the Broadway Celebration Series. They also offer a \"just for kids\" production called \"the Rocktastics!\" that will be performing June 15 - August 6. Don\'t miss their Broadway line-up for 2011 with the Minnie Pearl Gospel Hour, All Shook Up, Hairspray, The Southern Bellers and A Christmas Carol.\r\n\r\nChildren\'s Museum of South Carolina\r\nCome \"Touch, Explore, and Play...\" while learning about your world through the interactive exhibits and programs at The Children\'s Museum of South Carolina. Located near the Myrtle Beach Convention Center, CMSC offers special programs, such as Tales for Tots and Digitalis Planetarium, are extremely popular with the adults and children who visit the Museum. With a wide variety of interactive exhibits kids of all ages are sure to have a fun learning experience.\r\n\r\nCoastal Grand Mall\r\nFeaturing anchor stores Belk, Dillard\'s, JC Penney and Sears; Coastal Grand Mall has quickly become the #1 mall in Myrtle Beach. Featuring more than 100 stores and restaurants, you will find everything you were looking for...and then some! After you have shopped until you drop, sit down and relax in the state of the art 14 screen Cinemark Movie Theater or enjoy something to eat at Abuelo\'s, Texas Roadhouse, Red Robin and more. Treat everyone in the family to something unique from Coastal Grand Mall.\r\n\r\nFamily Kingdom\r\nJust one block from Oceans One Resort you will find Myrtle Beach\'s only Seaside Amusement Park and Oceanfront Water Park, Family Kingdom! Featuring Go Karts, Kiddie Rides, Family Rides, Water Rides and Thrill Rides the entire family can enjoy their time in the park. Best of all, there is NO ADMISSION FEE! New for 2011 is the Picnic Pavilion, a covered dining area that can accommodate up to 100 guests for birthday parties, family reunions or any other group outing.\r\n\r\nHouse of Blues\r\nThe House of Blues Myrtle Beach, located in Barefoot Landing, offers live music on the Sugar Shack Deck and the Concert Hall and delta inspired cuisine in their world famous restuarant. With leading acts from country, rock, top 40 and more your vacation won\'t be complete without the intimate setting with your favorite artist. You can even \"Pass the Line\" and \"Crash the Barricade\" to gain entry first into the concerts. The Gospel Brunch in the restaurant is something that shouldn\'t missed with an amazing buffet and inspiring gospel performances. Where the heart meets the soul®. The ultimate live music and dining experience.\r\n\r\nLegends in Concert\r\nThe World\'s Longest Running Live Tribute Show, Legends in Concert has been a favorite in Myrtle Beach for years and offering a variety of concerts and live shows and many other activities for all ages. Legends in Concert recently relocated a state-of-the-art theater in Broadway at the Beach next to Planet Hollywood!\r\n\r\nThe Market Common\r\nA place where you can experience exceptional shopping and dining in a beautifully-designed village setting. From the nation’s most celebrated names in retail to ice cream and pizza for the kids, and from one-of-a-kind restaurants to the most comfortable movie theater at the beach, The Market Common is always worth your time. The Market Common is also home to multiple festivals all year long, such as Sun Fun Festival, Beerfest, Myrtle Beach Wine Fest, Oktoberfest and more!\r\n\r\nMedieval Times\r\nInside the stone walls of the 11th century-style castle, Medieval Spain comes to life as six knights, donning authentic armor, clash in a jousting tournament for the title of King\'s Champion. Let your imagination take you to Medieval Times.\r\n\r\nMyrtle Beach Boardwalk\r\nThe Myrtle Beach Boardwalk opened in 2010 to rave reviews! The 1.2 mile boardwalk stretches from 14th Avenue North to 2nd Avenue North in the heart of Myrtle Beach. The Myrtle Beach Boardwalk is home to restaurants, shopping, arcades, ice cream shops and more. In the center of it all is the brand new SkyWheel Myrtle Beach and Landshark Bar &amp; Grill which opened to rave reviews in May 2011!  Check out our Myrtle Beach Boardwalk page for more information.\r\n\r\nMyrtle Beach Mall\r\nConveinently located at the corner of Highways 22 and 17, Myrtle Beach Mall continues to provide shoppers with unique stores and value not offered by other malls in the area. Two Belk stores, JCPenney are the long standing anchors and are now accompanied by the only Bass Pro Shops in South Carolina! The mall is also home to Uptown Theater, Home of the Carolina Improv, an improv comedy about living and playing Myrtle Beach. If you aren\'t sure what you need, shopping at Myrtle Beach Mall will help you figure it out.\r\n\r\nMyrtle Beach Pelicans\r\nThe Myrtle Beach Pelicans have been bringing minor league baseball to the beach since 1999 and as of 2011 are the Advanced \'A\' Affiliate of the Texas Rangers. With various promotions and events, including multiple fireworks shows, the Myrtle Beach Pelicans are a family favorite stop on their vacation. Kids are allowed to run the bases following the game and play catch on the field prior to the start of the game.  To add to the fun you always have to be on the lookout for Splash, the official mascot who is usually up to no good; Rally Shark, who adds excitement late in the game and the always popular, Deuce - part bat boy, part ball caddy. As they say...Baseball\'s Even Better at the Beach!\r\n\r\nMyrtle Waves\r\nVoted 1st Place in Best of the Beach in 2010, Myrtle Waves offers over 20 acres of swerves, curves, waves, and chutes and over 1 million gallons of water! Raft rides, Slides and Family Attractions make this a one-stop place for all around family fun in the sun. The younger kids will enjoy Bubble Bay and Saturation Station while the older kids (and adults) have a blast twisting and turning on Racin\' River, Turbo Twisters, Riptide Rockets Night Flight and more. Myrtle Waves is open seasonally (mid-May thru mid-September) and season passes are available.\r\n\r\nNASCAR SpeedPark\r\nIf speed is your thing then the NASCAR SpeedPark is for you, boasting over 26 acres of the industries hottest go-kart tracks, family rides, mini-golf courses, midway games, in addition to family dining in a relaxed and fun environment. Challenge everyone in your family to a little race and a lot of fun. NASCAR SpeedPark is open year round and various tickets pacakages are available.\r\n\r\nPalace Theatre\r\nThe Palace Theatre is located at Broadway at the Beach and is home to the best in live entertainment. Their 2011 lineup includes Hooray for Hollywood which will take you back through 50 years of movie history inlcuding some of the most popular song and dance routines from movies such as Singing in the Rain and Disney\'s \"Jungle Book\". Back by popular demand is The Magical Spirit of Ireland, enjoy sounds from the Irish Tenors and the world renowned Spirit of the Dance dancers. Get your heart pumping and your pulse racing with Le Grand Cirque Adreneline, a 2 hour death defying performance filled with contortionists, tumblers, incredible aerial acts as well as the breathtaking Wheel of Death. Start your holiday season in style with Christmas on Ice, a a one-of-a-kind show that is sure to be an instant family hit as Santa and his helpers take you on a journey around a 40 foot ice skating rink. The Palace Theatre boasts an elegance and beauty unrivaled by any other Theatre in South Carolina.\r\n\r\nPirate\'s Voyage\r\nAll new for 2011, Pirate\'s Voyage is the latest live dinner show from Dolly Parton. After closing the doors on the long time running Dixie Stampede, Dolly Parton has revamped the venue into a pirates dream! Featuring 15 foot deep, 750 thousand gallon  lagoon, and 3 full-sized ships, complete with pirates, battling over who will take the treasure. Just revealed was the live animal show which will feature a sea lion who will perform and even \"arrrrrrrrgh\" multiple times during the show. The dinner menu has been updated as well but still continues with the ever popular soup from Dixie Stampede. Pirate\'s Voyage opens on June 3rd, 2011...it\'s time to get your tickets, matey!\r\n\r\nRipley\'s Aquarium\r\nRipley\'s Aquarium Myrtle Beach can be found at Broadway at the Beach. Sea life is abundant in the aquarium with more than 350 individual species featuring 10,000 exotic sea creatures. Get hands on in the Discovery Center by holding a horseshoe crab or head over to Ray Bay, where you can reach out and touch a stingray as they glide by. See some of the more exotic fish from the Amazon River at Rio Amazon or get a glimpse of color at Rainbow Rock where the brightly colored Indo-Pacific fish swim through a coral reef. A new exhibit for 2011 gets you up close and personal with the ocean\'s most feared predator, Sharks-Perfect Predators features over a dozen species of sharks and interactive exhibits where you can even feel the force of a shark bite! Don\'t let your eyes fool you, another new exhibit for 2011 is Mermaids, a captivating show that will occur 3 times daily followed by meet and greets. If you\'re looking for family fun that is also educational, Ripley\'s Aquarium needs to be on your list!\r\n\r\nSecond Avenue Pier\r\nRecently renovated, Second Avenue Pier, which has been around since 1936, is located on the southern portion of the Myrtle Beach Boardwalk and just steps away from Oceans One Resort. The pier now features the Pier House Restaurant and Pier View Bar &amp; Lounge (open air bar) as well as what the pier has been famous for...fishing! During the summer season, Second Avenue Pier is home to an amazing fireworks display every Wednesday night as part of the Hot Summer Nights on the Boardwalk. Whether you want to relax with some fishing poles, eat breakfast, lunch or dinner, or simply enjoy a tasty beverage in the ocean breeze, Second Avenue Pier is the place to be!\r\n\r\n<strong>SkyWheel Myrtle Beach</strong>\r\nIt\'s tall, it\'s round and it has a light show...yes, the SkyWheel Myrtle is hard to miss along the Myrtle Beach Boardwalk and for all the right reasons.  Standing 200 feet above sea level, you can enjoy a view rarely seen of the Grand Strand in one of 42 temperature controlled glass gondolas. At night a spectacular LED lightshow begins, giving that extra spark to downtown Myrtle Beach. Operating year round, your flight will consist of three rotations and ranges from 8-12 minutes in length and is the first observation wheel of its kind in the United States.\r\n\r\n<strong>Tanger Outlets</strong>\r\nShop guilt free at either Tanger Outlets located in both Myrtle Beach on 501 or on Kings Highway near Myrtle Beach Mall. With stores such as Coach, kate spade, Old Navy, Gap, Levi\'s, Under Armour, Carter\'s, Disney Store and many, many more; you are sure to find something for the entire family, even Dad! Not only will you find the nation’s leading designer and brand name stores with the widest selection but the prices are also backed by the Best Price Guarantee. When you shop at Tanger Outlets, you can shop with confidence while on vacation.\r\n<h3><strong>WonderWorks</strong>\r\nA new attraction at Broadway at the Beach in 2011 is WonderWorks, an indoor interactive amusement park for the mind. Whether you are driving by or walking around Broadway at the Beach, you can\'t help but be amazed at the building that appears to have fallen from the sky and landed upside down. WonderWorks features more than 100 exhibits that allow you to interact, discover and explore! Feel the 84 mph winds of a hurricane, build your own roller coaster or submarine adventure with WonderSimulators, pilot a fighter jet, manuever the controls of a NASA spacecraft or simply have fun with bubbles in the Bubble Lab. WonderWorks is open year round, seven days a week and they suggest you allow 3-4 hours to get the full experience.</h3>','Things to Do','','inherit','open','open','','61-revision-3','','','2011-06-03 20:19:27','2011-06-03 20:19:27','',61,'http://oor.wbtaylor.net/index.php/2011/06/61-revision-3/',0,'revision','',0),(126,1,'2011-06-03 20:19:53','2011-06-03 20:19:53','Alabama Theatre\r\nVoted the #1 Live Theatre Attraction by Myrtle Beach Visitors featuring the Best in Family Entertainment is located in Barefoot Landing in North Myrtle Beach. The Alabama Theatre long standing performance is \"one The Show\". It has become a go-to show every vacation as the show changes from year to year. one features musical genres such as Country, Gospel, Broadway, Pop and Rock and don\'t forget the comedy! one is family favorite and a show you will never regret. If you visit during the holiday season, you will want to catch the other staple at Alabama Theatre - The South\'s Grandest Christmas Show. This family friendly holiday show features musical performances, dance and plenty of laughter from resident comedian Ricky Mokel. In addition to the regular shows, you will also have the opportunity to see live concerts from chart topping artists such as Kenny Rogers, The Oak Ridge Boys, LeeAnn Rimes and more!\r\n\r\nAlligator Adventure\r\nLocated adjacent to Barefoot Landing in North Myrtle Beach, Alligator Adventure puts you face to face with reptiles, alligators, crocodiles, lemurs, tropical birds, tigers, beavers and bats...oh my! Their live shows are a favorite among visitors and feature Alligator Live Feedings in the warmer months (Mid-April through Mid-October), Alligator Handling and Lecture in the cooler months and Snake Handling. Alligator Adventure is also home to UTAN - King of Crocs, the largest crocodile in the United States measuring over 20 feet long! Tickets can be purchased online or at the ticket counter and discounts are available including Active Military discounts and a Locals discount. You also receive a 2nd day free with any paid admission, you can\'t afford not to experience Alligator Adventure!\r\n\r\nBarefoot Landing\r\nBarefoot Landing, sitting along the Intercoastal Waterway, in North Myrtle Beach  is home to the Alabama Theatre, House of Blues, multiple restaurants, more than 100 specialty and retail shops and entertainment! During the summer months you can sit back and enjoy fireworks over the lake and also get up close and personal with exotic animals at the TIGERS Exhibit. SummerFest brings excitement all over Barefoot Landing with parades, magicians, clowns, face painters, stilt walkers, jugglers and more 7 nights a week! Barefoot Landing is conveintently located to both Myrtle Beach and North Myrtle Beach travelers wanting to take it slow and easy....that\'s the beach way, that\'s the Barefoot Way.\r\n\r\nBroadway at the Beach\r\nIf you\'re looking for one place to go that has everything, Broadway at the Beach is 350 acres of paradise and was voted #1 Attraction in Myrtle Beach according to Trip Advisor. Featuring shopping, dining, nightlife, and entertainment you simply can not go wrong. 2011 brings new excitement and merchants such as WonderWorks Myrtle Beach (an amusement park for your mind), Legends in Concert (Myrtle Beach favorite recently relocated from Surfside Beach) and Bodies Revealed (summer months only). New restaurants feature Carlos \'n Charlies (family friendly Mexican restuarant), Tilted Kilt Pub &amp; Eatery (Scottish themed pub and festive eatery) and Good Time Charley\'s (American featuring sandwiches, hamburgers and more). You can still enjoy your favorites such as IMAX 3D Theatre, MagiQuest, Senor Frogs, Ripley\'s Aquarium, Jimmy Buffet\'s Margaritaville just to name a few. For those who once loved the Myrtle Beach Pavilion be sure to visit the Pavilion Nostaglia Park featuring some of the Pavilion\'s most popular rides including the historical carousel. Year round events and parades are some of the most popular in the area while the Fireworks show over Lake Broadway is a must see during the summer months and on special occasions. Shop, Dine, Dance, Play...It’s Broadwayyy Fun in Myrtle Beach!\r\n\r\nCarolina Opry\r\nCalvin Gilmore presents four legendary shows all in one legendary theater, The Carolina Opry located at Broadway at the Beach. For 25 years The Carolina Opry has been entertaining everyone who has walked through the door with 2 hours of high-energy music, comedy and dance. Good Vibrations features the best music from the 60s, 70s and 80s in a fast-paced show that will bring you back to the best in American popular music. The Carolina Opry Christmas Special combines the best of the holiday spirit with beloved musical performances, fresh comedy and breathtaking dance. LIGHT See The Music offers a one of a kind view of music with a lazer light show set to a variety of muscial genres. New for 2011 is Beatlemania Now! as seen on Broadway and recaptures everything you loved about The Beatles. Beatlemania Now! will run from June 15-September 4 and showtimes are at 5pm Wed-Sun. If you only see one show...it should be at The Carolina Opry.\r\n\r\nCelebration Music Theatre\r\nNew for 2011 and located in Surfside Beach, Celebration Music Theatre features the legendary tribute artist show SUPERSTARZ! Live and the Broadway Celebration Series. They also offer a \"just for kids\" production called \"the Rocktastics!\" that will be performing June 15 - August 6. Don\'t miss their Broadway line-up for 2011 with the Minnie Pearl Gospel Hour, All Shook Up, Hairspray, The Southern Bellers and A Christmas Carol.\r\n\r\nChildren\'s Museum of South Carolina\r\nCome \"Touch, Explore, and Play...\" while learning about your world through the interactive exhibits and programs at The Children\'s Museum of South Carolina. Located near the Myrtle Beach Convention Center, CMSC offers special programs, such as Tales for Tots and Digitalis Planetarium, are extremely popular with the adults and children who visit the Museum. With a wide variety of interactive exhibits kids of all ages are sure to have a fun learning experience.\r\n\r\nCoastal Grand Mall\r\nFeaturing anchor stores Belk, Dillard\'s, JC Penney and Sears; Coastal Grand Mall has quickly become the #1 mall in Myrtle Beach. Featuring more than 100 stores and restaurants, you will find everything you were looking for...and then some! After you have shopped until you drop, sit down and relax in the state of the art 14 screen Cinemark Movie Theater or enjoy something to eat at Abuelo\'s, Texas Roadhouse, Red Robin and more. Treat everyone in the family to something unique from Coastal Grand Mall.\r\n\r\nFamily Kingdom\r\nJust one block from Oceans One Resort you will find Myrtle Beach\'s only Seaside Amusement Park and Oceanfront Water Park, Family Kingdom! Featuring Go Karts, Kiddie Rides, Family Rides, Water Rides and Thrill Rides the entire family can enjoy their time in the park. Best of all, there is NO ADMISSION FEE! New for 2011 is the Picnic Pavilion, a covered dining area that can accommodate up to 100 guests for birthday parties, family reunions or any other group outing.\r\n\r\nHouse of Blues\r\nThe House of Blues Myrtle Beach, located in Barefoot Landing, offers live music on the Sugar Shack Deck and the Concert Hall and delta inspired cuisine in their world famous restuarant. With leading acts from country, rock, top 40 and more your vacation won\'t be complete without the intimate setting with your favorite artist. You can even \"Pass the Line\" and \"Crash the Barricade\" to gain entry first into the concerts. The Gospel Brunch in the restaurant is something that shouldn\'t missed with an amazing buffet and inspiring gospel performances. Where the heart meets the soul®. The ultimate live music and dining experience.\r\n\r\nLegends in Concert\r\nThe World\'s Longest Running Live Tribute Show, Legends in Concert has been a favorite in Myrtle Beach for years and offering a variety of concerts and live shows and many other activities for all ages. Legends in Concert recently relocated a state-of-the-art theater in Broadway at the Beach next to Planet Hollywood!\r\n\r\nThe Market Common\r\nA place where you can experience exceptional shopping and dining in a beautifully-designed village setting. From the nation’s most celebrated names in retail to ice cream and pizza for the kids, and from one-of-a-kind restaurants to the most comfortable movie theater at the beach, The Market Common is always worth your time. The Market Common is also home to multiple festivals all year long, such as Sun Fun Festival, Beerfest, Myrtle Beach Wine Fest, Oktoberfest and more!\r\n\r\nMedieval Times\r\nInside the stone walls of the 11th century-style castle, Medieval Spain comes to life as six knights, donning authentic armor, clash in a jousting tournament for the title of King\'s Champion. Let your imagination take you to Medieval Times.\r\n\r\nMyrtle Beach Boardwalk\r\nThe Myrtle Beach Boardwalk opened in 2010 to rave reviews! The 1.2 mile boardwalk stretches from 14th Avenue North to 2nd Avenue North in the heart of Myrtle Beach. The Myrtle Beach Boardwalk is home to restaurants, shopping, arcades, ice cream shops and more. In the center of it all is the brand new SkyWheel Myrtle Beach and Landshark Bar &amp; Grill which opened to rave reviews in May 2011!  Check out our Myrtle Beach Boardwalk page for more information.\r\n\r\nMyrtle Beach Mall\r\nConveinently located at the corner of Highways 22 and 17, Myrtle Beach Mall continues to provide shoppers with unique stores and value not offered by other malls in the area. Two Belk stores, JCPenney are the long standing anchors and are now accompanied by the only Bass Pro Shops in South Carolina! The mall is also home to Uptown Theater, Home of the Carolina Improv, an improv comedy about living and playing Myrtle Beach. If you aren\'t sure what you need, shopping at Myrtle Beach Mall will help you figure it out.\r\n\r\nMyrtle Beach Pelicans\r\nThe Myrtle Beach Pelicans have been bringing minor league baseball to the beach since 1999 and as of 2011 are the Advanced \'A\' Affiliate of the Texas Rangers. With various promotions and events, including multiple fireworks shows, the Myrtle Beach Pelicans are a family favorite stop on their vacation. Kids are allowed to run the bases following the game and play catch on the field prior to the start of the game.  To add to the fun you always have to be on the lookout for Splash, the official mascot who is usually up to no good; Rally Shark, who adds excitement late in the game and the always popular, Deuce - part bat boy, part ball caddy. As they say...Baseball\'s Even Better at the Beach!\r\n\r\nMyrtle Waves\r\nVoted 1st Place in Best of the Beach in 2010, Myrtle Waves offers over 20 acres of swerves, curves, waves, and chutes and over 1 million gallons of water! Raft rides, Slides and Family Attractions make this a one-stop place for all around family fun in the sun. The younger kids will enjoy Bubble Bay and Saturation Station while the older kids (and adults) have a blast twisting and turning on Racin\' River, Turbo Twisters, Riptide Rockets Night Flight and more. Myrtle Waves is open seasonally (mid-May thru mid-September) and season passes are available.\r\n\r\nNASCAR SpeedPark\r\nIf speed is your thing then the NASCAR SpeedPark is for you, boasting over 26 acres of the industries hottest go-kart tracks, family rides, mini-golf courses, midway games, in addition to family dining in a relaxed and fun environment. Challenge everyone in your family to a little race and a lot of fun. NASCAR SpeedPark is open year round and various tickets pacakages are available.\r\n\r\nPalace Theatre\r\nThe Palace Theatre is located at Broadway at the Beach and is home to the best in live entertainment. Their 2011 lineup includes Hooray for Hollywood which will take you back through 50 years of movie history inlcuding some of the most popular song and dance routines from movies such as Singing in the Rain and Disney\'s \"Jungle Book\". Back by popular demand is The Magical Spirit of Ireland, enjoy sounds from the Irish Tenors and the world renowned Spirit of the Dance dancers. Get your heart pumping and your pulse racing with Le Grand Cirque Adreneline, a 2 hour death defying performance filled with contortionists, tumblers, incredible aerial acts as well as the breathtaking Wheel of Death. Start your holiday season in style with Christmas on Ice, a a one-of-a-kind show that is sure to be an instant family hit as Santa and his helpers take you on a journey around a 40 foot ice skating rink. The Palace Theatre boasts an elegance and beauty unrivaled by any other Theatre in South Carolina.\r\n\r\nPirate\'s Voyage\r\nAll new for 2011, Pirate\'s Voyage is the latest live dinner show from Dolly Parton. After closing the doors on the long time running Dixie Stampede, Dolly Parton has revamped the venue into a pirates dream! Featuring 15 foot deep, 750 thousand gallon  lagoon, and 3 full-sized ships, complete with pirates, battling over who will take the treasure. Just revealed was the live animal show which will feature a sea lion who will perform and even \"arrrrrrrrgh\" multiple times during the show. The dinner menu has been updated as well but still continues with the ever popular soup from Dixie Stampede. Pirate\'s Voyage opens on June 3rd, 2011...it\'s time to get your tickets, matey!\r\n\r\nRipley\'s Aquarium\r\nRipley\'s Aquarium Myrtle Beach can be found at Broadway at the Beach. Sea life is abundant in the aquarium with more than 350 individual species featuring 10,000 exotic sea creatures. Get hands on in the Discovery Center by holding a horseshoe crab or head over to Ray Bay, where you can reach out and touch a stingray as they glide by. See some of the more exotic fish from the Amazon River at Rio Amazon or get a glimpse of color at Rainbow Rock where the brightly colored Indo-Pacific fish swim through a coral reef. A new exhibit for 2011 gets you up close and personal with the ocean\'s most feared predator, Sharks-Perfect Predators features over a dozen species of sharks and interactive exhibits where you can even feel the force of a shark bite! Don\'t let your eyes fool you, another new exhibit for 2011 is Mermaids, a captivating show that will occur 3 times daily followed by meet and greets. If you\'re looking for family fun that is also educational, Ripley\'s Aquarium needs to be on your list!\r\n\r\nSecond Avenue Pier\r\nRecently renovated, Second Avenue Pier, which has been around since 1936, is located on the southern portion of the Myrtle Beach Boardwalk and just steps away from Oceans One Resort. The pier now features the Pier House Restaurant and Pier View Bar &amp; Lounge (open air bar) as well as what the pier has been famous for...fishing! During the summer season, Second Avenue Pier is home to an amazing fireworks display every Wednesday night as part of the Hot Summer Nights on the Boardwalk. Whether you want to relax with some fishing poles, eat breakfast, lunch or dinner, or simply enjoy a tasty beverage in the ocean breeze, Second Avenue Pier is the place to be!\r\n\r\n<strong>SkyWheel Myrtle Beach</strong>\r\nIt\'s tall, it\'s round and it has a light show...yes, the SkyWheel Myrtle is hard to miss along the Myrtle Beach Boardwalk and for all the right reasons.  Standing 200 feet above sea level, you can enjoy a view rarely seen of the Grand Strand in one of 42 temperature controlled glass gondolas. At night a spectacular LED lightshow begins, giving that extra spark to downtown Myrtle Beach. Operating year round, your flight will consist of three rotations and ranges from 8-12 minutes in length and is the first observation wheel of its kind in the United States.\r\n\r\n<strong>Tanger Outlets</strong>\r\nShop guilt free at either Tanger Outlets located in both Myrtle Beach on 501 or on Kings Highway near Myrtle Beach Mall. With stores such as Coach, kate spade, Old Navy, Gap, Levi\'s, Under Armour, Carter\'s, Disney Store and many, many more; you are sure to find something for the entire family, even Dad! Not only will you find the nation’s leading designer and brand name stores with the widest selection but the prices are also backed by the Best Price Guarantee. When you shop at Tanger Outlets, you can shop with confidence while on vacation.\r\n\r\n<strong>WonderWorks</strong>\r\nA new attraction at Broadway at the Beach in 2011 is WonderWorks, an indoor interactive amusement park for the mind. Whether you are driving by or walking around Broadway at the Beach, you can\'t help but be amazed at the building that appears to have fallen from the sky and landed upside down. WonderWorks features more than 100 exhibits that allow you to interact, discover and explore! Feel the 84 mph winds of a hurricane, build your own roller coaster or submarine adventure with WonderSimulators, pilot a fighter jet, manuever the controls of a NASA spacecraft or simply have fun with bubbles in the Bubble Lab. WonderWorks is open year round, seven days a week and they suggest you allow 3-4 hours to get the full experience.','Things to Do','','inherit','open','open','','61-revision-4','','','2011-06-03 20:19:53','2011-06-03 20:19:53','',61,'http://oor.wbtaylor.net/index.php/2011/06/61-revision-4/',0,'revision','',0),(127,1,'2011-06-03 20:21:01','2011-06-03 20:21:01','<h3>Alabama Theatre</h3>\r\nVoted the #1 Live Theatre Attraction by Myrtle Beach Visitors featuring the Best in Family Entertainment is located in Barefoot Landing in North Myrtle Beach. The Alabama Theatre long standing performance is \"one The Show\". It has become a go-to show every vacation as the show changes from year to year. one features musical genres such as Country, Gospel, Broadway, Pop and Rock and don\'t forget the comedy! one is family favorite and a show you will never regret. If you visit during the holiday season, you will want to catch the other staple at Alabama Theatre - The South\'s Grandest Christmas Show. This family friendly holiday show features musical performances, dance and plenty of laughter from resident comedian Ricky Mokel. In addition to the regular shows, you will also have the opportunity to see live concerts from chart topping artists such as Kenny Rogers, The Oak Ridge Boys, LeeAnn Rimes and more!\r\n\r\nAlligator Adventure\r\nLocated adjacent to Barefoot Landing in North Myrtle Beach, Alligator Adventure puts you face to face with reptiles, alligators, crocodiles, lemurs, tropical birds, tigers, beavers and bats...oh my! Their live shows are a favorite among visitors and feature Alligator Live Feedings in the warmer months (Mid-April through Mid-October), Alligator Handling and Lecture in the cooler months and Snake Handling. Alligator Adventure is also home to UTAN - King of Crocs, the largest crocodile in the United States measuring over 20 feet long! Tickets can be purchased online or at the ticket counter and discounts are available including Active Military discounts and a Locals discount. You also receive a 2nd day free with any paid admission, you can\'t afford not to experience Alligator Adventure!\r\n\r\nBarefoot Landing\r\nBarefoot Landing, sitting along the Intercoastal Waterway, in North Myrtle Beach  is home to the Alabama Theatre, House of Blues, multiple restaurants, more than 100 specialty and retail shops and entertainment! During the summer months you can sit back and enjoy fireworks over the lake and also get up close and personal with exotic animals at the TIGERS Exhibit. SummerFest brings excitement all over Barefoot Landing with parades, magicians, clowns, face painters, stilt walkers, jugglers and more 7 nights a week! Barefoot Landing is conveintently located to both Myrtle Beach and North Myrtle Beach travelers wanting to take it slow and easy....that\'s the beach way, that\'s the Barefoot Way.\r\n\r\nBroadway at the Beach\r\nIf you\'re looking for one place to go that has everything, Broadway at the Beach is 350 acres of paradise and was voted #1 Attraction in Myrtle Beach according to Trip Advisor. Featuring shopping, dining, nightlife, and entertainment you simply can not go wrong. 2011 brings new excitement and merchants such as WonderWorks Myrtle Beach (an amusement park for your mind), Legends in Concert (Myrtle Beach favorite recently relocated from Surfside Beach) and Bodies Revealed (summer months only). New restaurants feature Carlos \'n Charlies (family friendly Mexican restuarant), Tilted Kilt Pub &amp; Eatery (Scottish themed pub and festive eatery) and Good Time Charley\'s (American featuring sandwiches, hamburgers and more). You can still enjoy your favorites such as IMAX 3D Theatre, MagiQuest, Senor Frogs, Ripley\'s Aquarium, Jimmy Buffet\'s Margaritaville just to name a few. For those who once loved the Myrtle Beach Pavilion be sure to visit the Pavilion Nostaglia Park featuring some of the Pavilion\'s most popular rides including the historical carousel. Year round events and parades are some of the most popular in the area while the Fireworks show over Lake Broadway is a must see during the summer months and on special occasions. Shop, Dine, Dance, Play...It’s Broadwayyy Fun in Myrtle Beach!\r\n\r\nCarolina Opry\r\nCalvin Gilmore presents four legendary shows all in one legendary theater, The Carolina Opry located at Broadway at the Beach. For 25 years The Carolina Opry has been entertaining everyone who has walked through the door with 2 hours of high-energy music, comedy and dance. Good Vibrations features the best music from the 60s, 70s and 80s in a fast-paced show that will bring you back to the best in American popular music. The Carolina Opry Christmas Special combines the best of the holiday spirit with beloved musical performances, fresh comedy and breathtaking dance. LIGHT See The Music offers a one of a kind view of music with a lazer light show set to a variety of muscial genres. New for 2011 is Beatlemania Now! as seen on Broadway and recaptures everything you loved about The Beatles. Beatlemania Now! will run from June 15-September 4 and showtimes are at 5pm Wed-Sun. If you only see one show...it should be at The Carolina Opry.\r\n\r\nCelebration Music Theatre\r\nNew for 2011 and located in Surfside Beach, Celebration Music Theatre features the legendary tribute artist show SUPERSTARZ! Live and the Broadway Celebration Series. They also offer a \"just for kids\" production called \"the Rocktastics!\" that will be performing June 15 - August 6. Don\'t miss their Broadway line-up for 2011 with the Minnie Pearl Gospel Hour, All Shook Up, Hairspray, The Southern Bellers and A Christmas Carol.\r\n\r\nChildren\'s Museum of South Carolina\r\nCome \"Touch, Explore, and Play...\" while learning about your world through the interactive exhibits and programs at The Children\'s Museum of South Carolina. Located near the Myrtle Beach Convention Center, CMSC offers special programs, such as Tales for Tots and Digitalis Planetarium, are extremely popular with the adults and children who visit the Museum. With a wide variety of interactive exhibits kids of all ages are sure to have a fun learning experience.\r\n\r\nCoastal Grand Mall\r\nFeaturing anchor stores Belk, Dillard\'s, JC Penney and Sears; Coastal Grand Mall has quickly become the #1 mall in Myrtle Beach. Featuring more than 100 stores and restaurants, you will find everything you were looking for...and then some! After you have shopped until you drop, sit down and relax in the state of the art 14 screen Cinemark Movie Theater or enjoy something to eat at Abuelo\'s, Texas Roadhouse, Red Robin and more. Treat everyone in the family to something unique from Coastal Grand Mall.\r\n\r\nFamily Kingdom\r\nJust one block from Oceans One Resort you will find Myrtle Beach\'s only Seaside Amusement Park and Oceanfront Water Park, Family Kingdom! Featuring Go Karts, Kiddie Rides, Family Rides, Water Rides and Thrill Rides the entire family can enjoy their time in the park. Best of all, there is NO ADMISSION FEE! New for 2011 is the Picnic Pavilion, a covered dining area that can accommodate up to 100 guests for birthday parties, family reunions or any other group outing.\r\n\r\nHouse of Blues\r\nThe House of Blues Myrtle Beach, located in Barefoot Landing, offers live music on the Sugar Shack Deck and the Concert Hall and delta inspired cuisine in their world famous restuarant. With leading acts from country, rock, top 40 and more your vacation won\'t be complete without the intimate setting with your favorite artist. You can even \"Pass the Line\" and \"Crash the Barricade\" to gain entry first into the concerts. The Gospel Brunch in the restaurant is something that shouldn\'t missed with an amazing buffet and inspiring gospel performances. Where the heart meets the soul®. The ultimate live music and dining experience.\r\n\r\nLegends in Concert\r\nThe World\'s Longest Running Live Tribute Show, Legends in Concert has been a favorite in Myrtle Beach for years and offering a variety of concerts and live shows and many other activities for all ages. Legends in Concert recently relocated a state-of-the-art theater in Broadway at the Beach next to Planet Hollywood!\r\n\r\nThe Market Common\r\nA place where you can experience exceptional shopping and dining in a beautifully-designed village setting. From the nation’s most celebrated names in retail to ice cream and pizza for the kids, and from one-of-a-kind restaurants to the most comfortable movie theater at the beach, The Market Common is always worth your time. The Market Common is also home to multiple festivals all year long, such as Sun Fun Festival, Beerfest, Myrtle Beach Wine Fest, Oktoberfest and more!\r\n\r\nMedieval Times\r\nInside the stone walls of the 11th century-style castle, Medieval Spain comes to life as six knights, donning authentic armor, clash in a jousting tournament for the title of King\'s Champion. Let your imagination take you to Medieval Times.\r\n\r\nMyrtle Beach Boardwalk\r\nThe Myrtle Beach Boardwalk opened in 2010 to rave reviews! The 1.2 mile boardwalk stretches from 14th Avenue North to 2nd Avenue North in the heart of Myrtle Beach. The Myrtle Beach Boardwalk is home to restaurants, shopping, arcades, ice cream shops and more. In the center of it all is the brand new SkyWheel Myrtle Beach and Landshark Bar &amp; Grill which opened to rave reviews in May 2011!  Check out our Myrtle Beach Boardwalk page for more information.\r\n\r\nMyrtle Beach Mall\r\nConveinently located at the corner of Highways 22 and 17, Myrtle Beach Mall continues to provide shoppers with unique stores and value not offered by other malls in the area. Two Belk stores, JCPenney are the long standing anchors and are now accompanied by the only Bass Pro Shops in South Carolina! The mall is also home to Uptown Theater, Home of the Carolina Improv, an improv comedy about living and playing Myrtle Beach. If you aren\'t sure what you need, shopping at Myrtle Beach Mall will help you figure it out.\r\n\r\nMyrtle Beach Pelicans\r\nThe Myrtle Beach Pelicans have been bringing minor league baseball to the beach since 1999 and as of 2011 are the Advanced \'A\' Affiliate of the Texas Rangers. With various promotions and events, including multiple fireworks shows, the Myrtle Beach Pelicans are a family favorite stop on their vacation. Kids are allowed to run the bases following the game and play catch on the field prior to the start of the game.  To add to the fun you always have to be on the lookout for Splash, the official mascot who is usually up to no good; Rally Shark, who adds excitement late in the game and the always popular, Deuce - part bat boy, part ball caddy. As they say...Baseball\'s Even Better at the Beach!\r\n\r\nMyrtle Waves\r\nVoted 1st Place in Best of the Beach in 2010, Myrtle Waves offers over 20 acres of swerves, curves, waves, and chutes and over 1 million gallons of water! Raft rides, Slides and Family Attractions make this a one-stop place for all around family fun in the sun. The younger kids will enjoy Bubble Bay and Saturation Station while the older kids (and adults) have a blast twisting and turning on Racin\' River, Turbo Twisters, Riptide Rockets Night Flight and more. Myrtle Waves is open seasonally (mid-May thru mid-September) and season passes are available.\r\n\r\nNASCAR SpeedPark\r\nIf speed is your thing then the NASCAR SpeedPark is for you, boasting over 26 acres of the industries hottest go-kart tracks, family rides, mini-golf courses, midway games, in addition to family dining in a relaxed and fun environment. Challenge everyone in your family to a little race and a lot of fun. NASCAR SpeedPark is open year round and various tickets pacakages are available.\r\n\r\nPalace Theatre\r\nThe Palace Theatre is located at Broadway at the Beach and is home to the best in live entertainment. Their 2011 lineup includes Hooray for Hollywood which will take you back through 50 years of movie history inlcuding some of the most popular song and dance routines from movies such as Singing in the Rain and Disney\'s \"Jungle Book\". Back by popular demand is The Magical Spirit of Ireland, enjoy sounds from the Irish Tenors and the world renowned Spirit of the Dance dancers. Get your heart pumping and your pulse racing with Le Grand Cirque Adreneline, a 2 hour death defying performance filled with contortionists, tumblers, incredible aerial acts as well as the breathtaking Wheel of Death. Start your holiday season in style with Christmas on Ice, a a one-of-a-kind show that is sure to be an instant family hit as Santa and his helpers take you on a journey around a 40 foot ice skating rink. The Palace Theatre boasts an elegance and beauty unrivaled by any other Theatre in South Carolina.\r\n\r\nPirate\'s Voyage\r\nAll new for 2011, Pirate\'s Voyage is the latest live dinner show from Dolly Parton. After closing the doors on the long time running Dixie Stampede, Dolly Parton has revamped the venue into a pirates dream! Featuring 15 foot deep, 750 thousand gallon  lagoon, and 3 full-sized ships, complete with pirates, battling over who will take the treasure. Just revealed was the live animal show which will feature a sea lion who will perform and even \"arrrrrrrrgh\" multiple times during the show. The dinner menu has been updated as well but still continues with the ever popular soup from Dixie Stampede. Pirate\'s Voyage opens on June 3rd, 2011...it\'s time to get your tickets, matey!\r\n\r\nRipley\'s Aquarium\r\nRipley\'s Aquarium Myrtle Beach can be found at Broadway at the Beach. Sea life is abundant in the aquarium with more than 350 individual species featuring 10,000 exotic sea creatures. Get hands on in the Discovery Center by holding a horseshoe crab or head over to Ray Bay, where you can reach out and touch a stingray as they glide by. See some of the more exotic fish from the Amazon River at Rio Amazon or get a glimpse of color at Rainbow Rock where the brightly colored Indo-Pacific fish swim through a coral reef. A new exhibit for 2011 gets you up close and personal with the ocean\'s most feared predator, Sharks-Perfect Predators features over a dozen species of sharks and interactive exhibits where you can even feel the force of a shark bite! Don\'t let your eyes fool you, another new exhibit for 2011 is Mermaids, a captivating show that will occur 3 times daily followed by meet and greets. If you\'re looking for family fun that is also educational, Ripley\'s Aquarium needs to be on your list!\r\n\r\nSecond Avenue Pier\r\nRecently renovated, Second Avenue Pier, which has been around since 1936, is located on the southern portion of the Myrtle Beach Boardwalk and just steps away from Oceans One Resort. The pier now features the Pier House Restaurant and Pier View Bar &amp; Lounge (open air bar) as well as what the pier has been famous for...fishing! During the summer season, Second Avenue Pier is home to an amazing fireworks display every Wednesday night as part of the Hot Summer Nights on the Boardwalk. Whether you want to relax with some fishing poles, eat breakfast, lunch or dinner, or simply enjoy a tasty beverage in the ocean breeze, Second Avenue Pier is the place to be!\r\n\r\n<strong>SkyWheel Myrtle Beach</strong>\r\nIt\'s tall, it\'s round and it has a light show...yes, the SkyWheel Myrtle is hard to miss along the Myrtle Beach Boardwalk and for all the right reasons.  Standing 200 feet above sea level, you can enjoy a view rarely seen of the Grand Strand in one of 42 temperature controlled glass gondolas. At night a spectacular LED lightshow begins, giving that extra spark to downtown Myrtle Beach. Operating year round, your flight will consist of three rotations and ranges from 8-12 minutes in length and is the first observation wheel of its kind in the United States.\r\n\r\n<strong>Tanger Outlets</strong>\r\nShop guilt free at either Tanger Outlets located in both Myrtle Beach on 501 or on Kings Highway near Myrtle Beach Mall. With stores such as Coach, kate spade, Old Navy, Gap, Levi\'s, Under Armour, Carter\'s, Disney Store and many, many more; you are sure to find something for the entire family, even Dad! Not only will you find the nation’s leading designer and brand name stores with the widest selection but the prices are also backed by the Best Price Guarantee. When you shop at Tanger Outlets, you can shop with confidence while on vacation.\r\n\r\n<strong>WonderWorks</strong>\r\nA new attraction at Broadway at the Beach in 2011 is WonderWorks, an indoor interactive amusement park for the mind. Whether you are driving by or walking around Broadway at the Beach, you can\'t help but be amazed at the building that appears to have fallen from the sky and landed upside down. WonderWorks features more than 100 exhibits that allow you to interact, discover and explore! Feel the 84 mph winds of a hurricane, build your own roller coaster or submarine adventure with WonderSimulators, pilot a fighter jet, manuever the controls of a NASA spacecraft or simply have fun with bubbles in the Bubble Lab. WonderWorks is open year round, seven days a week and they suggest you allow 3-4 hours to get the full experience.','Things to Do','','inherit','open','open','','61-revision-5','','','2011-06-03 20:21:01','2011-06-03 20:21:01','',61,'http://oor.wbtaylor.net/index.php/2011/06/61-revision-5/',0,'revision','',0),(129,1,'2011-06-03 20:21:28','2011-06-03 20:21:28','<h4>Alabama Theatre</h4>\r\nVoted the #1 Live Theatre Attraction by Myrtle Beach Visitors featuring the Best in Family Entertainment is located in Barefoot Landing in North Myrtle Beach. The Alabama Theatre long standing performance is \"one The Show\". It has become a go-to show every vacation as the show changes from year to year. one features musical genres such as Country, Gospel, Broadway, Pop and Rock and don\'t forget the comedy! one is family favorite and a show you will never regret. If you visit during the holiday season, you will want to catch the other staple at Alabama Theatre - The South\'s Grandest Christmas Show. This family friendly holiday show features musical performances, dance and plenty of laughter from resident comedian Ricky Mokel. In addition to the regular shows, you will also have the opportunity to see live concerts from chart topping artists such as Kenny Rogers, The Oak Ridge Boys, LeeAnn Rimes and more!\r\n\r\nAlligator Adventure\r\nLocated adjacent to Barefoot Landing in North Myrtle Beach, Alligator Adventure puts you face to face with reptiles, alligators, crocodiles, lemurs, tropical birds, tigers, beavers and bats...oh my! Their live shows are a favorite among visitors and feature Alligator Live Feedings in the warmer months (Mid-April through Mid-October), Alligator Handling and Lecture in the cooler months and Snake Handling. Alligator Adventure is also home to UTAN - King of Crocs, the largest crocodile in the United States measuring over 20 feet long! Tickets can be purchased online or at the ticket counter and discounts are available including Active Military discounts and a Locals discount. You also receive a 2nd day free with any paid admission, you can\'t afford not to experience Alligator Adventure!\r\n\r\nBarefoot Landing\r\nBarefoot Landing, sitting along the Intercoastal Waterway, in North Myrtle Beach  is home to the Alabama Theatre, House of Blues, multiple restaurants, more than 100 specialty and retail shops and entertainment! During the summer months you can sit back and enjoy fireworks over the lake and also get up close and personal with exotic animals at the TIGERS Exhibit. SummerFest brings excitement all over Barefoot Landing with parades, magicians, clowns, face painters, stilt walkers, jugglers and more 7 nights a week! Barefoot Landing is conveintently located to both Myrtle Beach and North Myrtle Beach travelers wanting to take it slow and easy....that\'s the beach way, that\'s the Barefoot Way.\r\n\r\nBroadway at the Beach\r\nIf you\'re looking for one place to go that has everything, Broadway at the Beach is 350 acres of paradise and was voted #1 Attraction in Myrtle Beach according to Trip Advisor. Featuring shopping, dining, nightlife, and entertainment you simply can not go wrong. 2011 brings new excitement and merchants such as WonderWorks Myrtle Beach (an amusement park for your mind), Legends in Concert (Myrtle Beach favorite recently relocated from Surfside Beach) and Bodies Revealed (summer months only). New restaurants feature Carlos \'n Charlies (family friendly Mexican restuarant), Tilted Kilt Pub &amp; Eatery (Scottish themed pub and festive eatery) and Good Time Charley\'s (American featuring sandwiches, hamburgers and more). You can still enjoy your favorites such as IMAX 3D Theatre, MagiQuest, Senor Frogs, Ripley\'s Aquarium, Jimmy Buffet\'s Margaritaville just to name a few. For those who once loved the Myrtle Beach Pavilion be sure to visit the Pavilion Nostaglia Park featuring some of the Pavilion\'s most popular rides including the historical carousel. Year round events and parades are some of the most popular in the area while the Fireworks show over Lake Broadway is a must see during the summer months and on special occasions. Shop, Dine, Dance, Play...It’s Broadwayyy Fun in Myrtle Beach!\r\n\r\nCarolina Opry\r\nCalvin Gilmore presents four legendary shows all in one legendary theater, The Carolina Opry located at Broadway at the Beach. For 25 years The Carolina Opry has been entertaining everyone who has walked through the door with 2 hours of high-energy music, comedy and dance. Good Vibrations features the best music from the 60s, 70s and 80s in a fast-paced show that will bring you back to the best in American popular music. The Carolina Opry Christmas Special combines the best of the holiday spirit with beloved musical performances, fresh comedy and breathtaking dance. LIGHT See The Music offers a one of a kind view of music with a lazer light show set to a variety of muscial genres. New for 2011 is Beatlemania Now! as seen on Broadway and recaptures everything you loved about The Beatles. Beatlemania Now! will run from June 15-September 4 and showtimes are at 5pm Wed-Sun. If you only see one show...it should be at The Carolina Opry.\r\n\r\nCelebration Music Theatre\r\nNew for 2011 and located in Surfside Beach, Celebration Music Theatre features the legendary tribute artist show SUPERSTARZ! Live and the Broadway Celebration Series. They also offer a \"just for kids\" production called \"the Rocktastics!\" that will be performing June 15 - August 6. Don\'t miss their Broadway line-up for 2011 with the Minnie Pearl Gospel Hour, All Shook Up, Hairspray, The Southern Bellers and A Christmas Carol.\r\n\r\nChildren\'s Museum of South Carolina\r\nCome \"Touch, Explore, and Play...\" while learning about your world through the interactive exhibits and programs at The Children\'s Museum of South Carolina. Located near the Myrtle Beach Convention Center, CMSC offers special programs, such as Tales for Tots and Digitalis Planetarium, are extremely popular with the adults and children who visit the Museum. With a wide variety of interactive exhibits kids of all ages are sure to have a fun learning experience.\r\n\r\nCoastal Grand Mall\r\nFeaturing anchor stores Belk, Dillard\'s, JC Penney and Sears; Coastal Grand Mall has quickly become the #1 mall in Myrtle Beach. Featuring more than 100 stores and restaurants, you will find everything you were looking for...and then some! After you have shopped until you drop, sit down and relax in the state of the art 14 screen Cinemark Movie Theater or enjoy something to eat at Abuelo\'s, Texas Roadhouse, Red Robin and more. Treat everyone in the family to something unique from Coastal Grand Mall.\r\n\r\nFamily Kingdom\r\nJust one block from Oceans One Resort you will find Myrtle Beach\'s only Seaside Amusement Park and Oceanfront Water Park, Family Kingdom! Featuring Go Karts, Kiddie Rides, Family Rides, Water Rides and Thrill Rides the entire family can enjoy their time in the park. Best of all, there is NO ADMISSION FEE! New for 2011 is the Picnic Pavilion, a covered dining area that can accommodate up to 100 guests for birthday parties, family reunions or any other group outing.\r\n\r\nHouse of Blues\r\nThe House of Blues Myrtle Beach, located in Barefoot Landing, offers live music on the Sugar Shack Deck and the Concert Hall and delta inspired cuisine in their world famous restuarant. With leading acts from country, rock, top 40 and more your vacation won\'t be complete without the intimate setting with your favorite artist. You can even \"Pass the Line\" and \"Crash the Barricade\" to gain entry first into the concerts. The Gospel Brunch in the restaurant is something that shouldn\'t missed with an amazing buffet and inspiring gospel performances. Where the heart meets the soul®. The ultimate live music and dining experience.\r\n\r\nLegends in Concert\r\nThe World\'s Longest Running Live Tribute Show, Legends in Concert has been a favorite in Myrtle Beach for years and offering a variety of concerts and live shows and many other activities for all ages. Legends in Concert recently relocated a state-of-the-art theater in Broadway at the Beach next to Planet Hollywood!\r\n\r\nThe Market Common\r\nA place where you can experience exceptional shopping and dining in a beautifully-designed village setting. From the nation’s most celebrated names in retail to ice cream and pizza for the kids, and from one-of-a-kind restaurants to the most comfortable movie theater at the beach, The Market Common is always worth your time. The Market Common is also home to multiple festivals all year long, such as Sun Fun Festival, Beerfest, Myrtle Beach Wine Fest, Oktoberfest and more!\r\n\r\nMedieval Times\r\nInside the stone walls of the 11th century-style castle, Medieval Spain comes to life as six knights, donning authentic armor, clash in a jousting tournament for the title of King\'s Champion. Let your imagination take you to Medieval Times.\r\n\r\nMyrtle Beach Boardwalk\r\nThe Myrtle Beach Boardwalk opened in 2010 to rave reviews! The 1.2 mile boardwalk stretches from 14th Avenue North to 2nd Avenue North in the heart of Myrtle Beach. The Myrtle Beach Boardwalk is home to restaurants, shopping, arcades, ice cream shops and more. In the center of it all is the brand new SkyWheel Myrtle Beach and Landshark Bar &amp; Grill which opened to rave reviews in May 2011!  Check out our Myrtle Beach Boardwalk page for more information.\r\n\r\nMyrtle Beach Mall\r\nConveinently located at the corner of Highways 22 and 17, Myrtle Beach Mall continues to provide shoppers with unique stores and value not offered by other malls in the area. Two Belk stores, JCPenney are the long standing anchors and are now accompanied by the only Bass Pro Shops in South Carolina! The mall is also home to Uptown Theater, Home of the Carolina Improv, an improv comedy about living and playing Myrtle Beach. If you aren\'t sure what you need, shopping at Myrtle Beach Mall will help you figure it out.\r\n\r\nMyrtle Beach Pelicans\r\nThe Myrtle Beach Pelicans have been bringing minor league baseball to the beach since 1999 and as of 2011 are the Advanced \'A\' Affiliate of the Texas Rangers. With various promotions and events, including multiple fireworks shows, the Myrtle Beach Pelicans are a family favorite stop on their vacation. Kids are allowed to run the bases following the game and play catch on the field prior to the start of the game.  To add to the fun you always have to be on the lookout for Splash, the official mascot who is usually up to no good; Rally Shark, who adds excitement late in the game and the always popular, Deuce - part bat boy, part ball caddy. As they say...Baseball\'s Even Better at the Beach!\r\n\r\nMyrtle Waves\r\nVoted 1st Place in Best of the Beach in 2010, Myrtle Waves offers over 20 acres of swerves, curves, waves, and chutes and over 1 million gallons of water! Raft rides, Slides and Family Attractions make this a one-stop place for all around family fun in the sun. The younger kids will enjoy Bubble Bay and Saturation Station while the older kids (and adults) have a blast twisting and turning on Racin\' River, Turbo Twisters, Riptide Rockets Night Flight and more. Myrtle Waves is open seasonally (mid-May thru mid-September) and season passes are available.\r\n\r\nNASCAR SpeedPark\r\nIf speed is your thing then the NASCAR SpeedPark is for you, boasting over 26 acres of the industries hottest go-kart tracks, family rides, mini-golf courses, midway games, in addition to family dining in a relaxed and fun environment. Challenge everyone in your family to a little race and a lot of fun. NASCAR SpeedPark is open year round and various tickets pacakages are available.\r\n\r\nPalace Theatre\r\nThe Palace Theatre is located at Broadway at the Beach and is home to the best in live entertainment. Their 2011 lineup includes Hooray for Hollywood which will take you back through 50 years of movie history inlcuding some of the most popular song and dance routines from movies such as Singing in the Rain and Disney\'s \"Jungle Book\". Back by popular demand is The Magical Spirit of Ireland, enjoy sounds from the Irish Tenors and the world renowned Spirit of the Dance dancers. Get your heart pumping and your pulse racing with Le Grand Cirque Adreneline, a 2 hour death defying performance filled with contortionists, tumblers, incredible aerial acts as well as the breathtaking Wheel of Death. Start your holiday season in style with Christmas on Ice, a a one-of-a-kind show that is sure to be an instant family hit as Santa and his helpers take you on a journey around a 40 foot ice skating rink. The Palace Theatre boasts an elegance and beauty unrivaled by any other Theatre in South Carolina.\r\n\r\nPirate\'s Voyage\r\nAll new for 2011, Pirate\'s Voyage is the latest live dinner show from Dolly Parton. After closing the doors on the long time running Dixie Stampede, Dolly Parton has revamped the venue into a pirates dream! Featuring 15 foot deep, 750 thousand gallon  lagoon, and 3 full-sized ships, complete with pirates, battling over who will take the treasure. Just revealed was the live animal show which will feature a sea lion who will perform and even \"arrrrrrrrgh\" multiple times during the show. The dinner menu has been updated as well but still continues with the ever popular soup from Dixie Stampede. Pirate\'s Voyage opens on June 3rd, 2011...it\'s time to get your tickets, matey!\r\n\r\nRipley\'s Aquarium\r\nRipley\'s Aquarium Myrtle Beach can be found at Broadway at the Beach. Sea life is abundant in the aquarium with more than 350 individual species featuring 10,000 exotic sea creatures. Get hands on in the Discovery Center by holding a horseshoe crab or head over to Ray Bay, where you can reach out and touch a stingray as they glide by. See some of the more exotic fish from the Amazon River at Rio Amazon or get a glimpse of color at Rainbow Rock where the brightly colored Indo-Pacific fish swim through a coral reef. A new exhibit for 2011 gets you up close and personal with the ocean\'s most feared predator, Sharks-Perfect Predators features over a dozen species of sharks and interactive exhibits where you can even feel the force of a shark bite! Don\'t let your eyes fool you, another new exhibit for 2011 is Mermaids, a captivating show that will occur 3 times daily followed by meet and greets. If you\'re looking for family fun that is also educational, Ripley\'s Aquarium needs to be on your list!\r\n\r\nSecond Avenue Pier\r\nRecently renovated, Second Avenue Pier, which has been around since 1936, is located on the southern portion of the Myrtle Beach Boardwalk and just steps away from Oceans One Resort. The pier now features the Pier House Restaurant and Pier View Bar &amp; Lounge (open air bar) as well as what the pier has been famous for...fishing! During the summer season, Second Avenue Pier is home to an amazing fireworks display every Wednesday night as part of the Hot Summer Nights on the Boardwalk. Whether you want to relax with some fishing poles, eat breakfast, lunch or dinner, or simply enjoy a tasty beverage in the ocean breeze, Second Avenue Pier is the place to be!\r\n\r\n<strong>SkyWheel Myrtle Beach</strong>\r\nIt\'s tall, it\'s round and it has a light show...yes, the SkyWheel Myrtle is hard to miss along the Myrtle Beach Boardwalk and for all the right reasons.  Standing 200 feet above sea level, you can enjoy a view rarely seen of the Grand Strand in one of 42 temperature controlled glass gondolas. At night a spectacular LED lightshow begins, giving that extra spark to downtown Myrtle Beach. Operating year round, your flight will consist of three rotations and ranges from 8-12 minutes in length and is the first observation wheel of its kind in the United States.\r\n\r\n<strong>Tanger Outlets</strong>\r\nShop guilt free at either Tanger Outlets located in both Myrtle Beach on 501 or on Kings Highway near Myrtle Beach Mall. With stores such as Coach, kate spade, Old Navy, Gap, Levi\'s, Under Armour, Carter\'s, Disney Store and many, many more; you are sure to find something for the entire family, even Dad! Not only will you find the nation’s leading designer and brand name stores with the widest selection but the prices are also backed by the Best Price Guarantee. When you shop at Tanger Outlets, you can shop with confidence while on vacation.\r\n\r\n<strong>WonderWorks</strong>\r\nA new attraction at Broadway at the Beach in 2011 is WonderWorks, an indoor interactive amusement park for the mind. Whether you are driving by or walking around Broadway at the Beach, you can\'t help but be amazed at the building that appears to have fallen from the sky and landed upside down. WonderWorks features more than 100 exhibits that allow you to interact, discover and explore! Feel the 84 mph winds of a hurricane, build your own roller coaster or submarine adventure with WonderSimulators, pilot a fighter jet, manuever the controls of a NASA spacecraft or simply have fun with bubbles in the Bubble Lab. WonderWorks is open year round, seven days a week and they suggest you allow 3-4 hours to get the full experience.','Things to Do','','inherit','open','open','','61-revision-6','','','2011-06-03 20:21:28','2011-06-03 20:21:28','',61,'http://oor.wbtaylor.net/index.php/2011/06/61-revision-6/',0,'revision','',0),(130,1,'2011-06-03 20:24:28','2011-06-03 20:24:28','<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\"><img class=\"alignleft size-full wp-image-128\" title=\"Alabama Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\" alt=\"Alabama Theatre\" width=\"130\" height=\"110\" /></a>Alabama Theatre</h4>\r\nVoted the #1 Live Theatre Attraction by Myrtle Beach Visitors featuring the Best in Family Entertainment is located in Barefoot Landing in North Myrtle Beach. The Alabama Theatre long standing performance is \"one The Show\". It has become a go-to show every vacation as the show changes from year to year. one features musical genres such as Country, Gospel, Broadway, Pop and Rock and don\'t forget the comedy! one is family favorite and a show you will never regret. If you visit during the holiday season, you will want to catch the other staple at Alabama Theatre - The South\'s Grandest Christmas Show. This family friendly holiday show features musical performances, dance and plenty of laughter from resident comedian Ricky Mokel. In addition to the regular shows, you will also have the opportunity to see live concerts from chart topping artists such as Kenny Rogers, The Oak Ridge Boys, LeeAnn Rimes and more!\r\n\r\nAlligator Adventure\r\nLocated adjacent to Barefoot Landing in North Myrtle Beach, Alligator Adventure puts you face to face with reptiles, alligators, crocodiles, lemurs, tropical birds, tigers, beavers and bats...oh my! Their live shows are a favorite among visitors and feature Alligator Live Feedings in the warmer months (Mid-April through Mid-October), Alligator Handling and Lecture in the cooler months and Snake Handling. Alligator Adventure is also home to UTAN - King of Crocs, the largest crocodile in the United States measuring over 20 feet long! Tickets can be purchased online or at the ticket counter and discounts are available including Active Military discounts and a Locals discount. You also receive a 2nd day free with any paid admission, you can\'t afford not to experience Alligator Adventure!\r\n\r\nBarefoot Landing\r\nBarefoot Landing, sitting along the Intercoastal Waterway, in North Myrtle Beach  is home to the Alabama Theatre, House of Blues, multiple restaurants, more than 100 specialty and retail shops and entertainment! During the summer months you can sit back and enjoy fireworks over the lake and also get up close and personal with exotic animals at the TIGERS Exhibit. SummerFest brings excitement all over Barefoot Landing with parades, magicians, clowns, face painters, stilt walkers, jugglers and more 7 nights a week! Barefoot Landing is conveintently located to both Myrtle Beach and North Myrtle Beach travelers wanting to take it slow and easy....that\'s the beach way, that\'s the Barefoot Way.\r\n\r\nBroadway at the Beach\r\nIf you\'re looking for one place to go that has everything, Broadway at the Beach is 350 acres of paradise and was voted #1 Attraction in Myrtle Beach according to Trip Advisor. Featuring shopping, dining, nightlife, and entertainment you simply can not go wrong. 2011 brings new excitement and merchants such as WonderWorks Myrtle Beach (an amusement park for your mind), Legends in Concert (Myrtle Beach favorite recently relocated from Surfside Beach) and Bodies Revealed (summer months only). New restaurants feature Carlos \'n Charlies (family friendly Mexican restuarant), Tilted Kilt Pub &amp; Eatery (Scottish themed pub and festive eatery) and Good Time Charley\'s (American featuring sandwiches, hamburgers and more). You can still enjoy your favorites such as IMAX 3D Theatre, MagiQuest, Senor Frogs, Ripley\'s Aquarium, Jimmy Buffet\'s Margaritaville just to name a few. For those who once loved the Myrtle Beach Pavilion be sure to visit the Pavilion Nostaglia Park featuring some of the Pavilion\'s most popular rides including the historical carousel. Year round events and parades are some of the most popular in the area while the Fireworks show over Lake Broadway is a must see during the summer months and on special occasions. Shop, Dine, Dance, Play...It’s Broadwayyy Fun in Myrtle Beach!\r\n\r\nCarolina Opry\r\nCalvin Gilmore presents four legendary shows all in one legendary theater, The Carolina Opry located at Broadway at the Beach. For 25 years The Carolina Opry has been entertaining everyone who has walked through the door with 2 hours of high-energy music, comedy and dance. Good Vibrations features the best music from the 60s, 70s and 80s in a fast-paced show that will bring you back to the best in American popular music. The Carolina Opry Christmas Special combines the best of the holiday spirit with beloved musical performances, fresh comedy and breathtaking dance. LIGHT See The Music offers a one of a kind view of music with a lazer light show set to a variety of muscial genres. New for 2011 is Beatlemania Now! as seen on Broadway and recaptures everything you loved about The Beatles. Beatlemania Now! will run from June 15-September 4 and showtimes are at 5pm Wed-Sun. If you only see one show...it should be at The Carolina Opry.\r\n\r\nCelebration Music Theatre\r\nNew for 2011 and located in Surfside Beach, Celebration Music Theatre features the legendary tribute artist show SUPERSTARZ! Live and the Broadway Celebration Series. They also offer a \"just for kids\" production called \"the Rocktastics!\" that will be performing June 15 - August 6. Don\'t miss their Broadway line-up for 2011 with the Minnie Pearl Gospel Hour, All Shook Up, Hairspray, The Southern Bellers and A Christmas Carol.\r\n\r\nChildren\'s Museum of South Carolina\r\nCome \"Touch, Explore, and Play...\" while learning about your world through the interactive exhibits and programs at The Children\'s Museum of South Carolina. Located near the Myrtle Beach Convention Center, CMSC offers special programs, such as Tales for Tots and Digitalis Planetarium, are extremely popular with the adults and children who visit the Museum. With a wide variety of interactive exhibits kids of all ages are sure to have a fun learning experience.\r\n\r\nCoastal Grand Mall\r\nFeaturing anchor stores Belk, Dillard\'s, JC Penney and Sears; Coastal Grand Mall has quickly become the #1 mall in Myrtle Beach. Featuring more than 100 stores and restaurants, you will find everything you were looking for...and then some! After you have shopped until you drop, sit down and relax in the state of the art 14 screen Cinemark Movie Theater or enjoy something to eat at Abuelo\'s, Texas Roadhouse, Red Robin and more. Treat everyone in the family to something unique from Coastal Grand Mall.\r\n\r\nFamily Kingdom\r\nJust one block from Oceans One Resort you will find Myrtle Beach\'s only Seaside Amusement Park and Oceanfront Water Park, Family Kingdom! Featuring Go Karts, Kiddie Rides, Family Rides, Water Rides and Thrill Rides the entire family can enjoy their time in the park. Best of all, there is NO ADMISSION FEE! New for 2011 is the Picnic Pavilion, a covered dining area that can accommodate up to 100 guests for birthday parties, family reunions or any other group outing.\r\n\r\nHouse of Blues\r\nThe House of Blues Myrtle Beach, located in Barefoot Landing, offers live music on the Sugar Shack Deck and the Concert Hall and delta inspired cuisine in their world famous restuarant. With leading acts from country, rock, top 40 and more your vacation won\'t be complete without the intimate setting with your favorite artist. You can even \"Pass the Line\" and \"Crash the Barricade\" to gain entry first into the concerts. The Gospel Brunch in the restaurant is something that shouldn\'t missed with an amazing buffet and inspiring gospel performances. Where the heart meets the soul®. The ultimate live music and dining experience.\r\n\r\nLegends in Concert\r\nThe World\'s Longest Running Live Tribute Show, Legends in Concert has been a favorite in Myrtle Beach for years and offering a variety of concerts and live shows and many other activities for all ages. Legends in Concert recently relocated a state-of-the-art theater in Broadway at the Beach next to Planet Hollywood!\r\n\r\nThe Market Common\r\nA place where you can experience exceptional shopping and dining in a beautifully-designed village setting. From the nation’s most celebrated names in retail to ice cream and pizza for the kids, and from one-of-a-kind restaurants to the most comfortable movie theater at the beach, The Market Common is always worth your time. The Market Common is also home to multiple festivals all year long, such as Sun Fun Festival, Beerfest, Myrtle Beach Wine Fest, Oktoberfest and more!\r\n\r\nMedieval Times\r\nInside the stone walls of the 11th century-style castle, Medieval Spain comes to life as six knights, donning authentic armor, clash in a jousting tournament for the title of King\'s Champion. Let your imagination take you to Medieval Times.\r\n\r\nMyrtle Beach Boardwalk\r\nThe Myrtle Beach Boardwalk opened in 2010 to rave reviews! The 1.2 mile boardwalk stretches from 14th Avenue North to 2nd Avenue North in the heart of Myrtle Beach. The Myrtle Beach Boardwalk is home to restaurants, shopping, arcades, ice cream shops and more. In the center of it all is the brand new SkyWheel Myrtle Beach and Landshark Bar &amp; Grill which opened to rave reviews in May 2011!  Check out our Myrtle Beach Boardwalk page for more information.\r\n\r\nMyrtle Beach Mall\r\nConveinently located at the corner of Highways 22 and 17, Myrtle Beach Mall continues to provide shoppers with unique stores and value not offered by other malls in the area. Two Belk stores, JCPenney are the long standing anchors and are now accompanied by the only Bass Pro Shops in South Carolina! The mall is also home to Uptown Theater, Home of the Carolina Improv, an improv comedy about living and playing Myrtle Beach. If you aren\'t sure what you need, shopping at Myrtle Beach Mall will help you figure it out.\r\n\r\nMyrtle Beach Pelicans\r\nThe Myrtle Beach Pelicans have been bringing minor league baseball to the beach since 1999 and as of 2011 are the Advanced \'A\' Affiliate of the Texas Rangers. With various promotions and events, including multiple fireworks shows, the Myrtle Beach Pelicans are a family favorite stop on their vacation. Kids are allowed to run the bases following the game and play catch on the field prior to the start of the game.  To add to the fun you always have to be on the lookout for Splash, the official mascot who is usually up to no good; Rally Shark, who adds excitement late in the game and the always popular, Deuce - part bat boy, part ball caddy. As they say...Baseball\'s Even Better at the Beach!\r\n\r\nMyrtle Waves\r\nVoted 1st Place in Best of the Beach in 2010, Myrtle Waves offers over 20 acres of swerves, curves, waves, and chutes and over 1 million gallons of water! Raft rides, Slides and Family Attractions make this a one-stop place for all around family fun in the sun. The younger kids will enjoy Bubble Bay and Saturation Station while the older kids (and adults) have a blast twisting and turning on Racin\' River, Turbo Twisters, Riptide Rockets Night Flight and more. Myrtle Waves is open seasonally (mid-May thru mid-September) and season passes are available.\r\n\r\nNASCAR SpeedPark\r\nIf speed is your thing then the NASCAR SpeedPark is for you, boasting over 26 acres of the industries hottest go-kart tracks, family rides, mini-golf courses, midway games, in addition to family dining in a relaxed and fun environment. Challenge everyone in your family to a little race and a lot of fun. NASCAR SpeedPark is open year round and various tickets pacakages are available.\r\n\r\nPalace Theatre\r\nThe Palace Theatre is located at Broadway at the Beach and is home to the best in live entertainment. Their 2011 lineup includes Hooray for Hollywood which will take you back through 50 years of movie history inlcuding some of the most popular song and dance routines from movies such as Singing in the Rain and Disney\'s \"Jungle Book\". Back by popular demand is The Magical Spirit of Ireland, enjoy sounds from the Irish Tenors and the world renowned Spirit of the Dance dancers. Get your heart pumping and your pulse racing with Le Grand Cirque Adreneline, a 2 hour death defying performance filled with contortionists, tumblers, incredible aerial acts as well as the breathtaking Wheel of Death. Start your holiday season in style with Christmas on Ice, a a one-of-a-kind show that is sure to be an instant family hit as Santa and his helpers take you on a journey around a 40 foot ice skating rink. The Palace Theatre boasts an elegance and beauty unrivaled by any other Theatre in South Carolina.\r\n\r\nPirate\'s Voyage\r\nAll new for 2011, Pirate\'s Voyage is the latest live dinner show from Dolly Parton. After closing the doors on the long time running Dixie Stampede, Dolly Parton has revamped the venue into a pirates dream! Featuring 15 foot deep, 750 thousand gallon  lagoon, and 3 full-sized ships, complete with pirates, battling over who will take the treasure. Just revealed was the live animal show which will feature a sea lion who will perform and even \"arrrrrrrrgh\" multiple times during the show. The dinner menu has been updated as well but still continues with the ever popular soup from Dixie Stampede. Pirate\'s Voyage opens on June 3rd, 2011...it\'s time to get your tickets, matey!\r\n\r\nRipley\'s Aquarium\r\nRipley\'s Aquarium Myrtle Beach can be found at Broadway at the Beach. Sea life is abundant in the aquarium with more than 350 individual species featuring 10,000 exotic sea creatures. Get hands on in the Discovery Center by holding a horseshoe crab or head over to Ray Bay, where you can reach out and touch a stingray as they glide by. See some of the more exotic fish from the Amazon River at Rio Amazon or get a glimpse of color at Rainbow Rock where the brightly colored Indo-Pacific fish swim through a coral reef. A new exhibit for 2011 gets you up close and personal with the ocean\'s most feared predator, Sharks-Perfect Predators features over a dozen species of sharks and interactive exhibits where you can even feel the force of a shark bite! Don\'t let your eyes fool you, another new exhibit for 2011 is Mermaids, a captivating show that will occur 3 times daily followed by meet and greets. If you\'re looking for family fun that is also educational, Ripley\'s Aquarium needs to be on your list!\r\n\r\nSecond Avenue Pier\r\nRecently renovated, Second Avenue Pier, which has been around since 1936, is located on the southern portion of the Myrtle Beach Boardwalk and just steps away from Oceans One Resort. The pier now features the Pier House Restaurant and Pier View Bar &amp; Lounge (open air bar) as well as what the pier has been famous for...fishing! During the summer season, Second Avenue Pier is home to an amazing fireworks display every Wednesday night as part of the Hot Summer Nights on the Boardwalk. Whether you want to relax with some fishing poles, eat breakfast, lunch or dinner, or simply enjoy a tasty beverage in the ocean breeze, Second Avenue Pier is the place to be!\r\n\r\n<strong>SkyWheel Myrtle Beach</strong>\r\nIt\'s tall, it\'s round and it has a light show...yes, the SkyWheel Myrtle is hard to miss along the Myrtle Beach Boardwalk and for all the right reasons.  Standing 200 feet above sea level, you can enjoy a view rarely seen of the Grand Strand in one of 42 temperature controlled glass gondolas. At night a spectacular LED lightshow begins, giving that extra spark to downtown Myrtle Beach. Operating year round, your flight will consist of three rotations and ranges from 8-12 minutes in length and is the first observation wheel of its kind in the United States.\r\n\r\n<strong>Tanger Outlets</strong>\r\nShop guilt free at either Tanger Outlets located in both Myrtle Beach on 501 or on Kings Highway near Myrtle Beach Mall. With stores such as Coach, kate spade, Old Navy, Gap, Levi\'s, Under Armour, Carter\'s, Disney Store and many, many more; you are sure to find something for the entire family, even Dad! Not only will you find the nation’s leading designer and brand name stores with the widest selection but the prices are also backed by the Best Price Guarantee. When you shop at Tanger Outlets, you can shop with confidence while on vacation.\r\n\r\n<strong>WonderWorks</strong>\r\nA new attraction at Broadway at the Beach in 2011 is WonderWorks, an indoor interactive amusement park for the mind. Whether you are driving by or walking around Broadway at the Beach, you can\'t help but be amazed at the building that appears to have fallen from the sky and landed upside down. WonderWorks features more than 100 exhibits that allow you to interact, discover and explore! Feel the 84 mph winds of a hurricane, build your own roller coaster or submarine adventure with WonderSimulators, pilot a fighter jet, manuever the controls of a NASA spacecraft or simply have fun with bubbles in the Bubble Lab. WonderWorks is open year round, seven days a week and they suggest you allow 3-4 hours to get the full experience.','Things to Do','','inherit','open','open','','61-revision-7','','','2011-06-03 20:24:28','2011-06-03 20:24:28','',61,'http://oor.wbtaylor.net/index.php/2011/06/61-revision-7/',0,'revision','',0),(131,1,'2011-06-03 20:24:50','2011-06-03 20:24:50','<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\"><img class=\"size-full wp-image-128 alignnone\" title=\"Alabama Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\" alt=\"Alabama Theatre\" width=\"130\" height=\"110\" /></a>Alabama Theatre</h4>\r\nVoted the #1 Live Theatre Attraction by Myrtle Beach Visitors featuring the Best in Family Entertainment is located in Barefoot Landing in North Myrtle Beach. The Alabama Theatre long standing performance is \"one The Show\". It has become a go-to show every vacation as the show changes from year to year. one features musical genres such as Country, Gospel, Broadway, Pop and Rock and don\'t forget the comedy! one is family favorite and a show you will never regret. If you visit during the holiday season, you will want to catch the other staple at Alabama Theatre - The South\'s Grandest Christmas Show. This family friendly holiday show features musical performances, dance and plenty of laughter from resident comedian Ricky Mokel. In addition to the regular shows, you will also have the opportunity to see live concerts from chart topping artists such as Kenny Rogers, The Oak Ridge Boys, LeeAnn Rimes and more!\r\n\r\nAlligator Adventure\r\nLocated adjacent to Barefoot Landing in North Myrtle Beach, Alligator Adventure puts you face to face with reptiles, alligators, crocodiles, lemurs, tropical birds, tigers, beavers and bats...oh my! Their live shows are a favorite among visitors and feature Alligator Live Feedings in the warmer months (Mid-April through Mid-October), Alligator Handling and Lecture in the cooler months and Snake Handling. Alligator Adventure is also home to UTAN - King of Crocs, the largest crocodile in the United States measuring over 20 feet long! Tickets can be purchased online or at the ticket counter and discounts are available including Active Military discounts and a Locals discount. You also receive a 2nd day free with any paid admission, you can\'t afford not to experience Alligator Adventure!\r\n\r\nBarefoot Landing\r\nBarefoot Landing, sitting along the Intercoastal Waterway, in North Myrtle Beach  is home to the Alabama Theatre, House of Blues, multiple restaurants, more than 100 specialty and retail shops and entertainment! During the summer months you can sit back and enjoy fireworks over the lake and also get up close and personal with exotic animals at the TIGERS Exhibit. SummerFest brings excitement all over Barefoot Landing with parades, magicians, clowns, face painters, stilt walkers, jugglers and more 7 nights a week! Barefoot Landing is conveintently located to both Myrtle Beach and North Myrtle Beach travelers wanting to take it slow and easy....that\'s the beach way, that\'s the Barefoot Way.\r\n\r\nBroadway at the Beach\r\nIf you\'re looking for one place to go that has everything, Broadway at the Beach is 350 acres of paradise and was voted #1 Attraction in Myrtle Beach according to Trip Advisor. Featuring shopping, dining, nightlife, and entertainment you simply can not go wrong. 2011 brings new excitement and merchants such as WonderWorks Myrtle Beach (an amusement park for your mind), Legends in Concert (Myrtle Beach favorite recently relocated from Surfside Beach) and Bodies Revealed (summer months only). New restaurants feature Carlos \'n Charlies (family friendly Mexican restuarant), Tilted Kilt Pub &amp; Eatery (Scottish themed pub and festive eatery) and Good Time Charley\'s (American featuring sandwiches, hamburgers and more). You can still enjoy your favorites such as IMAX 3D Theatre, MagiQuest, Senor Frogs, Ripley\'s Aquarium, Jimmy Buffet\'s Margaritaville just to name a few. For those who once loved the Myrtle Beach Pavilion be sure to visit the Pavilion Nostaglia Park featuring some of the Pavilion\'s most popular rides including the historical carousel. Year round events and parades are some of the most popular in the area while the Fireworks show over Lake Broadway is a must see during the summer months and on special occasions. Shop, Dine, Dance, Play...It’s Broadwayyy Fun in Myrtle Beach!\r\n\r\nCarolina Opry\r\nCalvin Gilmore presents four legendary shows all in one legendary theater, The Carolina Opry located at Broadway at the Beach. For 25 years The Carolina Opry has been entertaining everyone who has walked through the door with 2 hours of high-energy music, comedy and dance. Good Vibrations features the best music from the 60s, 70s and 80s in a fast-paced show that will bring you back to the best in American popular music. The Carolina Opry Christmas Special combines the best of the holiday spirit with beloved musical performances, fresh comedy and breathtaking dance. LIGHT See The Music offers a one of a kind view of music with a lazer light show set to a variety of muscial genres. New for 2011 is Beatlemania Now! as seen on Broadway and recaptures everything you loved about The Beatles. Beatlemania Now! will run from June 15-September 4 and showtimes are at 5pm Wed-Sun. If you only see one show...it should be at The Carolina Opry.\r\n\r\nCelebration Music Theatre\r\nNew for 2011 and located in Surfside Beach, Celebration Music Theatre features the legendary tribute artist show SUPERSTARZ! Live and the Broadway Celebration Series. They also offer a \"just for kids\" production called \"the Rocktastics!\" that will be performing June 15 - August 6. Don\'t miss their Broadway line-up for 2011 with the Minnie Pearl Gospel Hour, All Shook Up, Hairspray, The Southern Bellers and A Christmas Carol.\r\n\r\nChildren\'s Museum of South Carolina\r\nCome \"Touch, Explore, and Play...\" while learning about your world through the interactive exhibits and programs at The Children\'s Museum of South Carolina. Located near the Myrtle Beach Convention Center, CMSC offers special programs, such as Tales for Tots and Digitalis Planetarium, are extremely popular with the adults and children who visit the Museum. With a wide variety of interactive exhibits kids of all ages are sure to have a fun learning experience.\r\n\r\nCoastal Grand Mall\r\nFeaturing anchor stores Belk, Dillard\'s, JC Penney and Sears; Coastal Grand Mall has quickly become the #1 mall in Myrtle Beach. Featuring more than 100 stores and restaurants, you will find everything you were looking for...and then some! After you have shopped until you drop, sit down and relax in the state of the art 14 screen Cinemark Movie Theater or enjoy something to eat at Abuelo\'s, Texas Roadhouse, Red Robin and more. Treat everyone in the family to something unique from Coastal Grand Mall.\r\n\r\nFamily Kingdom\r\nJust one block from Oceans One Resort you will find Myrtle Beach\'s only Seaside Amusement Park and Oceanfront Water Park, Family Kingdom! Featuring Go Karts, Kiddie Rides, Family Rides, Water Rides and Thrill Rides the entire family can enjoy their time in the park. Best of all, there is NO ADMISSION FEE! New for 2011 is the Picnic Pavilion, a covered dining area that can accommodate up to 100 guests for birthday parties, family reunions or any other group outing.\r\n\r\nHouse of Blues\r\nThe House of Blues Myrtle Beach, located in Barefoot Landing, offers live music on the Sugar Shack Deck and the Concert Hall and delta inspired cuisine in their world famous restuarant. With leading acts from country, rock, top 40 and more your vacation won\'t be complete without the intimate setting with your favorite artist. You can even \"Pass the Line\" and \"Crash the Barricade\" to gain entry first into the concerts. The Gospel Brunch in the restaurant is something that shouldn\'t missed with an amazing buffet and inspiring gospel performances. Where the heart meets the soul®. The ultimate live music and dining experience.\r\n\r\nLegends in Concert\r\nThe World\'s Longest Running Live Tribute Show, Legends in Concert has been a favorite in Myrtle Beach for years and offering a variety of concerts and live shows and many other activities for all ages. Legends in Concert recently relocated a state-of-the-art theater in Broadway at the Beach next to Planet Hollywood!\r\n\r\nThe Market Common\r\nA place where you can experience exceptional shopping and dining in a beautifully-designed village setting. From the nation’s most celebrated names in retail to ice cream and pizza for the kids, and from one-of-a-kind restaurants to the most comfortable movie theater at the beach, The Market Common is always worth your time. The Market Common is also home to multiple festivals all year long, such as Sun Fun Festival, Beerfest, Myrtle Beach Wine Fest, Oktoberfest and more!\r\n\r\nMedieval Times\r\nInside the stone walls of the 11th century-style castle, Medieval Spain comes to life as six knights, donning authentic armor, clash in a jousting tournament for the title of King\'s Champion. Let your imagination take you to Medieval Times.\r\n\r\nMyrtle Beach Boardwalk\r\nThe Myrtle Beach Boardwalk opened in 2010 to rave reviews! The 1.2 mile boardwalk stretches from 14th Avenue North to 2nd Avenue North in the heart of Myrtle Beach. The Myrtle Beach Boardwalk is home to restaurants, shopping, arcades, ice cream shops and more. In the center of it all is the brand new SkyWheel Myrtle Beach and Landshark Bar &amp; Grill which opened to rave reviews in May 2011!  Check out our Myrtle Beach Boardwalk page for more information.\r\n\r\nMyrtle Beach Mall\r\nConveinently located at the corner of Highways 22 and 17, Myrtle Beach Mall continues to provide shoppers with unique stores and value not offered by other malls in the area. Two Belk stores, JCPenney are the long standing anchors and are now accompanied by the only Bass Pro Shops in South Carolina! The mall is also home to Uptown Theater, Home of the Carolina Improv, an improv comedy about living and playing Myrtle Beach. If you aren\'t sure what you need, shopping at Myrtle Beach Mall will help you figure it out.\r\n\r\nMyrtle Beach Pelicans\r\nThe Myrtle Beach Pelicans have been bringing minor league baseball to the beach since 1999 and as of 2011 are the Advanced \'A\' Affiliate of the Texas Rangers. With various promotions and events, including multiple fireworks shows, the Myrtle Beach Pelicans are a family favorite stop on their vacation. Kids are allowed to run the bases following the game and play catch on the field prior to the start of the game.  To add to the fun you always have to be on the lookout for Splash, the official mascot who is usually up to no good; Rally Shark, who adds excitement late in the game and the always popular, Deuce - part bat boy, part ball caddy. As they say...Baseball\'s Even Better at the Beach!\r\n\r\nMyrtle Waves\r\nVoted 1st Place in Best of the Beach in 2010, Myrtle Waves offers over 20 acres of swerves, curves, waves, and chutes and over 1 million gallons of water! Raft rides, Slides and Family Attractions make this a one-stop place for all around family fun in the sun. The younger kids will enjoy Bubble Bay and Saturation Station while the older kids (and adults) have a blast twisting and turning on Racin\' River, Turbo Twisters, Riptide Rockets Night Flight and more. Myrtle Waves is open seasonally (mid-May thru mid-September) and season passes are available.\r\n\r\nNASCAR SpeedPark\r\nIf speed is your thing then the NASCAR SpeedPark is for you, boasting over 26 acres of the industries hottest go-kart tracks, family rides, mini-golf courses, midway games, in addition to family dining in a relaxed and fun environment. Challenge everyone in your family to a little race and a lot of fun. NASCAR SpeedPark is open year round and various tickets pacakages are available.\r\n\r\nPalace Theatre\r\nThe Palace Theatre is located at Broadway at the Beach and is home to the best in live entertainment. Their 2011 lineup includes Hooray for Hollywood which will take you back through 50 years of movie history inlcuding some of the most popular song and dance routines from movies such as Singing in the Rain and Disney\'s \"Jungle Book\". Back by popular demand is The Magical Spirit of Ireland, enjoy sounds from the Irish Tenors and the world renowned Spirit of the Dance dancers. Get your heart pumping and your pulse racing with Le Grand Cirque Adreneline, a 2 hour death defying performance filled with contortionists, tumblers, incredible aerial acts as well as the breathtaking Wheel of Death. Start your holiday season in style with Christmas on Ice, a a one-of-a-kind show that is sure to be an instant family hit as Santa and his helpers take you on a journey around a 40 foot ice skating rink. The Palace Theatre boasts an elegance and beauty unrivaled by any other Theatre in South Carolina.\r\n\r\nPirate\'s Voyage\r\nAll new for 2011, Pirate\'s Voyage is the latest live dinner show from Dolly Parton. After closing the doors on the long time running Dixie Stampede, Dolly Parton has revamped the venue into a pirates dream! Featuring 15 foot deep, 750 thousand gallon  lagoon, and 3 full-sized ships, complete with pirates, battling over who will take the treasure. Just revealed was the live animal show which will feature a sea lion who will perform and even \"arrrrrrrrgh\" multiple times during the show. The dinner menu has been updated as well but still continues with the ever popular soup from Dixie Stampede. Pirate\'s Voyage opens on June 3rd, 2011...it\'s time to get your tickets, matey!\r\n\r\nRipley\'s Aquarium\r\nRipley\'s Aquarium Myrtle Beach can be found at Broadway at the Beach. Sea life is abundant in the aquarium with more than 350 individual species featuring 10,000 exotic sea creatures. Get hands on in the Discovery Center by holding a horseshoe crab or head over to Ray Bay, where you can reach out and touch a stingray as they glide by. See some of the more exotic fish from the Amazon River at Rio Amazon or get a glimpse of color at Rainbow Rock where the brightly colored Indo-Pacific fish swim through a coral reef. A new exhibit for 2011 gets you up close and personal with the ocean\'s most feared predator, Sharks-Perfect Predators features over a dozen species of sharks and interactive exhibits where you can even feel the force of a shark bite! Don\'t let your eyes fool you, another new exhibit for 2011 is Mermaids, a captivating show that will occur 3 times daily followed by meet and greets. If you\'re looking for family fun that is also educational, Ripley\'s Aquarium needs to be on your list!\r\n\r\nSecond Avenue Pier\r\nRecently renovated, Second Avenue Pier, which has been around since 1936, is located on the southern portion of the Myrtle Beach Boardwalk and just steps away from Oceans One Resort. The pier now features the Pier House Restaurant and Pier View Bar &amp; Lounge (open air bar) as well as what the pier has been famous for...fishing! During the summer season, Second Avenue Pier is home to an amazing fireworks display every Wednesday night as part of the Hot Summer Nights on the Boardwalk. Whether you want to relax with some fishing poles, eat breakfast, lunch or dinner, or simply enjoy a tasty beverage in the ocean breeze, Second Avenue Pier is the place to be!\r\n\r\n<strong>SkyWheel Myrtle Beach</strong>\r\nIt\'s tall, it\'s round and it has a light show...yes, the SkyWheel Myrtle is hard to miss along the Myrtle Beach Boardwalk and for all the right reasons.  Standing 200 feet above sea level, you can enjoy a view rarely seen of the Grand Strand in one of 42 temperature controlled glass gondolas. At night a spectacular LED lightshow begins, giving that extra spark to downtown Myrtle Beach. Operating year round, your flight will consist of three rotations and ranges from 8-12 minutes in length and is the first observation wheel of its kind in the United States.\r\n\r\n<strong>Tanger Outlets</strong>\r\nShop guilt free at either Tanger Outlets located in both Myrtle Beach on 501 or on Kings Highway near Myrtle Beach Mall. With stores such as Coach, kate spade, Old Navy, Gap, Levi\'s, Under Armour, Carter\'s, Disney Store and many, many more; you are sure to find something for the entire family, even Dad! Not only will you find the nation’s leading designer and brand name stores with the widest selection but the prices are also backed by the Best Price Guarantee. When you shop at Tanger Outlets, you can shop with confidence while on vacation.\r\n\r\n<strong>WonderWorks</strong>\r\nA new attraction at Broadway at the Beach in 2011 is WonderWorks, an indoor interactive amusement park for the mind. Whether you are driving by or walking around Broadway at the Beach, you can\'t help but be amazed at the building that appears to have fallen from the sky and landed upside down. WonderWorks features more than 100 exhibits that allow you to interact, discover and explore! Feel the 84 mph winds of a hurricane, build your own roller coaster or submarine adventure with WonderSimulators, pilot a fighter jet, manuever the controls of a NASA spacecraft or simply have fun with bubbles in the Bubble Lab. WonderWorks is open year round, seven days a week and they suggest you allow 3-4 hours to get the full experience.','Things to Do','','inherit','open','open','','61-revision-8','','','2011-06-03 20:24:50','2011-06-03 20:24:50','',61,'http://oor.wbtaylor.net/index.php/2011/06/61-revision-8/',0,'revision','',0),(132,1,'2011-06-03 20:25:53','2011-06-03 20:25:53','<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\"><img class=\"size-full wp-image-128 alignleft\" title=\"Alabama Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\" alt=\"Alabama Theatre\" width=\"130\" height=\"110\" /></a>Alabama Theatre</h4>\r\nVoted the #1 Live Theatre Attraction by Myrtle Beach Visitors featuring the Best in Family Entertainment is located in Barefoot Landing in North Myrtle Beach. The Alabama Theatre long standing performance is \"one The Show\". It has become a go-to show every vacation as the show changes from year to year. one features musical genres such as Country, Gospel, Broadway, Pop and Rock and don\'t forget the comedy! one is family favorite and a show you will never regret. If you visit during the holiday season, you will want to catch the other staple at Alabama Theatre - The South\'s Grandest Christmas Show. This family friendly holiday show features musical performances, dance and plenty of laughter from resident comedian Ricky Mokel. In addition to the regular shows, you will also have the opportunity to see live concerts from chart topping artists such as Kenny Rogers, The Oak Ridge Boys, LeeAnn Rimes and more!\r\n\r\nAlligator Adventure\r\nLocated adjacent to Barefoot Landing in North Myrtle Beach, Alligator Adventure puts you face to face with reptiles, alligators, crocodiles, lemurs, tropical birds, tigers, beavers and bats...oh my! Their live shows are a favorite among visitors and feature Alligator Live Feedings in the warmer months (Mid-April through Mid-October), Alligator Handling and Lecture in the cooler months and Snake Handling. Alligator Adventure is also home to UTAN - King of Crocs, the largest crocodile in the United States measuring over 20 feet long! Tickets can be purchased online or at the ticket counter and discounts are available including Active Military discounts and a Locals discount. You also receive a 2nd day free with any paid admission, you can\'t afford not to experience Alligator Adventure!\r\n\r\nBarefoot Landing\r\nBarefoot Landing, sitting along the Intercoastal Waterway, in North Myrtle Beach  is home to the Alabama Theatre, House of Blues, multiple restaurants, more than 100 specialty and retail shops and entertainment! During the summer months you can sit back and enjoy fireworks over the lake and also get up close and personal with exotic animals at the TIGERS Exhibit. SummerFest brings excitement all over Barefoot Landing with parades, magicians, clowns, face painters, stilt walkers, jugglers and more 7 nights a week! Barefoot Landing is conveintently located to both Myrtle Beach and North Myrtle Beach travelers wanting to take it slow and easy....that\'s the beach way, that\'s the Barefoot Way.\r\n\r\nBroadway at the Beach\r\nIf you\'re looking for one place to go that has everything, Broadway at the Beach is 350 acres of paradise and was voted #1 Attraction in Myrtle Beach according to Trip Advisor. Featuring shopping, dining, nightlife, and entertainment you simply can not go wrong. 2011 brings new excitement and merchants such as WonderWorks Myrtle Beach (an amusement park for your mind), Legends in Concert (Myrtle Beach favorite recently relocated from Surfside Beach) and Bodies Revealed (summer months only). New restaurants feature Carlos \'n Charlies (family friendly Mexican restuarant), Tilted Kilt Pub &amp; Eatery (Scottish themed pub and festive eatery) and Good Time Charley\'s (American featuring sandwiches, hamburgers and more). You can still enjoy your favorites such as IMAX 3D Theatre, MagiQuest, Senor Frogs, Ripley\'s Aquarium, Jimmy Buffet\'s Margaritaville just to name a few. For those who once loved the Myrtle Beach Pavilion be sure to visit the Pavilion Nostaglia Park featuring some of the Pavilion\'s most popular rides including the historical carousel. Year round events and parades are some of the most popular in the area while the Fireworks show over Lake Broadway is a must see during the summer months and on special occasions. Shop, Dine, Dance, Play...It’s Broadwayyy Fun in Myrtle Beach!\r\n\r\nCarolina Opry\r\nCalvin Gilmore presents four legendary shows all in one legendary theater, The Carolina Opry located at Broadway at the Beach. For 25 years The Carolina Opry has been entertaining everyone who has walked through the door with 2 hours of high-energy music, comedy and dance. Good Vibrations features the best music from the 60s, 70s and 80s in a fast-paced show that will bring you back to the best in American popular music. The Carolina Opry Christmas Special combines the best of the holiday spirit with beloved musical performances, fresh comedy and breathtaking dance. LIGHT See The Music offers a one of a kind view of music with a lazer light show set to a variety of muscial genres. New for 2011 is Beatlemania Now! as seen on Broadway and recaptures everything you loved about The Beatles. Beatlemania Now! will run from June 15-September 4 and showtimes are at 5pm Wed-Sun. If you only see one show...it should be at The Carolina Opry.\r\n\r\nCelebration Music Theatre\r\nNew for 2011 and located in Surfside Beach, Celebration Music Theatre features the legendary tribute artist show SUPERSTARZ! Live and the Broadway Celebration Series. They also offer a \"just for kids\" production called \"the Rocktastics!\" that will be performing June 15 - August 6. Don\'t miss their Broadway line-up for 2011 with the Minnie Pearl Gospel Hour, All Shook Up, Hairspray, The Southern Bellers and A Christmas Carol.\r\n\r\nChildren\'s Museum of South Carolina\r\nCome \"Touch, Explore, and Play...\" while learning about your world through the interactive exhibits and programs at The Children\'s Museum of South Carolina. Located near the Myrtle Beach Convention Center, CMSC offers special programs, such as Tales for Tots and Digitalis Planetarium, are extremely popular with the adults and children who visit the Museum. With a wide variety of interactive exhibits kids of all ages are sure to have a fun learning experience.\r\n\r\nCoastal Grand Mall\r\nFeaturing anchor stores Belk, Dillard\'s, JC Penney and Sears; Coastal Grand Mall has quickly become the #1 mall in Myrtle Beach. Featuring more than 100 stores and restaurants, you will find everything you were looking for...and then some! After you have shopped until you drop, sit down and relax in the state of the art 14 screen Cinemark Movie Theater or enjoy something to eat at Abuelo\'s, Texas Roadhouse, Red Robin and more. Treat everyone in the family to something unique from Coastal Grand Mall.\r\n\r\nFamily Kingdom\r\nJust one block from Oceans One Resort you will find Myrtle Beach\'s only Seaside Amusement Park and Oceanfront Water Park, Family Kingdom! Featuring Go Karts, Kiddie Rides, Family Rides, Water Rides and Thrill Rides the entire family can enjoy their time in the park. Best of all, there is NO ADMISSION FEE! New for 2011 is the Picnic Pavilion, a covered dining area that can accommodate up to 100 guests for birthday parties, family reunions or any other group outing.\r\n\r\nHouse of Blues\r\nThe House of Blues Myrtle Beach, located in Barefoot Landing, offers live music on the Sugar Shack Deck and the Concert Hall and delta inspired cuisine in their world famous restuarant. With leading acts from country, rock, top 40 and more your vacation won\'t be complete without the intimate setting with your favorite artist. You can even \"Pass the Line\" and \"Crash the Barricade\" to gain entry first into the concerts. The Gospel Brunch in the restaurant is something that shouldn\'t missed with an amazing buffet and inspiring gospel performances. Where the heart meets the soul®. The ultimate live music and dining experience.\r\n\r\nLegends in Concert\r\nThe World\'s Longest Running Live Tribute Show, Legends in Concert has been a favorite in Myrtle Beach for years and offering a variety of concerts and live shows and many other activities for all ages. Legends in Concert recently relocated a state-of-the-art theater in Broadway at the Beach next to Planet Hollywood!\r\n\r\nThe Market Common\r\nA place where you can experience exceptional shopping and dining in a beautifully-designed village setting. From the nation’s most celebrated names in retail to ice cream and pizza for the kids, and from one-of-a-kind restaurants to the most comfortable movie theater at the beach, The Market Common is always worth your time. The Market Common is also home to multiple festivals all year long, such as Sun Fun Festival, Beerfest, Myrtle Beach Wine Fest, Oktoberfest and more!\r\n\r\nMedieval Times\r\nInside the stone walls of the 11th century-style castle, Medieval Spain comes to life as six knights, donning authentic armor, clash in a jousting tournament for the title of King\'s Champion. Let your imagination take you to Medieval Times.\r\n\r\nMyrtle Beach Boardwalk\r\nThe Myrtle Beach Boardwalk opened in 2010 to rave reviews! The 1.2 mile boardwalk stretches from 14th Avenue North to 2nd Avenue North in the heart of Myrtle Beach. The Myrtle Beach Boardwalk is home to restaurants, shopping, arcades, ice cream shops and more. In the center of it all is the brand new SkyWheel Myrtle Beach and Landshark Bar &amp; Grill which opened to rave reviews in May 2011!  Check out our Myrtle Beach Boardwalk page for more information.\r\n\r\nMyrtle Beach Mall\r\nConveinently located at the corner of Highways 22 and 17, Myrtle Beach Mall continues to provide shoppers with unique stores and value not offered by other malls in the area. Two Belk stores, JCPenney are the long standing anchors and are now accompanied by the only Bass Pro Shops in South Carolina! The mall is also home to Uptown Theater, Home of the Carolina Improv, an improv comedy about living and playing Myrtle Beach. If you aren\'t sure what you need, shopping at Myrtle Beach Mall will help you figure it out.\r\n\r\nMyrtle Beach Pelicans\r\nThe Myrtle Beach Pelicans have been bringing minor league baseball to the beach since 1999 and as of 2011 are the Advanced \'A\' Affiliate of the Texas Rangers. With various promotions and events, including multiple fireworks shows, the Myrtle Beach Pelicans are a family favorite stop on their vacation. Kids are allowed to run the bases following the game and play catch on the field prior to the start of the game.  To add to the fun you always have to be on the lookout for Splash, the official mascot who is usually up to no good; Rally Shark, who adds excitement late in the game and the always popular, Deuce - part bat boy, part ball caddy. As they say...Baseball\'s Even Better at the Beach!\r\n\r\nMyrtle Waves\r\nVoted 1st Place in Best of the Beach in 2010, Myrtle Waves offers over 20 acres of swerves, curves, waves, and chutes and over 1 million gallons of water! Raft rides, Slides and Family Attractions make this a one-stop place for all around family fun in the sun. The younger kids will enjoy Bubble Bay and Saturation Station while the older kids (and adults) have a blast twisting and turning on Racin\' River, Turbo Twisters, Riptide Rockets Night Flight and more. Myrtle Waves is open seasonally (mid-May thru mid-September) and season passes are available.\r\n\r\nNASCAR SpeedPark\r\nIf speed is your thing then the NASCAR SpeedPark is for you, boasting over 26 acres of the industries hottest go-kart tracks, family rides, mini-golf courses, midway games, in addition to family dining in a relaxed and fun environment. Challenge everyone in your family to a little race and a lot of fun. NASCAR SpeedPark is open year round and various tickets pacakages are available.\r\n\r\nPalace Theatre\r\nThe Palace Theatre is located at Broadway at the Beach and is home to the best in live entertainment. Their 2011 lineup includes Hooray for Hollywood which will take you back through 50 years of movie history inlcuding some of the most popular song and dance routines from movies such as Singing in the Rain and Disney\'s \"Jungle Book\". Back by popular demand is The Magical Spirit of Ireland, enjoy sounds from the Irish Tenors and the world renowned Spirit of the Dance dancers. Get your heart pumping and your pulse racing with Le Grand Cirque Adreneline, a 2 hour death defying performance filled with contortionists, tumblers, incredible aerial acts as well as the breathtaking Wheel of Death. Start your holiday season in style with Christmas on Ice, a a one-of-a-kind show that is sure to be an instant family hit as Santa and his helpers take you on a journey around a 40 foot ice skating rink. The Palace Theatre boasts an elegance and beauty unrivaled by any other Theatre in South Carolina.\r\n\r\nPirate\'s Voyage\r\nAll new for 2011, Pirate\'s Voyage is the latest live dinner show from Dolly Parton. After closing the doors on the long time running Dixie Stampede, Dolly Parton has revamped the venue into a pirates dream! Featuring 15 foot deep, 750 thousand gallon  lagoon, and 3 full-sized ships, complete with pirates, battling over who will take the treasure. Just revealed was the live animal show which will feature a sea lion who will perform and even \"arrrrrrrrgh\" multiple times during the show. The dinner menu has been updated as well but still continues with the ever popular soup from Dixie Stampede. Pirate\'s Voyage opens on June 3rd, 2011...it\'s time to get your tickets, matey!\r\n\r\nRipley\'s Aquarium\r\nRipley\'s Aquarium Myrtle Beach can be found at Broadway at the Beach. Sea life is abundant in the aquarium with more than 350 individual species featuring 10,000 exotic sea creatures. Get hands on in the Discovery Center by holding a horseshoe crab or head over to Ray Bay, where you can reach out and touch a stingray as they glide by. See some of the more exotic fish from the Amazon River at Rio Amazon or get a glimpse of color at Rainbow Rock where the brightly colored Indo-Pacific fish swim through a coral reef. A new exhibit for 2011 gets you up close and personal with the ocean\'s most feared predator, Sharks-Perfect Predators features over a dozen species of sharks and interactive exhibits where you can even feel the force of a shark bite! Don\'t let your eyes fool you, another new exhibit for 2011 is Mermaids, a captivating show that will occur 3 times daily followed by meet and greets. If you\'re looking for family fun that is also educational, Ripley\'s Aquarium needs to be on your list!\r\n\r\nSecond Avenue Pier\r\nRecently renovated, Second Avenue Pier, which has been around since 1936, is located on the southern portion of the Myrtle Beach Boardwalk and just steps away from Oceans One Resort. The pier now features the Pier House Restaurant and Pier View Bar &amp; Lounge (open air bar) as well as what the pier has been famous for...fishing! During the summer season, Second Avenue Pier is home to an amazing fireworks display every Wednesday night as part of the Hot Summer Nights on the Boardwalk. Whether you want to relax with some fishing poles, eat breakfast, lunch or dinner, or simply enjoy a tasty beverage in the ocean breeze, Second Avenue Pier is the place to be!\r\n\r\n<strong>SkyWheel Myrtle Beach</strong>\r\nIt\'s tall, it\'s round and it has a light show...yes, the SkyWheel Myrtle is hard to miss along the Myrtle Beach Boardwalk and for all the right reasons.  Standing 200 feet above sea level, you can enjoy a view rarely seen of the Grand Strand in one of 42 temperature controlled glass gondolas. At night a spectacular LED lightshow begins, giving that extra spark to downtown Myrtle Beach. Operating year round, your flight will consist of three rotations and ranges from 8-12 minutes in length and is the first observation wheel of its kind in the United States.\r\n\r\n<strong>Tanger Outlets</strong>\r\nShop guilt free at either Tanger Outlets located in both Myrtle Beach on 501 or on Kings Highway near Myrtle Beach Mall. With stores such as Coach, kate spade, Old Navy, Gap, Levi\'s, Under Armour, Carter\'s, Disney Store and many, many more; you are sure to find something for the entire family, even Dad! Not only will you find the nation’s leading designer and brand name stores with the widest selection but the prices are also backed by the Best Price Guarantee. When you shop at Tanger Outlets, you can shop with confidence while on vacation.\r\n\r\n<strong>WonderWorks</strong>\r\nA new attraction at Broadway at the Beach in 2011 is WonderWorks, an indoor interactive amusement park for the mind. Whether you are driving by or walking around Broadway at the Beach, you can\'t help but be amazed at the building that appears to have fallen from the sky and landed upside down. WonderWorks features more than 100 exhibits that allow you to interact, discover and explore! Feel the 84 mph winds of a hurricane, build your own roller coaster or submarine adventure with WonderSimulators, pilot a fighter jet, manuever the controls of a NASA spacecraft or simply have fun with bubbles in the Bubble Lab. WonderWorks is open year round, seven days a week and they suggest you allow 3-4 hours to get the full experience.','Things to Do','','inherit','open','open','','61-revision-9','','','2011-06-03 20:25:53','2011-06-03 20:25:53','',61,'http://oor.wbtaylor.net/index.php/2011/06/61-revision-9/',0,'revision','',0),(133,1,'2011-06-06 18:27:02','2011-06-06 18:27:02','These units feature 2 Bedrooms with either one King bed each or one  with a King and one with two Queen beds. Also, 2 Baths with jacuzzi jets  in the master bath, and either 1 or 2 oceanfront balconies, depending  on the exact floorplan. Modern amenities complement the ultra-modern  styling of these units, featuring full size refrigerator with ice maker,  sitting area and hi-speed internet. Surround yourself with luxury in  this spacious, oceanfront condo.\n\n[gallery link=\"file\" columns=\"4\"]','2 Bedroom Condo','','inherit','open','open','','38-autosave','','','2011-06-06 18:27:02','2011-06-06 18:27:02','',38,'http://oor.wbtaylor.net/index.php/2011/06/38-autosave/',0,'revision','',0),(134,1,'2011-06-03 20:28:45','2011-06-03 20:28:45','<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\"><img class=\"size-full wp-image-128 alignleft\" title=\"Alabama Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\" alt=\"Alabama Theatre\" width=\"130\" height=\"110\" /></a>Alabama Theatre</h4>\r\nVoted the #1 Live Theatre Attraction by Myrtle Beach Visitors featuring the Best in Family Entertainment is located in Barefoot Landing in North Myrtle Beach. The Alabama Theatre long standing performance is \"one The Show\". It has become a go-to show every vacation as the show changes from year to year. one features musical genres such as Country, Gospel, Broadway, Pop and Rock and don\'t forget the comedy! one is family favorite and a show you will never regret. If you visit during the holiday season, you will want to catch the other staple at Alabama Theatre - The South\'s Grandest Christmas Show. This family friendly holiday show features musical performances, dance and plenty of laughter from resident comedian Ricky Mokel. In addition to the regular shows, you will also have the opportunity to see live concerts from chart topping artists such as Kenny Rogers, The Oak Ridge Boys, LeeAnn Rimes and more!\r\n<h4>Alligator Adventure</h4>\r\nLocated adjacent to Barefoot Landing in North Myrtle Beach, Alligator Adventure puts you face to face with reptiles, alligators, crocodiles, lemurs, tropical birds, tigers, beavers and bats...oh my! Their live shows are a favorite among visitors and feature Alligator Live Feedings in the warmer months (Mid-April through Mid-October), Alligator Handling and Lecture in the cooler months and Snake Handling. Alligator Adventure is also home to UTAN - King of Crocs, the largest crocodile in the United States measuring over 20 feet long! Tickets can be purchased online or at the ticket counter and discounts are available including Active Military discounts and a Locals discount. You also receive a 2nd day free with any paid admission, you can\'t afford not to experience Alligator Adventure!\r\n<h4>Barefoot Landing</h4>\r\nBarefoot Landing, sitting along the Intercoastal Waterway, in North Myrtle Beach  is home to the Alabama Theatre, House of Blues, multiple restaurants, more than 100 specialty and retail shops and entertainment! During the summer months you can sit back and enjoy fireworks over the lake and also get up close and personal with exotic animals at the TIGERS Exhibit. SummerFest brings excitement all over Barefoot Landing with parades, magicians, clowns, face painters, stilt walkers, jugglers and more 7 nights a week! Barefoot Landing is conveintently located to both Myrtle Beach and North Myrtle Beach travelers wanting to take it slow and easy....that\'s the beach way, that\'s the Barefoot Way.\r\n<h4>Broadway at the Beach</h4>\r\nIf you\'re looking for one place to go that has everything, Broadway at the Beach is 350 acres of paradise and was voted #1 Attraction in Myrtle Beach according to Trip Advisor. Featuring shopping, dining, nightlife, and entertainment you simply can not go wrong. 2011 brings new excitement and merchants such as WonderWorks Myrtle Beach (an amusement park for your mind), Legends in Concert (Myrtle Beach favorite recently relocated from Surfside Beach) and Bodies Revealed (summer months only). New restaurants feature Carlos \'n Charlies (family friendly Mexican restuarant), Tilted Kilt Pub &amp; Eatery (Scottish themed pub and festive eatery) and Good Time Charley\'s (American featuring sandwiches, hamburgers and more). You can still enjoy your favorites such as IMAX 3D Theatre, MagiQuest, Senor Frogs, Ripley\'s Aquarium, Jimmy Buffet\'s Margaritaville just to name a few. For those who once loved the Myrtle Beach Pavilion be sure to visit the Pavilion Nostaglia Park featuring some of the Pavilion\'s most popular rides including the historical carousel. Year round events and parades are some of the most popular in the area while the Fireworks show over Lake Broadway is a must see during the summer months and on special occasions. Shop, Dine, Dance, Play...It’s Broadwayyy Fun in Myrtle Beach!\r\n<h4>Carolina Opry</h4>\r\nCalvin Gilmore presents four legendary shows all in one legendary theater, The Carolina Opry located at Broadway at the Beach. For 25 years The Carolina Opry has been entertaining everyone who has walked through the door with 2 hours of high-energy music, comedy and dance. Good Vibrations features the best music from the 60s, 70s and 80s in a fast-paced show that will bring you back to the best in American popular music. The Carolina Opry Christmas Special combines the best of the holiday spirit with beloved musical performances, fresh comedy and breathtaking dance. LIGHT See The Music offers a one of a kind view of music with a lazer light show set to a variety of muscial genres. New for 2011 is Beatlemania Now! as seen on Broadway and recaptures everything you loved about The Beatles. Beatlemania Now! will run from June 15-September 4 and showtimes are at 5pm Wed-Sun. If you only see one show...it should be at The Carolina Opry.\r\n<h4>Celebrations Music Theatre</h4>\r\nNew for 2011 and located in Surfside Beach, Celebration Music Theatre features the legendary tribute artist show SUPERSTARZ! Live and the Broadway Celebration Series. They also offer a \"just for kids\" production called \"the Rocktastics!\" that will be performing June 15 - August 6. Don\'t miss their Broadway line-up for 2011 with the Minnie Pearl Gospel Hour, All Shook Up, Hairspray, The Southern Bellers and A Christmas Carol.\r\n<h4>Children\'s Museum of South Carolina</h4>\r\nCome \"Touch, Explore, and Play...\" while learning about your world through the interactive exhibits and programs at The Children\'s Museum of South Carolina. Located near the Myrtle Beach Convention Center, CMSC offers special programs, such as Tales for Tots and Digitalis Planetarium, are extremely popular with the adults and children who visit the Museum. With a wide variety of interactive exhibits kids of all ages are sure to have a fun learning experience.\r\n\r\nCoastal Grand Mall\r\nFeaturing anchor stores Belk, Dillard\'s, JC Penney and Sears; Coastal Grand Mall has quickly become the #1 mall in Myrtle Beach. Featuring more than 100 stores and restaurants, you will find everything you were looking for...and then some! After you have shopped until you drop, sit down and relax in the state of the art 14 screen Cinemark Movie Theater or enjoy something to eat at Abuelo\'s, Texas Roadhouse, Red Robin and more. Treat everyone in the family to something unique from Coastal Grand Mall.\r\n\r\nFamily Kingdom\r\nJust one block from Oceans One Resort you will find Myrtle Beach\'s only Seaside Amusement Park and Oceanfront Water Park, Family Kingdom! Featuring Go Karts, Kiddie Rides, Family Rides, Water Rides and Thrill Rides the entire family can enjoy their time in the park. Best of all, there is NO ADMISSION FEE! New for 2011 is the Picnic Pavilion, a covered dining area that can accommodate up to 100 guests for birthday parties, family reunions or any other group outing.\r\n\r\nHouse of Blues\r\nThe House of Blues Myrtle Beach, located in Barefoot Landing, offers live music on the Sugar Shack Deck and the Concert Hall and delta inspired cuisine in their world famous restuarant. With leading acts from country, rock, top 40 and more your vacation won\'t be complete without the intimate setting with your favorite artist. You can even \"Pass the Line\" and \"Crash the Barricade\" to gain entry first into the concerts. The Gospel Brunch in the restaurant is something that shouldn\'t missed with an amazing buffet and inspiring gospel performances. Where the heart meets the soul®. The ultimate live music and dining experience.\r\n\r\nLegends in Concert\r\nThe World\'s Longest Running Live Tribute Show, Legends in Concert has been a favorite in Myrtle Beach for years and offering a variety of concerts and live shows and many other activities for all ages. Legends in Concert recently relocated a state-of-the-art theater in Broadway at the Beach next to Planet Hollywood!\r\n\r\nThe Market Common\r\nA place where you can experience exceptional shopping and dining in a beautifully-designed village setting. From the nation’s most celebrated names in retail to ice cream and pizza for the kids, and from one-of-a-kind restaurants to the most comfortable movie theater at the beach, The Market Common is always worth your time. The Market Common is also home to multiple festivals all year long, such as Sun Fun Festival, Beerfest, Myrtle Beach Wine Fest, Oktoberfest and more!\r\n\r\nMedieval Times\r\nInside the stone walls of the 11th century-style castle, Medieval Spain comes to life as six knights, donning authentic armor, clash in a jousting tournament for the title of King\'s Champion. Let your imagination take you to Medieval Times.\r\n\r\nMyrtle Beach Boardwalk\r\nThe Myrtle Beach Boardwalk opened in 2010 to rave reviews! The 1.2 mile boardwalk stretches from 14th Avenue North to 2nd Avenue North in the heart of Myrtle Beach. The Myrtle Beach Boardwalk is home to restaurants, shopping, arcades, ice cream shops and more. In the center of it all is the brand new SkyWheel Myrtle Beach and Landshark Bar &amp; Grill which opened to rave reviews in May 2011!  Check out our Myrtle Beach Boardwalk page for more information.\r\n\r\nMyrtle Beach Mall\r\nConveinently located at the corner of Highways 22 and 17, Myrtle Beach Mall continues to provide shoppers with unique stores and value not offered by other malls in the area. Two Belk stores, JCPenney are the long standing anchors and are now accompanied by the only Bass Pro Shops in South Carolina! The mall is also home to Uptown Theater, Home of the Carolina Improv, an improv comedy about living and playing Myrtle Beach. If you aren\'t sure what you need, shopping at Myrtle Beach Mall will help you figure it out.\r\n\r\nMyrtle Beach Pelicans\r\nThe Myrtle Beach Pelicans have been bringing minor league baseball to the beach since 1999 and as of 2011 are the Advanced \'A\' Affiliate of the Texas Rangers. With various promotions and events, including multiple fireworks shows, the Myrtle Beach Pelicans are a family favorite stop on their vacation. Kids are allowed to run the bases following the game and play catch on the field prior to the start of the game.  To add to the fun you always have to be on the lookout for Splash, the official mascot who is usually up to no good; Rally Shark, who adds excitement late in the game and the always popular, Deuce - part bat boy, part ball caddy. As they say...Baseball\'s Even Better at the Beach!\r\n\r\nMyrtle Waves\r\nVoted 1st Place in Best of the Beach in 2010, Myrtle Waves offers over 20 acres of swerves, curves, waves, and chutes and over 1 million gallons of water! Raft rides, Slides and Family Attractions make this a one-stop place for all around family fun in the sun. The younger kids will enjoy Bubble Bay and Saturation Station while the older kids (and adults) have a blast twisting and turning on Racin\' River, Turbo Twisters, Riptide Rockets Night Flight and more. Myrtle Waves is open seasonally (mid-May thru mid-September) and season passes are available.\r\n\r\nNASCAR SpeedPark\r\nIf speed is your thing then the NASCAR SpeedPark is for you, boasting over 26 acres of the industries hottest go-kart tracks, family rides, mini-golf courses, midway games, in addition to family dining in a relaxed and fun environment. Challenge everyone in your family to a little race and a lot of fun. NASCAR SpeedPark is open year round and various tickets pacakages are available.\r\n\r\nPalace Theatre\r\nThe Palace Theatre is located at Broadway at the Beach and is home to the best in live entertainment. Their 2011 lineup includes Hooray for Hollywood which will take you back through 50 years of movie history inlcuding some of the most popular song and dance routines from movies such as Singing in the Rain and Disney\'s \"Jungle Book\". Back by popular demand is The Magical Spirit of Ireland, enjoy sounds from the Irish Tenors and the world renowned Spirit of the Dance dancers. Get your heart pumping and your pulse racing with Le Grand Cirque Adreneline, a 2 hour death defying performance filled with contortionists, tumblers, incredible aerial acts as well as the breathtaking Wheel of Death. Start your holiday season in style with Christmas on Ice, a a one-of-a-kind show that is sure to be an instant family hit as Santa and his helpers take you on a journey around a 40 foot ice skating rink. The Palace Theatre boasts an elegance and beauty unrivaled by any other Theatre in South Carolina.\r\n\r\nPirate\'s Voyage\r\nAll new for 2011, Pirate\'s Voyage is the latest live dinner show from Dolly Parton. After closing the doors on the long time running Dixie Stampede, Dolly Parton has revamped the venue into a pirates dream! Featuring 15 foot deep, 750 thousand gallon  lagoon, and 3 full-sized ships, complete with pirates, battling over who will take the treasure. Just revealed was the live animal show which will feature a sea lion who will perform and even \"arrrrrrrrgh\" multiple times during the show. The dinner menu has been updated as well but still continues with the ever popular soup from Dixie Stampede. Pirate\'s Voyage opens on June 3rd, 2011...it\'s time to get your tickets, matey!\r\n\r\nRipley\'s Aquarium\r\nRipley\'s Aquarium Myrtle Beach can be found at Broadway at the Beach. Sea life is abundant in the aquarium with more than 350 individual species featuring 10,000 exotic sea creatures. Get hands on in the Discovery Center by holding a horseshoe crab or head over to Ray Bay, where you can reach out and touch a stingray as they glide by. See some of the more exotic fish from the Amazon River at Rio Amazon or get a glimpse of color at Rainbow Rock where the brightly colored Indo-Pacific fish swim through a coral reef. A new exhibit for 2011 gets you up close and personal with the ocean\'s most feared predator, Sharks-Perfect Predators features over a dozen species of sharks and interactive exhibits where you can even feel the force of a shark bite! Don\'t let your eyes fool you, another new exhibit for 2011 is Mermaids, a captivating show that will occur 3 times daily followed by meet and greets. If you\'re looking for family fun that is also educational, Ripley\'s Aquarium needs to be on your list!\r\n\r\nSecond Avenue Pier\r\nRecently renovated, Second Avenue Pier, which has been around since 1936, is located on the southern portion of the Myrtle Beach Boardwalk and just steps away from Oceans One Resort. The pier now features the Pier House Restaurant and Pier View Bar &amp; Lounge (open air bar) as well as what the pier has been famous for...fishing! During the summer season, Second Avenue Pier is home to an amazing fireworks display every Wednesday night as part of the Hot Summer Nights on the Boardwalk. Whether you want to relax with some fishing poles, eat breakfast, lunch or dinner, or simply enjoy a tasty beverage in the ocean breeze, Second Avenue Pier is the place to be!\r\n\r\n<strong>SkyWheel Myrtle Beach</strong>\r\nIt\'s tall, it\'s round and it has a light show...yes, the SkyWheel Myrtle is hard to miss along the Myrtle Beach Boardwalk and for all the right reasons.  Standing 200 feet above sea level, you can enjoy a view rarely seen of the Grand Strand in one of 42 temperature controlled glass gondolas. At night a spectacular LED lightshow begins, giving that extra spark to downtown Myrtle Beach. Operating year round, your flight will consist of three rotations and ranges from 8-12 minutes in length and is the first observation wheel of its kind in the United States.\r\n\r\n<strong>Tanger Outlets</strong>\r\nShop guilt free at either Tanger Outlets located in both Myrtle Beach on 501 or on Kings Highway near Myrtle Beach Mall. With stores such as Coach, kate spade, Old Navy, Gap, Levi\'s, Under Armour, Carter\'s, Disney Store and many, many more; you are sure to find something for the entire family, even Dad! Not only will you find the nation’s leading designer and brand name stores with the widest selection but the prices are also backed by the Best Price Guarantee. When you shop at Tanger Outlets, you can shop with confidence while on vacation.\r\n\r\n<strong>WonderWorks</strong>\r\nA new attraction at Broadway at the Beach in 2011 is WonderWorks, an indoor interactive amusement park for the mind. Whether you are driving by or walking around Broadway at the Beach, you can\'t help but be amazed at the building that appears to have fallen from the sky and landed upside down. WonderWorks features more than 100 exhibits that allow you to interact, discover and explore! Feel the 84 mph winds of a hurricane, build your own roller coaster or submarine adventure with WonderSimulators, pilot a fighter jet, manuever the controls of a NASA spacecraft or simply have fun with bubbles in the Bubble Lab. WonderWorks is open year round, seven days a week and they suggest you allow 3-4 hours to get the full experience.','Things to Do','','inherit','open','open','','61-revision-10','','','2011-06-03 20:28:45','2011-06-03 20:28:45','',61,'http://oor.wbtaylor.net/index.php/2011/06/61-revision-10/',0,'revision','',0),(136,1,'2011-06-06 17:29:05','2011-06-06 17:29:05','<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\"><img class=\"size-full wp-image-128 alignleft\" title=\"Alabama Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\" alt=\"Alabama Theatre\" width=\"130\" height=\"110\" /></a>Alabama Theatre</h4>\r\nVoted the #1 Live Theatre Attraction by Myrtle Beach Visitors featuring the Best in Family Entertainment is located in Barefoot Landing in North Myrtle Beach. The Alabama Theatre long standing performance is \"one The Show\". It has become a go-to show every vacation as the show changes from year to year. one features musical genres such as Country, Gospel, Broadway, Pop and Rock and don\'t forget the comedy! one is family favorite and a show you will never regret. If you visit during the holiday season, you will want to catch the other staple at Alabama Theatre - The South\'s Grandest Christmas Show. This family friendly holiday show features musical performances, dance and plenty of laughter from resident comedian Ricky Mokel. In addition to the regular shows, you will also have the opportunity to see live concerts from chart topping artists such as Kenny Rogers, The Oak Ridge Boys, LeeAnn Rimes and more!\r\n<h4>Alligator Adventure</h4>\r\nLocated adjacent to Barefoot Landing in North Myrtle Beach, Alligator Adventure puts you face to face with reptiles, alligators, crocodiles, lemurs, tropical birds, tigers, beavers and bats...oh my! Their live shows are a favorite among visitors and feature Alligator Live Feedings in the warmer months (Mid-April through Mid-October), Alligator Handling and Lecture in the cooler months and Snake Handling. Alligator Adventure is also home to UTAN - King of Crocs, the largest crocodile in the United States measuring over 20 feet long! Tickets can be purchased online or at the ticket counter and discounts are available including Active Military discounts and a Locals discount. You also receive a 2nd day free with any paid admission, you can\'t afford not to experience Alligator Adventure!\r\n<h4>Barefoot Landing</h4>\r\nBarefoot Landing, sitting along the Intercoastal Waterway, in North Myrtle Beach  is home to the Alabama Theatre, House of Blues, multiple restaurants, more than 100 specialty and retail shops and entertainment! During the summer months you can sit back and enjoy fireworks over the lake and also get up close and personal with exotic animals at the TIGERS Exhibit. SummerFest brings excitement all over Barefoot Landing with parades, magicians, clowns, face painters, stilt walkers, jugglers and more 7 nights a week! Barefoot Landing is conveintently located to both Myrtle Beach and North Myrtle Beach travelers wanting to take it slow and easy....that\'s the beach way, that\'s the Barefoot Way.\r\n<h4>Broadway at the Beach</h4>\r\nIf you\'re looking for one place to go that has everything, Broadway at the Beach is 350 acres of paradise and was voted #1 Attraction in Myrtle Beach according to Trip Advisor. Featuring shopping, dining, nightlife, and entertainment you simply can not go wrong. 2011 brings new excitement and merchants such as WonderWorks Myrtle Beach (an amusement park for your mind), Legends in Concert (Myrtle Beach favorite recently relocated from Surfside Beach) and Bodies Revealed (summer months only). New restaurants feature Carlos \'n Charlies (family friendly Mexican restuarant), Tilted Kilt Pub &amp; Eatery (Scottish themed pub and festive eatery) and Good Time Charley\'s (American featuring sandwiches, hamburgers and more). You can still enjoy your favorites such as IMAX 3D Theatre, MagiQuest, Senor Frogs, Ripley\'s Aquarium, Jimmy Buffet\'s Margaritaville just to name a few. For those who once loved the Myrtle Beach Pavilion be sure to visit the Pavilion Nostaglia Park featuring some of the Pavilion\'s most popular rides including the historical carousel. Year round events and parades are some of the most popular in the area while the Fireworks show over Lake Broadway is a must see during the summer months and on special occasions. Shop, Dine, Dance, Play...It’s Broadwayyy Fun in Myrtle Beach!\r\n<h4>Carolina Opry</h4>\r\nCalvin Gilmore presents four legendary shows all in one legendary theater, The Carolina Opry located at Broadway at the Beach. For 25 years The Carolina Opry has been entertaining everyone who has walked through the door with 2 hours of high-energy music, comedy and dance. Good Vibrations features the best music from the 60s, 70s and 80s in a fast-paced show that will bring you back to the best in American popular music. The Carolina Opry Christmas Special combines the best of the holiday spirit with beloved musical performances, fresh comedy and breathtaking dance. LIGHT See The Music offers a one of a kind view of music with a lazer light show set to a variety of muscial genres. New for 2011 is Beatlemania Now! as seen on Broadway and recaptures everything you loved about The Beatles. Beatlemania Now! will run from June 15-September 4 and showtimes are at 5pm Wed-Sun. If you only see one show...it should be at The Carolina Opry.\r\n<h4>Celebrations Music Theatre</h4>\r\nNew for 2011 and located in Surfside Beach, Celebration Music Theatre features the legendary tribute artist show SUPERSTARZ! Live and the Broadway Celebration Series. They also offer a \"just for kids\" production called \"the Rocktastics!\" that will be performing June 15 - August 6. Don\'t miss their Broadway line-up for 2011 with the Minnie Pearl Gospel Hour, All Shook Up, Hairspray, The Southern Bellers and A Christmas Carol.\r\n<h4>Children\'s Museum of South Carolina</h4>\r\nCome \"Touch, Explore, and Play...\" while learning about your world through the interactive exhibits and programs at The Children\'s Museum of South Carolina. Located near the Myrtle Beach Convention Center, CMSC offers special programs, such as Tales for Tots and Digitalis Planetarium, are extremely popular with the adults and children who visit the Museum. With a wide variety of interactive exhibits kids of all ages are sure to have a fun learning experience.\r\n<h4>Coastal Grand Mall</h4>\r\nFeaturing anchor stores Belk, Dillard\'s, JC Penney and Sears; Coastal Grand Mall has quickly become the #1 mall in Myrtle Beach. Featuring more than 100 stores and restaurants, you will find everything you were looking for...and then some! After you have shopped until you drop, sit down and relax in the state of the art 14 screen Cinemark Movie Theater or enjoy something to eat at Abuelo\'s, Texas Roadhouse, Red Robin and more. Treat everyone in the family to something unique from Coastal Grand Mall.\r\n<h4>Family Kingdom Amusement Park</h4>\r\nJust one block from Oceans One Resort you will find Myrtle Beach\'s only Seaside Amusement Park and Oceanfront Water Park, Family Kingdom! Featuring Go Karts, Kiddie Rides, Family Rides, Water Rides and Thrill Rides the entire family can enjoy their time in the park. Best of all, there is NO ADMISSION FEE! New for 2011 is the Picnic Pavilion, a covered dining area that can accommodate up to 100 guests for birthday parties, family reunions or any other group outing.\r\n<h4>House of Blues</h4>\r\nThe House of Blues Myrtle Beach, located in Barefoot Landing, offers live music on the Sugar Shack Deck and the Concert Hall and delta inspired cuisine in their world famous restuarant. With leading acts from country, rock, top 40 and more your vacation won\'t be complete without the intimate setting with your favorite artist. You can even \"Pass the Line\" and \"Crash the Barricade\" to gain entry first into the concerts. The Gospel Brunch in the restaurant is something that shouldn\'t missed with an amazing buffet and inspiring gospel performances. Where the heart meets the soul®. The ultimate live music and dining experience.\r\n<h4>Legends in Concert</h4>\r\nThe World\'s Longest Running Live Tribute Show, Legends in Concert has been a favorite in Myrtle Beach for years and offering a variety of concerts and live shows and many other activities for all ages. Legends in Concert recently relocated a state-of-the-art theater in Broadway at the Beach next to Planet Hollywood!\r\n<h4>The Market Common</h4>\r\nA place where you can experience exceptional shopping and dining in a beautifully-designed village setting. From the nation’s most celebrated names in retail to ice cream and pizza for the kids, and from one-of-a-kind restaurants to the most comfortable movie theater at the beach, The Market Common is always worth your time. The Market Common is also home to multiple festivals all year long, such as Sun Fun Festival, Beerfest, Myrtle Beach Wine Fest, Oktoberfest and more!\r\n<h4>Medieval Times</h4>\r\nInside the stone walls of the 11th century-style castle, Medieval Spain comes to life as six knights, donning authentic armor, clash in a jousting tournament for the title of King\'s Champion. Let your imagination take you to Medieval Times.\r\n<h4>Myrtle Beach Boardwalk</h4>\r\nThe Myrtle Beach Boardwalk opened in 2010 to rave reviews! The 1.2 mile boardwalk stretches from 14th Avenue North to 2nd Avenue North in the heart of Myrtle Beach. The Myrtle Beach Boardwalk is home to restaurants, shopping, arcades, ice cream shops and more. In the center of it all is the brand new SkyWheel Myrtle Beach and Landshark Bar &amp; Grill which opened to rave reviews in May 2011!  Check out our <a title=\"Boardwalk\" href=\"http://oor.wbtaylor.net/index.php/boardwalk/\">Myrtle Beach Boardwalk page</a> for more information.\r\n<h4>Myrtle Beach Mall</h4>\r\nConveinently located at the corner of Highways 22 and 17, Myrtle Beach Mall continues to provide shoppers with unique stores and value not offered by other malls in the area. Two Belk stores, JCPenney are the long standing anchors and are now accompanied by the only Bass Pro Shops in South Carolina! The mall is also home to Uptown Theater, Home of the Carolina Improv, an improv comedy about living and playing Myrtle Beach. If you aren\'t sure what you need, shopping at Myrtle Beach Mall will help you figure it out.\r\n<h4>Myrtle Beach Pelicans</h4>\r\nThe Myrtle Beach Pelicans have been bringing minor league baseball to the beach since 1999 and as of 2011 are the Advanced \'A\' Affiliate of the Texas Rangers. With various promotions and events, including multiple fireworks shows, the Myrtle Beach Pelicans are a family favorite stop on their vacation. Kids are allowed to run the bases following the game and play catch on the field prior to the start of the game.  To add to the fun you always have to be on the lookout for Splash, the official mascot who is usually up to no good; Rally Shark, who adds excitement late in the game and the always popular, Deuce - part bat boy, part ball caddy. As they say...Baseball\'s Even Better at the Beach!\r\n<h4>Myrtle Waves</h4>\r\nVoted 1st Place in Best of the Beach in 2010, Myrtle Waves offers over 20 acres of swerves, curves, waves, and chutes and over 1 million gallons of water! Raft rides, Slides and Family Attractions make this a one-stop place for all around family fun in the sun. The younger kids will enjoy Bubble Bay and Saturation Station while the older kids (and adults) have a blast twisting and turning on Racin\' River, Turbo Twisters, Riptide Rockets Night Flight and more. Myrtle Waves is open seasonally (mid-May thru mid-September) and season passes are available.\r\n<h4>NASCAR SpeedPark</h4>\r\nIf speed is your thing then the NASCAR SpeedPark is for you, boasting over 26 acres of the industries hottest go-kart tracks, family rides, mini-golf courses, midway games, in addition to family dining in a relaxed and fun environment. Challenge everyone in your family to a little race and a lot of fun. NASCAR SpeedPark is open year round and various tickets pacakages are available.\r\n<h4>Palace Theatre</h4>\r\nThe Palace Theatre is located at Broadway at the Beach and is home to the best in live entertainment. Their 2011 lineup includes Hooray for Hollywood which will take you back through 50 years of movie history inlcuding some of the most popular song and dance routines from movies such as Singing in the Rain and Disney\'s \"Jungle Book\". Back by popular demand is The Magical Spirit of Ireland, enjoy sounds from the Irish Tenors and the world renowned Spirit of the Dance dancers. Get your heart pumping and your pulse racing with Le Grand Cirque Adreneline, a 2 hour death defying performance filled with contortionists, tumblers, incredible aerial acts as well as the breathtaking Wheel of Death. Start your holiday season in style with Christmas on Ice, a a one-of-a-kind show that is sure to be an instant family hit as Santa and his helpers take you on a journey around a 40 foot ice skating rink. The Palace Theatre boasts an elegance and beauty unrivaled by any other Theatre in South Carolina.\r\n<h4>Pirate\'s Voyage</h4>\r\nAll new for 2011, Pirate\'s Voyage is the latest live dinner show from Dolly Parton. After closing the doors on the long time running Dixie Stampede, Dolly Parton has revamped the venue into a pirates dream! Featuring 15 foot deep, 750 thousand gallon  lagoon, and 3 full-sized ships, complete with pirates, battling over who will take the treasure. Just revealed was the live animal show which will feature a sea lion who will perform and even \"arrrrrrrrgh\" multiple times during the show. The dinner menu has been updated as well but still continues with the ever popular soup from Dixie Stampede. Pirate\'s Voyage opens on June 3rd, 2011...it\'s time to get your tickets, matey!\r\n<h4>Ripley\'s Aquarium</h4>\r\nRipley\'s Aquarium Myrtle Beach can be found at Broadway at the Beach. Sea life is abundant in the aquarium with more than 350 individual species featuring 10,000 exotic sea creatures. Get hands on in the Discovery Center by holding a horseshoe crab or head over to Ray Bay, where you can reach out and touch a stingray as they glide by. See some of the more exotic fish from the Amazon River at Rio Amazon or get a glimpse of color at Rainbow Rock where the brightly colored Indo-Pacific fish swim through a coral reef. A new exhibit for 2011 gets you up close and personal with the ocean\'s most feared predator, Sharks-Perfect Predators features over a dozen species of sharks and interactive exhibits where you can even feel the force of a shark bite! Don\'t let your eyes fool you, another new exhibit for 2011 is Mermaids, a captivating show that will occur 3 times daily followed by meet and greets. If you\'re looking for family fun that is also educational, Ripley\'s Aquarium needs to be on your list!\r\n<h4>Second Avenue Pier</h4>\r\nRecently renovated, Second Avenue Pier, which has been around since 1936, is located on the southern portion of the Myrtle Beach Boardwalk and just steps away from Oceans One Resort. The pier now features the Pier House Restaurant and Pier View Bar &amp; Lounge (open air bar) as well as what the pier has been famous for...fishing! During the summer season, Second Avenue Pier is home to an amazing fireworks display every Wednesday night as part of the Hot Summer Nights on the Boardwalk. Whether you want to relax with some fishing poles, eat breakfast, lunch or dinner, or simply enjoy a tasty beverage in the ocean breeze, Second Avenue Pier is the place to be!\r\n<h4>SkyWheel Myrtle Beach</h4>\r\n<strong></strong>It\'s tall, it\'s round and it has a light show...yes, the SkyWheel Myrtle is hard to miss along the Myrtle Beach Boardwalk and for all the right reasons.  Standing 200 feet above sea level, you can enjoy a view rarely seen of the Grand Strand in one of 42 temperature controlled glass gondolas. At night a spectacular LED lightshow begins, giving that extra spark to downtown Myrtle Beach. Operating year round, your flight will consist of three rotations and ranges from 8-12 minutes in length and is the first observation wheel of its kind in the United States.\r\n<h4>Tanger Outlets</h4>\r\n<strong></strong>Shop guilt free at either Tanger Outlets located in both Myrtle Beach on 501 or on Kings Highway near Myrtle Beach Mall. With stores such as Coach, kate spade, Old Navy, Gap, Levi\'s, Under Armour, Carter\'s, Disney Store and many, many more; you are sure to find something for the entire family, even Dad! Not only will you find the nation’s leading designer and brand name stores with the widest selection but the prices are also backed by the Best Price Guarantee. When you shop at Tanger Outlets, you can shop with confidence while on vacation.\r\n<h4>WonderWorks</h4>\r\n<strong></strong>A new attraction at Broadway at the Beach in 2011 is WonderWorks, an indoor interactive amusement park for the mind. Whether you are driving by or walking around Broadway at the Beach, you can\'t help but be amazed at the building that appears to have fallen from the sky and landed upside down. WonderWorks features more than 100 exhibits that allow you to interact, discover and explore! Feel the 84 mph winds of a hurricane, build your own roller coaster or submarine adventure with WonderSimulators, pilot a fighter jet, manuever the controls of a NASA spacecraft or simply have fun with bubbles in the Bubble Lab. WonderWorks is open year round, seven days a week and they suggest you allow 3-4 hours to get the full experience.','Things to Do','','inherit','open','open','','61-revision-11','','','2011-06-06 17:29:05','2011-06-06 17:29:05','',61,'http://oor.wbtaylor.net/index.php/2011/06/61-revision-11/',0,'revision','',0),(137,1,'2011-06-06 17:49:24','2011-06-06 17:49:24','<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\"><img class=\"size-full wp-image-128 alignleft\" title=\"Alabama Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\" alt=\"Alabama Theatre\" width=\"130\" height=\"110\" /></a>Alabama Theatre</h4>\r\nVoted the #1 Live Theatre Attraction by Myrtle Beach Visitors featuring the Best in Family Entertainment is located in Barefoot Landing in North Myrtle Beach. The Alabama Theatre long standing performance is \"one The Show\". It has become a go-to show every vacation as the show changes from year to year. one features musical genres such as Country, Gospel, Broadway, Pop and Rock and don\'t forget the comedy! one is family favorite and a show you will never regret. If you visit during the holiday season, you will want to catch the other staple at Alabama Theatre - The South\'s Grandest Christmas Show. This family friendly holiday show features musical performances, dance and plenty of laughter from resident comedian Ricky Mokel. In addition to the regular shows, you will also have the opportunity to see live concerts from chart topping artists such as Kenny Rogers, The Oak Ridge Boys, LeeAnn Rimes and more!\r\n<h4>Alligator Adventure</h4>\r\nLocated adjacent to Barefoot Landing in North Myrtle Beach, Alligator Adventure puts you face to face with reptiles, alligators, crocodiles, lemurs, tropical birds, tigers, beavers and bats...oh my! Their live shows are a favorite among visitors and feature Alligator Live Feedings in the warmer months (Mid-April through Mid-October), Alligator Handling and Lecture in the cooler months and Snake Handling. Alligator Adventure is also home to UTAN - King of Crocs, the largest crocodile in the United States measuring over 20 feet long! Tickets can be purchased online or at the ticket counter and discounts are available including Active Military discounts and a Locals discount. You also receive a 2nd day free with any paid admission, you can\'t afford not to experience Alligator Adventure!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/Barefoot-Landing.jpg\"><img class=\"alignleft size-full wp-image-135\" title=\"Barefoot Landing\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/Barefoot-Landing.jpg\" alt=\"Barefoot Landing\" width=\"181\" height=\"127\" /></a>Barefoot Landing</h4>\r\nBarefoot Landing, sitting along the Intercoastal Waterway, in North Myrtle Beach  is home to the Alabama Theatre, House of Blues, multiple restaurants, more than 100 specialty and retail shops and entertainment! During the summer months you can sit back and enjoy fireworks over the lake and also get up close and personal with exotic animals at the TIGERS Exhibit. SummerFest brings excitement all over Barefoot Landing with parades, magicians, clowns, face painters, stilt walkers, jugglers and more 7 nights a week! Barefoot Landing is conveintently located to both Myrtle Beach and North Myrtle Beach travelers wanting to take it slow and easy....that\'s the beach way, that\'s the Barefoot Way.\r\n<h4>Broadway at the Beach</h4>\r\nIf you\'re looking for one place to go that has everything, Broadway at the Beach is 350 acres of paradise and was voted #1 Attraction in Myrtle Beach according to Trip Advisor. Featuring shopping, dining, nightlife, and entertainment you simply can not go wrong. 2011 brings new excitement and merchants such as WonderWorks Myrtle Beach (an amusement park for your mind), Legends in Concert (Myrtle Beach favorite recently relocated from Surfside Beach) and Bodies Revealed (summer months only). New restaurants feature Carlos \'n Charlies (family friendly Mexican restuarant), Tilted Kilt Pub &amp; Eatery (Scottish themed pub and festive eatery) and Good Time Charley\'s (American featuring sandwiches, hamburgers and more). You can still enjoy your favorites such as IMAX 3D Theatre, MagiQuest, Senor Frogs, Ripley\'s Aquarium, Jimmy Buffet\'s Margaritaville just to name a few. For those who once loved the Myrtle Beach Pavilion be sure to visit the Pavilion Nostaglia Park featuring some of the Pavilion\'s most popular rides including the historical carousel. Year round events and parades are some of the most popular in the area while the Fireworks show over Lake Broadway is a must see during the summer months and on special occasions. Shop, Dine, Dance, Play...It’s Broadwayyy Fun in Myrtle Beach!\r\n<h4>Carolina Opry</h4>\r\nCalvin Gilmore presents four legendary shows all in one legendary theater, The Carolina Opry located at Broadway at the Beach. For 25 years The Carolina Opry has been entertaining everyone who has walked through the door with 2 hours of high-energy music, comedy and dance. Good Vibrations features the best music from the 60s, 70s and 80s in a fast-paced show that will bring you back to the best in American popular music. The Carolina Opry Christmas Special combines the best of the holiday spirit with beloved musical performances, fresh comedy and breathtaking dance. LIGHT See The Music offers a one of a kind view of music with a lazer light show set to a variety of muscial genres. New for 2011 is Beatlemania Now! as seen on Broadway and recaptures everything you loved about The Beatles. Beatlemania Now! will run from June 15-September 4 and showtimes are at 5pm Wed-Sun. If you only see one show...it should be at The Carolina Opry.\r\n<h4>Celebrations Music Theatre</h4>\r\nNew for 2011 and located in Surfside Beach, Celebration Music Theatre features the legendary tribute artist show SUPERSTARZ! Live and the Broadway Celebration Series. They also offer a \"just for kids\" production called \"the Rocktastics!\" that will be performing June 15 - August 6. Don\'t miss their Broadway line-up for 2011 with the Minnie Pearl Gospel Hour, All Shook Up, Hairspray, The Southern Bellers and A Christmas Carol.\r\n<h4>Children\'s Museum of South Carolina</h4>\r\nCome \"Touch, Explore, and Play...\" while learning about your world through the interactive exhibits and programs at The Children\'s Museum of South Carolina. Located near the Myrtle Beach Convention Center, CMSC offers special programs, such as Tales for Tots and Digitalis Planetarium, are extremely popular with the adults and children who visit the Museum. With a wide variety of interactive exhibits kids of all ages are sure to have a fun learning experience.\r\n<h4>Coastal Grand Mall</h4>\r\nFeaturing anchor stores Belk, Dillard\'s, JC Penney and Sears; Coastal Grand Mall has quickly become the #1 mall in Myrtle Beach. Featuring more than 100 stores and restaurants, you will find everything you were looking for...and then some! After you have shopped until you drop, sit down and relax in the state of the art 14 screen Cinemark Movie Theater or enjoy something to eat at Abuelo\'s, Texas Roadhouse, Red Robin and more. Treat everyone in the family to something unique from Coastal Grand Mall.\r\n<h4>Family Kingdom Amusement Park</h4>\r\nJust one block from Oceans One Resort you will find Myrtle Beach\'s only Seaside Amusement Park and Oceanfront Water Park, Family Kingdom! Featuring Go Karts, Kiddie Rides, Family Rides, Water Rides and Thrill Rides the entire family can enjoy their time in the park. Best of all, there is NO ADMISSION FEE! New for 2011 is the Picnic Pavilion, a covered dining area that can accommodate up to 100 guests for birthday parties, family reunions or any other group outing.\r\n<h4>House of Blues</h4>\r\nThe House of Blues Myrtle Beach, located in Barefoot Landing, offers live music on the Sugar Shack Deck and the Concert Hall and delta inspired cuisine in their world famous restuarant. With leading acts from country, rock, top 40 and more your vacation won\'t be complete without the intimate setting with your favorite artist. You can even \"Pass the Line\" and \"Crash the Barricade\" to gain entry first into the concerts. The Gospel Brunch in the restaurant is something that shouldn\'t missed with an amazing buffet and inspiring gospel performances. Where the heart meets the soul®. The ultimate live music and dining experience.\r\n<h4>Legends in Concert</h4>\r\nThe World\'s Longest Running Live Tribute Show, Legends in Concert has been a favorite in Myrtle Beach for years and offering a variety of concerts and live shows and many other activities for all ages. Legends in Concert recently relocated a state-of-the-art theater in Broadway at the Beach next to Planet Hollywood!\r\n<h4>The Market Common</h4>\r\nA place where you can experience exceptional shopping and dining in a beautifully-designed village setting. From the nation’s most celebrated names in retail to ice cream and pizza for the kids, and from one-of-a-kind restaurants to the most comfortable movie theater at the beach, The Market Common is always worth your time. The Market Common is also home to multiple festivals all year long, such as Sun Fun Festival, Beerfest, Myrtle Beach Wine Fest, Oktoberfest and more!\r\n<h4>Medieval Times</h4>\r\nInside the stone walls of the 11th century-style castle, Medieval Spain comes to life as six knights, donning authentic armor, clash in a jousting tournament for the title of King\'s Champion. Let your imagination take you to Medieval Times.\r\n<h4>Myrtle Beach Boardwalk</h4>\r\nThe Myrtle Beach Boardwalk opened in 2010 to rave reviews! The 1.2 mile boardwalk stretches from 14th Avenue North to 2nd Avenue North in the heart of Myrtle Beach. The Myrtle Beach Boardwalk is home to restaurants, shopping, arcades, ice cream shops and more. In the center of it all is the brand new SkyWheel Myrtle Beach and Landshark Bar &amp; Grill which opened to rave reviews in May 2011!  Check out our <a title=\"Boardwalk\" href=\"http://oor.wbtaylor.net/index.php/boardwalk/\">Myrtle Beach Boardwalk page</a> for more information.\r\n<h4>Myrtle Beach Mall</h4>\r\nConveinently located at the corner of Highways 22 and 17, Myrtle Beach Mall continues to provide shoppers with unique stores and value not offered by other malls in the area. Two Belk stores, JCPenney are the long standing anchors and are now accompanied by the only Bass Pro Shops in South Carolina! The mall is also home to Uptown Theater, Home of the Carolina Improv, an improv comedy about living and playing Myrtle Beach. If you aren\'t sure what you need, shopping at Myrtle Beach Mall will help you figure it out.\r\n<h4>Myrtle Beach Pelicans</h4>\r\nThe Myrtle Beach Pelicans have been bringing minor league baseball to the beach since 1999 and as of 2011 are the Advanced \'A\' Affiliate of the Texas Rangers. With various promotions and events, including multiple fireworks shows, the Myrtle Beach Pelicans are a family favorite stop on their vacation. Kids are allowed to run the bases following the game and play catch on the field prior to the start of the game.  To add to the fun you always have to be on the lookout for Splash, the official mascot who is usually up to no good; Rally Shark, who adds excitement late in the game and the always popular, Deuce - part bat boy, part ball caddy. As they say...Baseball\'s Even Better at the Beach!\r\n<h4>Myrtle Waves</h4>\r\nVoted 1st Place in Best of the Beach in 2010, Myrtle Waves offers over 20 acres of swerves, curves, waves, and chutes and over 1 million gallons of water! Raft rides, Slides and Family Attractions make this a one-stop place for all around family fun in the sun. The younger kids will enjoy Bubble Bay and Saturation Station while the older kids (and adults) have a blast twisting and turning on Racin\' River, Turbo Twisters, Riptide Rockets Night Flight and more. Myrtle Waves is open seasonally (mid-May thru mid-September) and season passes are available.\r\n<h4>NASCAR SpeedPark</h4>\r\nIf speed is your thing then the NASCAR SpeedPark is for you, boasting over 26 acres of the industries hottest go-kart tracks, family rides, mini-golf courses, midway games, in addition to family dining in a relaxed and fun environment. Challenge everyone in your family to a little race and a lot of fun. NASCAR SpeedPark is open year round and various tickets pacakages are available.\r\n<h4>Palace Theatre</h4>\r\nThe Palace Theatre is located at Broadway at the Beach and is home to the best in live entertainment. Their 2011 lineup includes Hooray for Hollywood which will take you back through 50 years of movie history inlcuding some of the most popular song and dance routines from movies such as Singing in the Rain and Disney\'s \"Jungle Book\". Back by popular demand is The Magical Spirit of Ireland, enjoy sounds from the Irish Tenors and the world renowned Spirit of the Dance dancers. Get your heart pumping and your pulse racing with Le Grand Cirque Adreneline, a 2 hour death defying performance filled with contortionists, tumblers, incredible aerial acts as well as the breathtaking Wheel of Death. Start your holiday season in style with Christmas on Ice, a a one-of-a-kind show that is sure to be an instant family hit as Santa and his helpers take you on a journey around a 40 foot ice skating rink. The Palace Theatre boasts an elegance and beauty unrivaled by any other Theatre in South Carolina.\r\n<h4>Pirate\'s Voyage</h4>\r\nAll new for 2011, Pirate\'s Voyage is the latest live dinner show from Dolly Parton. After closing the doors on the long time running Dixie Stampede, Dolly Parton has revamped the venue into a pirates dream! Featuring 15 foot deep, 750 thousand gallon  lagoon, and 3 full-sized ships, complete with pirates, battling over who will take the treasure. Just revealed was the live animal show which will feature a sea lion who will perform and even \"arrrrrrrrgh\" multiple times during the show. The dinner menu has been updated as well but still continues with the ever popular soup from Dixie Stampede. Pirate\'s Voyage opens on June 3rd, 2011...it\'s time to get your tickets, matey!\r\n<h4>Ripley\'s Aquarium</h4>\r\nRipley\'s Aquarium Myrtle Beach can be found at Broadway at the Beach. Sea life is abundant in the aquarium with more than 350 individual species featuring 10,000 exotic sea creatures. Get hands on in the Discovery Center by holding a horseshoe crab or head over to Ray Bay, where you can reach out and touch a stingray as they glide by. See some of the more exotic fish from the Amazon River at Rio Amazon or get a glimpse of color at Rainbow Rock where the brightly colored Indo-Pacific fish swim through a coral reef. A new exhibit for 2011 gets you up close and personal with the ocean\'s most feared predator, Sharks-Perfect Predators features over a dozen species of sharks and interactive exhibits where you can even feel the force of a shark bite! Don\'t let your eyes fool you, another new exhibit for 2011 is Mermaids, a captivating show that will occur 3 times daily followed by meet and greets. If you\'re looking for family fun that is also educational, Ripley\'s Aquarium needs to be on your list!\r\n<h4>Second Avenue Pier</h4>\r\nRecently renovated, Second Avenue Pier, which has been around since 1936, is located on the southern portion of the Myrtle Beach Boardwalk and just steps away from Oceans One Resort. The pier now features the Pier House Restaurant and Pier View Bar &amp; Lounge (open air bar) as well as what the pier has been famous for...fishing! During the summer season, Second Avenue Pier is home to an amazing fireworks display every Wednesday night as part of the Hot Summer Nights on the Boardwalk. Whether you want to relax with some fishing poles, eat breakfast, lunch or dinner, or simply enjoy a tasty beverage in the ocean breeze, Second Avenue Pier is the place to be!\r\n<h4>SkyWheel Myrtle Beach</h4>\r\n<strong></strong>It\'s tall, it\'s round and it has a light show...yes, the SkyWheel Myrtle is hard to miss along the Myrtle Beach Boardwalk and for all the right reasons.  Standing 200 feet above sea level, you can enjoy a view rarely seen of the Grand Strand in one of 42 temperature controlled glass gondolas. At night a spectacular LED lightshow begins, giving that extra spark to downtown Myrtle Beach. Operating year round, your flight will consist of three rotations and ranges from 8-12 minutes in length and is the first observation wheel of its kind in the United States.\r\n<h4>Tanger Outlets</h4>\r\n<strong></strong>Shop guilt free at either Tanger Outlets located in both Myrtle Beach on 501 or on Kings Highway near Myrtle Beach Mall. With stores such as Coach, kate spade, Old Navy, Gap, Levi\'s, Under Armour, Carter\'s, Disney Store and many, many more; you are sure to find something for the entire family, even Dad! Not only will you find the nation’s leading designer and brand name stores with the widest selection but the prices are also backed by the Best Price Guarantee. When you shop at Tanger Outlets, you can shop with confidence while on vacation.\r\n<h4>WonderWorks</h4>\r\n<strong></strong>A new attraction at Broadway at the Beach in 2011 is WonderWorks, an indoor interactive amusement park for the mind. Whether you are driving by or walking around Broadway at the Beach, you can\'t help but be amazed at the building that appears to have fallen from the sky and landed upside down. WonderWorks features more than 100 exhibits that allow you to interact, discover and explore! Feel the 84 mph winds of a hurricane, build your own roller coaster or submarine adventure with WonderSimulators, pilot a fighter jet, manuever the controls of a NASA spacecraft or simply have fun with bubbles in the Bubble Lab. WonderWorks is open year round, seven days a week and they suggest you allow 3-4 hours to get the full experience.','Things to Do','','inherit','open','open','','61-revision-12','','','2011-06-06 17:49:24','2011-06-06 17:49:24','',61,'http://oor.wbtaylor.net/index.php/2011/06/61-revision-12/',0,'revision','',0),(138,1,'2011-06-06 17:52:26','2011-06-06 17:52:26','<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\"><img class=\"size-full wp-image-128 alignleft\" title=\"Alabama Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\" alt=\"Alabama Theatre\" width=\"130\" height=\"110\" /></a>Alabama Theatre</h4>\r\nVoted the #1 Live Theatre Attraction by Myrtle Beach Visitors featuring the Best in Family Entertainment is located in Barefoot Landing in North Myrtle Beach. The Alabama Theatre long standing performance is \"one The Show\". It has become a go-to show every vacation as the show changes from year to year. one features musical genres such as Country, Gospel, Broadway, Pop and Rock and don\'t forget the comedy! one is family favorite and a show you will never regret. If you visit during the holiday season, you will want to catch the other staple at Alabama Theatre - The South\'s Grandest Christmas Show. This family friendly holiday show features musical performances, dance and plenty of laughter from resident comedian Ricky Mokel. In addition to the regular shows, you will also have the opportunity to see live concerts from chart topping artists such as Kenny Rogers, The Oak Ridge Boys, LeeAnn Rimes and more!\r\n<h4>Alligator Adventure</h4>\r\nLocated adjacent to Barefoot Landing in North Myrtle Beach, Alligator Adventure puts you face to face with reptiles, alligators, crocodiles, lemurs, tropical birds, tigers, beavers and bats...oh my! Their live shows are a favorite among visitors and feature Alligator Live Feedings in the warmer months (Mid-April through Mid-October), Alligator Handling and Lecture in the cooler months and Snake Handling. Alligator Adventure is also home to UTAN - King of Crocs, the largest crocodile in the United States measuring over 20 feet long! Tickets can be purchased online or at the ticket counter and discounts are available including Active Military discounts and a Locals discount. You also receive a 2nd day free with any paid admission, you can\'t afford not to experience Alligator Adventure!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/Barefoot-Landing.jpg\"><img class=\"size-full wp-image-135 alignleft\" title=\"Barefoot Landing\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/Barefoot-Landing.jpg\" alt=\"Barefoot Landing\" width=\"109\" height=\"76\" /></a>Barefoot Landing</h4>\r\nBarefoot Landing, sitting along the Intercoastal Waterway, in North Myrtle Beach  is home to the Alabama Theatre, House of Blues, multiple restaurants, more than 100 specialty and retail shops and entertainment! During the summer months you can sit back and enjoy fireworks over the lake and also get up close and personal with exotic animals at the TIGERS Exhibit. SummerFest brings excitement all over Barefoot Landing with parades, magicians, clowns, face painters, stilt walkers, jugglers and more 7 nights a week! Barefoot Landing is conveintently located to both Myrtle Beach and North Myrtle Beach travelers wanting to take it slow and easy....that\'s the beach way, that\'s the Barefoot Way.\r\n<h4>Broadway at the Beach</h4>\r\nIf you\'re looking for one place to go that has everything, Broadway at the Beach is 350 acres of paradise and was voted #1 Attraction in Myrtle Beach according to Trip Advisor. Featuring shopping, dining, nightlife, and entertainment you simply can not go wrong. 2011 brings new excitement and merchants such as WonderWorks Myrtle Beach (an amusement park for your mind), Legends in Concert (Myrtle Beach favorite recently relocated from Surfside Beach) and Bodies Revealed (summer months only). New restaurants feature Carlos \'n Charlies (family friendly Mexican restuarant), Tilted Kilt Pub &amp; Eatery (Scottish themed pub and festive eatery) and Good Time Charley\'s (American featuring sandwiches, hamburgers and more). You can still enjoy your favorites such as IMAX 3D Theatre, MagiQuest, Senor Frogs, Ripley\'s Aquarium, Jimmy Buffet\'s Margaritaville just to name a few. For those who once loved the Myrtle Beach Pavilion be sure to visit the Pavilion Nostaglia Park featuring some of the Pavilion\'s most popular rides including the historical carousel. Year round events and parades are some of the most popular in the area while the Fireworks show over Lake Broadway is a must see during the summer months and on special occasions. Shop, Dine, Dance, Play...It’s Broadwayyy Fun in Myrtle Beach!\r\n<h4>Carolina Opry</h4>\r\nCalvin Gilmore presents four legendary shows all in one legendary theater, The Carolina Opry located at Broadway at the Beach. For 25 years The Carolina Opry has been entertaining everyone who has walked through the door with 2 hours of high-energy music, comedy and dance. Good Vibrations features the best music from the 60s, 70s and 80s in a fast-paced show that will bring you back to the best in American popular music. The Carolina Opry Christmas Special combines the best of the holiday spirit with beloved musical performances, fresh comedy and breathtaking dance. LIGHT See The Music offers a one of a kind view of music with a lazer light show set to a variety of muscial genres. New for 2011 is Beatlemania Now! as seen on Broadway and recaptures everything you loved about The Beatles. Beatlemania Now! will run from June 15-September 4 and showtimes are at 5pm Wed-Sun. If you only see one show...it should be at The Carolina Opry.\r\n<h4>Celebrations Music Theatre</h4>\r\nNew for 2011 and located in Surfside Beach, Celebration Music Theatre features the legendary tribute artist show SUPERSTARZ! Live and the Broadway Celebration Series. They also offer a \"just for kids\" production called \"the Rocktastics!\" that will be performing June 15 - August 6. Don\'t miss their Broadway line-up for 2011 with the Minnie Pearl Gospel Hour, All Shook Up, Hairspray, The Southern Bellers and A Christmas Carol.\r\n<h4>Children\'s Museum of South Carolina</h4>\r\nCome \"Touch, Explore, and Play...\" while learning about your world through the interactive exhibits and programs at The Children\'s Museum of South Carolina. Located near the Myrtle Beach Convention Center, CMSC offers special programs, such as Tales for Tots and Digitalis Planetarium, are extremely popular with the adults and children who visit the Museum. With a wide variety of interactive exhibits kids of all ages are sure to have a fun learning experience.\r\n<h4>Coastal Grand Mall</h4>\r\nFeaturing anchor stores Belk, Dillard\'s, JC Penney and Sears; Coastal Grand Mall has quickly become the #1 mall in Myrtle Beach. Featuring more than 100 stores and restaurants, you will find everything you were looking for...and then some! After you have shopped until you drop, sit down and relax in the state of the art 14 screen Cinemark Movie Theater or enjoy something to eat at Abuelo\'s, Texas Roadhouse, Red Robin and more. Treat everyone in the family to something unique from Coastal Grand Mall.\r\n<h4>Family Kingdom Amusement Park</h4>\r\nJust one block from Oceans One Resort you will find Myrtle Beach\'s only Seaside Amusement Park and Oceanfront Water Park, Family Kingdom! Featuring Go Karts, Kiddie Rides, Family Rides, Water Rides and Thrill Rides the entire family can enjoy their time in the park. Best of all, there is NO ADMISSION FEE! New for 2011 is the Picnic Pavilion, a covered dining area that can accommodate up to 100 guests for birthday parties, family reunions or any other group outing.\r\n<h4>House of Blues</h4>\r\nThe House of Blues Myrtle Beach, located in Barefoot Landing, offers live music on the Sugar Shack Deck and the Concert Hall and delta inspired cuisine in their world famous restuarant. With leading acts from country, rock, top 40 and more your vacation won\'t be complete without the intimate setting with your favorite artist. You can even \"Pass the Line\" and \"Crash the Barricade\" to gain entry first into the concerts. The Gospel Brunch in the restaurant is something that shouldn\'t missed with an amazing buffet and inspiring gospel performances. Where the heart meets the soul®. The ultimate live music and dining experience.\r\n<h4>Legends in Concert</h4>\r\nThe World\'s Longest Running Live Tribute Show, Legends in Concert has been a favorite in Myrtle Beach for years and offering a variety of concerts and live shows and many other activities for all ages. Legends in Concert recently relocated a state-of-the-art theater in Broadway at the Beach next to Planet Hollywood!\r\n<h4>The Market Common</h4>\r\nA place where you can experience exceptional shopping and dining in a beautifully-designed village setting. From the nation’s most celebrated names in retail to ice cream and pizza for the kids, and from one-of-a-kind restaurants to the most comfortable movie theater at the beach, The Market Common is always worth your time. The Market Common is also home to multiple festivals all year long, such as Sun Fun Festival, Beerfest, Myrtle Beach Wine Fest, Oktoberfest and more!\r\n<h4>Medieval Times</h4>\r\nInside the stone walls of the 11th century-style castle, Medieval Spain comes to life as six knights, donning authentic armor, clash in a jousting tournament for the title of King\'s Champion. Let your imagination take you to Medieval Times.\r\n<h4>Myrtle Beach Boardwalk</h4>\r\nThe Myrtle Beach Boardwalk opened in 2010 to rave reviews! The 1.2 mile boardwalk stretches from 14th Avenue North to 2nd Avenue North in the heart of Myrtle Beach. The Myrtle Beach Boardwalk is home to restaurants, shopping, arcades, ice cream shops and more. In the center of it all is the brand new SkyWheel Myrtle Beach and Landshark Bar &amp; Grill which opened to rave reviews in May 2011!  Check out our <a title=\"Boardwalk\" href=\"http://oor.wbtaylor.net/index.php/boardwalk/\">Myrtle Beach Boardwalk page</a> for more information.\r\n<h4>Myrtle Beach Mall</h4>\r\nConveinently located at the corner of Highways 22 and 17, Myrtle Beach Mall continues to provide shoppers with unique stores and value not offered by other malls in the area. Two Belk stores, JCPenney are the long standing anchors and are now accompanied by the only Bass Pro Shops in South Carolina! The mall is also home to Uptown Theater, Home of the Carolina Improv, an improv comedy about living and playing Myrtle Beach. If you aren\'t sure what you need, shopping at Myrtle Beach Mall will help you figure it out.\r\n<h4>Myrtle Beach Pelicans</h4>\r\nThe Myrtle Beach Pelicans have been bringing minor league baseball to the beach since 1999 and as of 2011 are the Advanced \'A\' Affiliate of the Texas Rangers. With various promotions and events, including multiple fireworks shows, the Myrtle Beach Pelicans are a family favorite stop on their vacation. Kids are allowed to run the bases following the game and play catch on the field prior to the start of the game.  To add to the fun you always have to be on the lookout for Splash, the official mascot who is usually up to no good; Rally Shark, who adds excitement late in the game and the always popular, Deuce - part bat boy, part ball caddy. As they say...Baseball\'s Even Better at the Beach!\r\n<h4>Myrtle Waves</h4>\r\nVoted 1st Place in Best of the Beach in 2010, Myrtle Waves offers over 20 acres of swerves, curves, waves, and chutes and over 1 million gallons of water! Raft rides, Slides and Family Attractions make this a one-stop place for all around family fun in the sun. The younger kids will enjoy Bubble Bay and Saturation Station while the older kids (and adults) have a blast twisting and turning on Racin\' River, Turbo Twisters, Riptide Rockets Night Flight and more. Myrtle Waves is open seasonally (mid-May thru mid-September) and season passes are available.\r\n<h4>NASCAR SpeedPark</h4>\r\nIf speed is your thing then the NASCAR SpeedPark is for you, boasting over 26 acres of the industries hottest go-kart tracks, family rides, mini-golf courses, midway games, in addition to family dining in a relaxed and fun environment. Challenge everyone in your family to a little race and a lot of fun. NASCAR SpeedPark is open year round and various tickets pacakages are available.\r\n<h4>Palace Theatre</h4>\r\nThe Palace Theatre is located at Broadway at the Beach and is home to the best in live entertainment. Their 2011 lineup includes Hooray for Hollywood which will take you back through 50 years of movie history inlcuding some of the most popular song and dance routines from movies such as Singing in the Rain and Disney\'s \"Jungle Book\". Back by popular demand is The Magical Spirit of Ireland, enjoy sounds from the Irish Tenors and the world renowned Spirit of the Dance dancers. Get your heart pumping and your pulse racing with Le Grand Cirque Adreneline, a 2 hour death defying performance filled with contortionists, tumblers, incredible aerial acts as well as the breathtaking Wheel of Death. Start your holiday season in style with Christmas on Ice, a a one-of-a-kind show that is sure to be an instant family hit as Santa and his helpers take you on a journey around a 40 foot ice skating rink. The Palace Theatre boasts an elegance and beauty unrivaled by any other Theatre in South Carolina.\r\n<h4>Pirate\'s Voyage</h4>\r\nAll new for 2011, Pirate\'s Voyage is the latest live dinner show from Dolly Parton. After closing the doors on the long time running Dixie Stampede, Dolly Parton has revamped the venue into a pirates dream! Featuring 15 foot deep, 750 thousand gallon  lagoon, and 3 full-sized ships, complete with pirates, battling over who will take the treasure. Just revealed was the live animal show which will feature a sea lion who will perform and even \"arrrrrrrrgh\" multiple times during the show. The dinner menu has been updated as well but still continues with the ever popular soup from Dixie Stampede. Pirate\'s Voyage opens on June 3rd, 2011...it\'s time to get your tickets, matey!\r\n<h4>Ripley\'s Aquarium</h4>\r\nRipley\'s Aquarium Myrtle Beach can be found at Broadway at the Beach. Sea life is abundant in the aquarium with more than 350 individual species featuring 10,000 exotic sea creatures. Get hands on in the Discovery Center by holding a horseshoe crab or head over to Ray Bay, where you can reach out and touch a stingray as they glide by. See some of the more exotic fish from the Amazon River at Rio Amazon or get a glimpse of color at Rainbow Rock where the brightly colored Indo-Pacific fish swim through a coral reef. A new exhibit for 2011 gets you up close and personal with the ocean\'s most feared predator, Sharks-Perfect Predators features over a dozen species of sharks and interactive exhibits where you can even feel the force of a shark bite! Don\'t let your eyes fool you, another new exhibit for 2011 is Mermaids, a captivating show that will occur 3 times daily followed by meet and greets. If you\'re looking for family fun that is also educational, Ripley\'s Aquarium needs to be on your list!\r\n<h4>Second Avenue Pier</h4>\r\nRecently renovated, Second Avenue Pier, which has been around since 1936, is located on the southern portion of the Myrtle Beach Boardwalk and just steps away from Oceans One Resort. The pier now features the Pier House Restaurant and Pier View Bar &amp; Lounge (open air bar) as well as what the pier has been famous for...fishing! During the summer season, Second Avenue Pier is home to an amazing fireworks display every Wednesday night as part of the Hot Summer Nights on the Boardwalk. Whether you want to relax with some fishing poles, eat breakfast, lunch or dinner, or simply enjoy a tasty beverage in the ocean breeze, Second Avenue Pier is the place to be!\r\n<h4>SkyWheel Myrtle Beach</h4>\r\n<strong></strong>It\'s tall, it\'s round and it has a light show...yes, the SkyWheel Myrtle is hard to miss along the Myrtle Beach Boardwalk and for all the right reasons.  Standing 200 feet above sea level, you can enjoy a view rarely seen of the Grand Strand in one of 42 temperature controlled glass gondolas. At night a spectacular LED lightshow begins, giving that extra spark to downtown Myrtle Beach. Operating year round, your flight will consist of three rotations and ranges from 8-12 minutes in length and is the first observation wheel of its kind in the United States.\r\n<h4>Tanger Outlets</h4>\r\n<strong></strong>Shop guilt free at either Tanger Outlets located in both Myrtle Beach on 501 or on Kings Highway near Myrtle Beach Mall. With stores such as Coach, kate spade, Old Navy, Gap, Levi\'s, Under Armour, Carter\'s, Disney Store and many, many more; you are sure to find something for the entire family, even Dad! Not only will you find the nation’s leading designer and brand name stores with the widest selection but the prices are also backed by the Best Price Guarantee. When you shop at Tanger Outlets, you can shop with confidence while on vacation.\r\n<h4>WonderWorks</h4>\r\n<strong></strong>A new attraction at Broadway at the Beach in 2011 is WonderWorks, an indoor interactive amusement park for the mind. Whether you are driving by or walking around Broadway at the Beach, you can\'t help but be amazed at the building that appears to have fallen from the sky and landed upside down. WonderWorks features more than 100 exhibits that allow you to interact, discover and explore! Feel the 84 mph winds of a hurricane, build your own roller coaster or submarine adventure with WonderSimulators, pilot a fighter jet, manuever the controls of a NASA spacecraft or simply have fun with bubbles in the Bubble Lab. WonderWorks is open year round, seven days a week and they suggest you allow 3-4 hours to get the full experience.','Things to Do','','inherit','open','open','','61-revision-13','','','2011-06-06 17:52:26','2011-06-06 17:52:26','',61,'http://oor.wbtaylor.net/index.php/2011/06/61-revision-13/',0,'revision','',0),(139,1,'2011-06-06 18:10:09','2011-06-06 18:10:09','<h4>Alabama Theatre</h4>\r\n<a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\"><img class=\"size-full wp-image-128 alignleft\" title=\"Alabama Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\" alt=\"Alabama Theatre\" width=\"130\" height=\"110\" /></a>Voted the #1 Live Theatre Attraction by Myrtle Beach Visitors featuring the Best in Family Entertainment is located in Barefoot Landing in North Myrtle Beach. The Alabama Theatre long standing performance is \"one The Show\". It has become a go-to show every vacation as the show changes from year to year. one features musical genres such as Country, Gospel, Broadway, Pop and Rock and don\'t forget the comedy! one is family favorite and a show you will never regret. If you visit during the holiday season, you will want to catch the other staple at Alabama Theatre - The South\'s Grandest Christmas Show. This family friendly holiday show features musical performances, dance and plenty of laughter from resident comedian Ricky Mokel. In addition to the regular shows, you will also have the opportunity to see live concerts from chart topping artists such as Kenny Rogers, The Oak Ridge Boys, LeeAnn Rimes and more!\r\n<h4>Alligator Adventure</h4>\r\nLocated adjacent to Barefoot Landing in North Myrtle Beach, Alligator Adventure puts you face to face with reptiles, alligators, crocodiles, lemurs, tropical birds, tigers, beavers and bats...oh my! Their live shows are a favorite among visitors and feature Alligator Live Feedings in the warmer months (Mid-April through Mid-October), Alligator Handling and Lecture in the cooler months and Snake Handling. Alligator Adventure is also home to UTAN - King of Crocs, the largest crocodile in the United States measuring over 20 feet long! Tickets can be purchased online or at the ticket counter and discounts are available including Active Military discounts and a Locals discount. You also receive a 2nd day free with any paid admission, you can\'t afford not to experience Alligator Adventure!\r\n<h4>Barefoot Landing</h4>\r\n<a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/Barefoot-Landing.jpg\"><img class=\"size-full wp-image-135 alignleft\" title=\"Barefoot Landing\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/Barefoot-Landing.jpg\" alt=\"Barefoot Landing\" width=\"109\" height=\"76\" /></a>Barefoot Landing, sitting along the Intercoastal Waterway, in North Myrtle Beach  is home to the Alabama Theatre, House of Blues, multiple restaurants, more than 100 specialty and retail shops and entertainment! During the summer months you can sit back and enjoy fireworks over the lake and also get up close and personal with exotic animals at the TIGERS Exhibit. SummerFest brings excitement all over Barefoot Landing with parades, magicians, clowns, face painters, stilt walkers, jugglers and more 7 nights a week! Barefoot Landing is conveintently located to both Myrtle Beach and North Myrtle Beach travelers wanting to take it slow and easy....that\'s the beach way, that\'s the Barefoot Way.\r\n<h4>Broadway at the Beach</h4>\r\nIf you\'re looking for one place to go that has everything, Broadway at the Beach is 350 acres of paradise and was voted #1 Attraction in Myrtle Beach according to Trip Advisor. Featuring shopping, dining, nightlife, and entertainment you simply can not go wrong. 2011 brings new excitement and merchants such as WonderWorks Myrtle Beach (an amusement park for your mind), Legends in Concert (Myrtle Beach favorite recently relocated from Surfside Beach) and Bodies Revealed (summer months only). New restaurants feature Carlos \'n Charlies (family friendly Mexican restuarant), Tilted Kilt Pub &amp; Eatery (Scottish themed pub and festive eatery) and Good Time Charley\'s (American featuring sandwiches, hamburgers and more). You can still enjoy your favorites such as IMAX 3D Theatre, MagiQuest, Senor Frogs, Ripley\'s Aquarium, Jimmy Buffet\'s Margaritaville just to name a few. For those who once loved the Myrtle Beach Pavilion be sure to visit the Pavilion Nostaglia Park featuring some of the Pavilion\'s most popular rides including the historical carousel. Year round events and parades are some of the most popular in the area while the Fireworks show over Lake Broadway is a must see during the summer months and on special occasions. Shop, Dine, Dance, Play...It’s Broadwayyy Fun in Myrtle Beach!\r\n<h4>Carolina Opry</h4>\r\nCalvin Gilmore presents four legendary shows all in one legendary theater, The Carolina Opry located at Broadway at the Beach. For 25 years The Carolina Opry has been entertaining everyone who has walked through the door with 2 hours of high-energy music, comedy and dance. Good Vibrations features the best music from the 60s, 70s and 80s in a fast-paced show that will bring you back to the best in American popular music. The Carolina Opry Christmas Special combines the best of the holiday spirit with beloved musical performances, fresh comedy and breathtaking dance. LIGHT See The Music offers a one of a kind view of music with a lazer light show set to a variety of muscial genres. New for 2011 is Beatlemania Now! as seen on Broadway and recaptures everything you loved about The Beatles. Beatlemania Now! will run from June 15-September 4 and showtimes are at 5pm Wed-Sun. If you only see one show...it should be at The Carolina Opry.\r\n<h4>Celebrations Music Theatre</h4>\r\nNew for 2011 and located in Surfside Beach, Celebration Music Theatre features the legendary tribute artist show SUPERSTARZ! Live and the Broadway Celebration Series. They also offer a \"just for kids\" production called \"the Rocktastics!\" that will be performing June 15 - August 6. Don\'t miss their Broadway line-up for 2011 with the Minnie Pearl Gospel Hour, All Shook Up, Hairspray, The Southern Bellers and A Christmas Carol.\r\n<h4>Children\'s Museum of South Carolina</h4>\r\nCome \"Touch, Explore, and Play...\" while learning about your world through the interactive exhibits and programs at The Children\'s Museum of South Carolina. Located near the Myrtle Beach Convention Center, CMSC offers special programs, such as Tales for Tots and Digitalis Planetarium, are extremely popular with the adults and children who visit the Museum. With a wide variety of interactive exhibits kids of all ages are sure to have a fun learning experience.\r\n<h4>Coastal Grand Mall</h4>\r\nFeaturing anchor stores Belk, Dillard\'s, JC Penney and Sears; Coastal Grand Mall has quickly become the #1 mall in Myrtle Beach. Featuring more than 100 stores and restaurants, you will find everything you were looking for...and then some! After you have shopped until you drop, sit down and relax in the state of the art 14 screen Cinemark Movie Theater or enjoy something to eat at Abuelo\'s, Texas Roadhouse, Red Robin and more. Treat everyone in the family to something unique from Coastal Grand Mall.\r\n<h4>Family Kingdom Amusement Park</h4>\r\nJust one block from Oceans One Resort you will find Myrtle Beach\'s only Seaside Amusement Park and Oceanfront Water Park, Family Kingdom! Featuring Go Karts, Kiddie Rides, Family Rides, Water Rides and Thrill Rides the entire family can enjoy their time in the park. Best of all, there is NO ADMISSION FEE! New for 2011 is the Picnic Pavilion, a covered dining area that can accommodate up to 100 guests for birthday parties, family reunions or any other group outing.\r\n<h4>House of Blues</h4>\r\nThe House of Blues Myrtle Beach, located in Barefoot Landing, offers live music on the Sugar Shack Deck and the Concert Hall and delta inspired cuisine in their world famous restuarant. With leading acts from country, rock, top 40 and more your vacation won\'t be complete without the intimate setting with your favorite artist. You can even \"Pass the Line\" and \"Crash the Barricade\" to gain entry first into the concerts. The Gospel Brunch in the restaurant is something that shouldn\'t missed with an amazing buffet and inspiring gospel performances. Where the heart meets the soul®. The ultimate live music and dining experience.\r\n<h4>Legends in Concert</h4>\r\nThe World\'s Longest Running Live Tribute Show, Legends in Concert has been a favorite in Myrtle Beach for years and offering a variety of concerts and live shows and many other activities for all ages. Legends in Concert recently relocated a state-of-the-art theater in Broadway at the Beach next to Planet Hollywood!\r\n<h4>The Market Common</h4>\r\nA place where you can experience exceptional shopping and dining in a beautifully-designed village setting. From the nation’s most celebrated names in retail to ice cream and pizza for the kids, and from one-of-a-kind restaurants to the most comfortable movie theater at the beach, The Market Common is always worth your time. The Market Common is also home to multiple festivals all year long, such as Sun Fun Festival, Beerfest, Myrtle Beach Wine Fest, Oktoberfest and more!\r\n<h4>Medieval Times</h4>\r\nInside the stone walls of the 11th century-style castle, Medieval Spain comes to life as six knights, donning authentic armor, clash in a jousting tournament for the title of King\'s Champion. Let your imagination take you to Medieval Times.\r\n<h4>Myrtle Beach Boardwalk</h4>\r\nThe Myrtle Beach Boardwalk opened in 2010 to rave reviews! The 1.2 mile boardwalk stretches from 14th Avenue North to 2nd Avenue North in the heart of Myrtle Beach. The Myrtle Beach Boardwalk is home to restaurants, shopping, arcades, ice cream shops and more. In the center of it all is the brand new SkyWheel Myrtle Beach and Landshark Bar &amp; Grill which opened to rave reviews in May 2011!  Check out our <a title=\"Boardwalk\" href=\"http://oor.wbtaylor.net/index.php/boardwalk/\">Myrtle Beach Boardwalk page</a> for more information.\r\n<h4>Myrtle Beach Mall</h4>\r\nConveinently located at the corner of Highways 22 and 17, Myrtle Beach Mall continues to provide shoppers with unique stores and value not offered by other malls in the area. Two Belk stores, JCPenney are the long standing anchors and are now accompanied by the only Bass Pro Shops in South Carolina! The mall is also home to Uptown Theater, Home of the Carolina Improv, an improv comedy about living and playing Myrtle Beach. If you aren\'t sure what you need, shopping at Myrtle Beach Mall will help you figure it out.\r\n<h4>Myrtle Beach Pelicans</h4>\r\nThe Myrtle Beach Pelicans have been bringing minor league baseball to the beach since 1999 and as of 2011 are the Advanced \'A\' Affiliate of the Texas Rangers. With various promotions and events, including multiple fireworks shows, the Myrtle Beach Pelicans are a family favorite stop on their vacation. Kids are allowed to run the bases following the game and play catch on the field prior to the start of the game.  To add to the fun you always have to be on the lookout for Splash, the official mascot who is usually up to no good; Rally Shark, who adds excitement late in the game and the always popular, Deuce - part bat boy, part ball caddy. As they say...Baseball\'s Even Better at the Beach!\r\n<h4>Myrtle Waves</h4>\r\nVoted 1st Place in Best of the Beach in 2010, Myrtle Waves offers over 20 acres of swerves, curves, waves, and chutes and over 1 million gallons of water! Raft rides, Slides and Family Attractions make this a one-stop place for all around family fun in the sun. The younger kids will enjoy Bubble Bay and Saturation Station while the older kids (and adults) have a blast twisting and turning on Racin\' River, Turbo Twisters, Riptide Rockets Night Flight and more. Myrtle Waves is open seasonally (mid-May thru mid-September) and season passes are available.\r\n<h4>NASCAR SpeedPark</h4>\r\nIf speed is your thing then the NASCAR SpeedPark is for you, boasting over 26 acres of the industries hottest go-kart tracks, family rides, mini-golf courses, midway games, in addition to family dining in a relaxed and fun environment. Challenge everyone in your family to a little race and a lot of fun. NASCAR SpeedPark is open year round and various tickets pacakages are available.\r\n<h4>Palace Theatre</h4>\r\nThe Palace Theatre is located at Broadway at the Beach and is home to the best in live entertainment. Their 2011 lineup includes Hooray for Hollywood which will take you back through 50 years of movie history inlcuding some of the most popular song and dance routines from movies such as Singing in the Rain and Disney\'s \"Jungle Book\". Back by popular demand is The Magical Spirit of Ireland, enjoy sounds from the Irish Tenors and the world renowned Spirit of the Dance dancers. Get your heart pumping and your pulse racing with Le Grand Cirque Adreneline, a 2 hour death defying performance filled with contortionists, tumblers, incredible aerial acts as well as the breathtaking Wheel of Death. Start your holiday season in style with Christmas on Ice, a a one-of-a-kind show that is sure to be an instant family hit as Santa and his helpers take you on a journey around a 40 foot ice skating rink. The Palace Theatre boasts an elegance and beauty unrivaled by any other Theatre in South Carolina.\r\n<h4>Pirate\'s Voyage</h4>\r\nAll new for 2011, Pirate\'s Voyage is the latest live dinner show from Dolly Parton. After closing the doors on the long time running Dixie Stampede, Dolly Parton has revamped the venue into a pirates dream! Featuring 15 foot deep, 750 thousand gallon  lagoon, and 3 full-sized ships, complete with pirates, battling over who will take the treasure. Just revealed was the live animal show which will feature a sea lion who will perform and even \"arrrrrrrrgh\" multiple times during the show. The dinner menu has been updated as well but still continues with the ever popular soup from Dixie Stampede. Pirate\'s Voyage opens on June 3rd, 2011...it\'s time to get your tickets, matey!\r\n<h4>Ripley\'s Aquarium</h4>\r\nRipley\'s Aquarium Myrtle Beach can be found at Broadway at the Beach. Sea life is abundant in the aquarium with more than 350 individual species featuring 10,000 exotic sea creatures. Get hands on in the Discovery Center by holding a horseshoe crab or head over to Ray Bay, where you can reach out and touch a stingray as they glide by. See some of the more exotic fish from the Amazon River at Rio Amazon or get a glimpse of color at Rainbow Rock where the brightly colored Indo-Pacific fish swim through a coral reef. A new exhibit for 2011 gets you up close and personal with the ocean\'s most feared predator, Sharks-Perfect Predators features over a dozen species of sharks and interactive exhibits where you can even feel the force of a shark bite! Don\'t let your eyes fool you, another new exhibit for 2011 is Mermaids, a captivating show that will occur 3 times daily followed by meet and greets. If you\'re looking for family fun that is also educational, Ripley\'s Aquarium needs to be on your list!\r\n<h4>Second Avenue Pier</h4>\r\nRecently renovated, Second Avenue Pier, which has been around since 1936, is located on the southern portion of the Myrtle Beach Boardwalk and just steps away from Oceans One Resort. The pier now features the Pier House Restaurant and Pier View Bar &amp; Lounge (open air bar) as well as what the pier has been famous for...fishing! During the summer season, Second Avenue Pier is home to an amazing fireworks display every Wednesday night as part of the Hot Summer Nights on the Boardwalk. Whether you want to relax with some fishing poles, eat breakfast, lunch or dinner, or simply enjoy a tasty beverage in the ocean breeze, Second Avenue Pier is the place to be!\r\n<h4>SkyWheel Myrtle Beach</h4>\r\n<strong></strong>It\'s tall, it\'s round and it has a light show...yes, the SkyWheel Myrtle is hard to miss along the Myrtle Beach Boardwalk and for all the right reasons.  Standing 200 feet above sea level, you can enjoy a view rarely seen of the Grand Strand in one of 42 temperature controlled glass gondolas. At night a spectacular LED lightshow begins, giving that extra spark to downtown Myrtle Beach. Operating year round, your flight will consist of three rotations and ranges from 8-12 minutes in length and is the first observation wheel of its kind in the United States.\r\n<h4>Tanger Outlets</h4>\r\n<strong></strong>Shop guilt free at either Tanger Outlets located in both Myrtle Beach on 501 or on Kings Highway near Myrtle Beach Mall. With stores such as Coach, kate spade, Old Navy, Gap, Levi\'s, Under Armour, Carter\'s, Disney Store and many, many more; you are sure to find something for the entire family, even Dad! Not only will you find the nation’s leading designer and brand name stores with the widest selection but the prices are also backed by the Best Price Guarantee. When you shop at Tanger Outlets, you can shop with confidence while on vacation.\r\n<h4>WonderWorks</h4>\r\n<strong></strong>A new attraction at Broadway at the Beach in 2011 is WonderWorks, an indoor interactive amusement park for the mind. Whether you are driving by or walking around Broadway at the Beach, you can\'t help but be amazed at the building that appears to have fallen from the sky and landed upside down. WonderWorks features more than 100 exhibits that allow you to interact, discover and explore! Feel the 84 mph winds of a hurricane, build your own roller coaster or submarine adventure with WonderSimulators, pilot a fighter jet, manuever the controls of a NASA spacecraft or simply have fun with bubbles in the Bubble Lab. WonderWorks is open year round, seven days a week and they suggest you allow 3-4 hours to get the full experience.','Things to Do','','inherit','open','open','','61-revision-14','','','2011-06-06 18:10:09','2011-06-06 18:10:09','',61,'http://oor.wbtaylor.net/index.php/2011/06/61-revision-14/',0,'revision','',0),(140,1,'2011-05-26 17:52:24','2011-05-26 17:52:24','[gallery link=\"file\" columns=\"4\"]','2 Bedroom Condo','','inherit','open','open','','38-revision-2','','','2011-05-26 17:52:24','2011-05-26 17:52:24','',38,'http://oor.wbtaylor.net/index.php/2011/05/38-revision-2/',0,'revision','',0),(141,1,'2011-06-06 18:24:49','2011-06-06 18:24:49','[gallery link=\"file\" columns=\"4\"]\r\n\r\nThese units feature 2 Bedrooms with either one King bed each or one with a King and one with two Queen beds. Also, 2 Baths with jacuzzi jets in the master bath, and either 1 or 2 oceanfront balconies, depending on the exact floorplan. Modern amenities complement the ultra-modern styling of these units, featuring full size refrigerator with ice maker, sitting area and hi-speed internet. Surround yourself with luxury in this spacious, oceanfront condo.\r\n\r\n&nbsp;','2 Bedroom Condo','','inherit','open','open','','38-revision-3','','','2011-06-06 18:24:49','2011-06-06 18:24:49','',38,'http://oor.wbtaylor.net/index.php/2011/06/38-revision-3/',0,'revision','',0),(143,1,'2011-06-06 18:12:17','2011-06-06 18:12:17','<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\"><img class=\"size-full wp-image-128 alignleft\" title=\"Alabama Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\" alt=\"Alabama Theatre\" width=\"130\" height=\"110\" /></a>Alabama Theatre</h4>\r\nVoted the #1 Live Theatre Attraction by Myrtle Beach Visitors featuring the Best in Family Entertainment is located in Barefoot Landing in North Myrtle Beach. The Alabama Theatre long standing performance is \"one The Show\". It has become a go-to show every vacation as the show changes from year to year. one features musical genres such as Country, Gospel, Broadway, Pop and Rock and don\'t forget the comedy! one is family favorite and a show you will never regret. If you visit during the holiday season, you will want to catch the other staple at Alabama Theatre - The South\'s Grandest Christmas Show. This family friendly holiday show features musical performances, dance and plenty of laughter from resident comedian Ricky Mokel. In addition to the regular shows, you will also have the opportunity to see live concerts from chart topping artists such as Kenny Rogers, The Oak Ridge Boys, LeeAnn Rimes and more!\r\n<h4>Alligator Adventure</h4>\r\nLocated adjacent to Barefoot Landing in North Myrtle Beach, Alligator Adventure puts you face to face with reptiles, alligators, crocodiles, lemurs, tropical birds, tigers, beavers and bats...oh my! Their live shows are a favorite among visitors and feature Alligator Live Feedings in the warmer months (Mid-April through Mid-October), Alligator Handling and Lecture in the cooler months and Snake Handling. Alligator Adventure is also home to UTAN - King of Crocs, the largest crocodile in the United States measuring over 20 feet long! Tickets can be purchased online or at the ticket counter and discounts are available including Active Military discounts and a Locals discount. You also receive a 2nd day free with any paid admission, you can\'t afford not to experience Alligator Adventure!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/Barefoot-Landing.jpg\"><img class=\"size-full wp-image-135 alignleft\" title=\"Barefoot Landing\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/Barefoot-Landing.jpg\" alt=\"Barefoot Landing\" width=\"109\" height=\"76\" /></a>Barefoot Landing</h4>\r\nBarefoot Landing, sitting along the Intercoastal Waterway, in North Myrtle Beach  is home to the Alabama Theatre, House of Blues, multiple restaurants, more than 100 specialty and retail shops and entertainment! During the summer months you can sit back and enjoy fireworks over the lake and also get up close and personal with exotic animals at the TIGERS Exhibit. SummerFest brings excitement all over Barefoot Landing with parades, magicians, clowns, face painters, stilt walkers, jugglers and more 7 nights a week! Barefoot Landing is conveintently located to both Myrtle Beach and North Myrtle Beach travelers wanting to take it slow and easy....that\'s the beach way, that\'s the Barefoot Way.\r\n<h4>Broadway at the Beach</h4>\r\nIf you\'re looking for one place to go that has everything, Broadway at the Beach is 350 acres of paradise and was voted #1 Attraction in Myrtle Beach according to Trip Advisor. Featuring shopping, dining, nightlife, and entertainment you simply can not go wrong. 2011 brings new excitement and merchants such as WonderWorks Myrtle Beach (an amusement park for your mind), Legends in Concert (Myrtle Beach favorite recently relocated from Surfside Beach) and Bodies Revealed (summer months only). New restaurants feature Carlos \'n Charlies (family friendly Mexican restuarant), Tilted Kilt Pub &amp; Eatery (Scottish themed pub and festive eatery) and Good Time Charley\'s (American featuring sandwiches, hamburgers and more). You can still enjoy your favorites such as IMAX 3D Theatre, MagiQuest, Senor Frogs, Ripley\'s Aquarium, Jimmy Buffet\'s Margaritaville just to name a few. For those who once loved the Myrtle Beach Pavilion be sure to visit the Pavilion Nostaglia Park featuring some of the Pavilion\'s most popular rides including the historical carousel. Year round events and parades are some of the most popular in the area while the Fireworks show over Lake Broadway is a must see during the summer months and on special occasions. Shop, Dine, Dance, Play...It’s Broadwayyy Fun in Myrtle Beach!\r\n<h4>Carolina Opry</h4>\r\nCalvin Gilmore presents four legendary shows all in one legendary theater, The Carolina Opry located at Broadway at the Beach. For 25 years The Carolina Opry has been entertaining everyone who has walked through the door with 2 hours of high-energy music, comedy and dance. Good Vibrations features the best music from the 60s, 70s and 80s in a fast-paced show that will bring you back to the best in American popular music. The Carolina Opry Christmas Special combines the best of the holiday spirit with beloved musical performances, fresh comedy and breathtaking dance. LIGHT See The Music offers a one of a kind view of music with a lazer light show set to a variety of muscial genres. New for 2011 is Beatlemania Now! as seen on Broadway and recaptures everything you loved about The Beatles. Beatlemania Now! will run from June 15-September 4 and showtimes are at 5pm Wed-Sun. If you only see one show...it should be at The Carolina Opry.\r\n<h4>Celebrations Music Theatre</h4>\r\nNew for 2011 and located in Surfside Beach, Celebration Music Theatre features the legendary tribute artist show SUPERSTARZ! Live and the Broadway Celebration Series. They also offer a \"just for kids\" production called \"the Rocktastics!\" that will be performing June 15 - August 6. Don\'t miss their Broadway line-up for 2011 with the Minnie Pearl Gospel Hour, All Shook Up, Hairspray, The Southern Bellers and A Christmas Carol.\r\n<h4>Children\'s Museum of South Carolina</h4>\r\nCome \"Touch, Explore, and Play...\" while learning about your world through the interactive exhibits and programs at The Children\'s Museum of South Carolina. Located near the Myrtle Beach Convention Center, CMSC offers special programs, such as Tales for Tots and Digitalis Planetarium, are extremely popular with the adults and children who visit the Museum. With a wide variety of interactive exhibits kids of all ages are sure to have a fun learning experience.\r\n<h4>Coastal Grand Mall</h4>\r\nFeaturing anchor stores Belk, Dillard\'s, JC Penney and Sears; Coastal Grand Mall has quickly become the #1 mall in Myrtle Beach. Featuring more than 100 stores and restaurants, you will find everything you were looking for...and then some! After you have shopped until you drop, sit down and relax in the state of the art 14 screen Cinemark Movie Theater or enjoy something to eat at Abuelo\'s, Texas Roadhouse, Red Robin and more. Treat everyone in the family to something unique from Coastal Grand Mall.\r\n<h4>Family Kingdom Amusement Park</h4>\r\nJust one block from Oceans One Resort you will find Myrtle Beach\'s only Seaside Amusement Park and Oceanfront Water Park, Family Kingdom! Featuring Go Karts, Kiddie Rides, Family Rides, Water Rides and Thrill Rides the entire family can enjoy their time in the park. Best of all, there is NO ADMISSION FEE! New for 2011 is the Picnic Pavilion, a covered dining area that can accommodate up to 100 guests for birthday parties, family reunions or any other group outing.\r\n<h4>House of Blues</h4>\r\nThe House of Blues Myrtle Beach, located in Barefoot Landing, offers live music on the Sugar Shack Deck and the Concert Hall and delta inspired cuisine in their world famous restuarant. With leading acts from country, rock, top 40 and more your vacation won\'t be complete without the intimate setting with your favorite artist. You can even \"Pass the Line\" and \"Crash the Barricade\" to gain entry first into the concerts. The Gospel Brunch in the restaurant is something that shouldn\'t missed with an amazing buffet and inspiring gospel performances. Where the heart meets the soul®. The ultimate live music and dining experience.\r\n<h4>Legends in Concert</h4>\r\nThe World\'s Longest Running Live Tribute Show, Legends in Concert has been a favorite in Myrtle Beach for years and offering a variety of concerts and live shows and many other activities for all ages. Legends in Concert recently relocated a state-of-the-art theater in Broadway at the Beach next to Planet Hollywood!\r\n<h4>The Market Common</h4>\r\nA place where you can experience exceptional shopping and dining in a beautifully-designed village setting. From the nation’s most celebrated names in retail to ice cream and pizza for the kids, and from one-of-a-kind restaurants to the most comfortable movie theater at the beach, The Market Common is always worth your time. The Market Common is also home to multiple festivals all year long, such as Sun Fun Festival, Beerfest, Myrtle Beach Wine Fest, Oktoberfest and more!\r\n<h4>Medieval Times</h4>\r\nInside the stone walls of the 11th century-style castle, Medieval Spain comes to life as six knights, donning authentic armor, clash in a jousting tournament for the title of King\'s Champion. Let your imagination take you to Medieval Times.\r\n<h4>Myrtle Beach Boardwalk</h4>\r\nThe Myrtle Beach Boardwalk opened in 2010 to rave reviews! The 1.2 mile boardwalk stretches from 14th Avenue North to 2nd Avenue North in the heart of Myrtle Beach. The Myrtle Beach Boardwalk is home to restaurants, shopping, arcades, ice cream shops and more. In the center of it all is the brand new SkyWheel Myrtle Beach and Landshark Bar &amp; Grill which opened to rave reviews in May 2011!  Check out our <a title=\"Boardwalk\" href=\"http://oor.wbtaylor.net/index.php/boardwalk/\">Myrtle Beach Boardwalk page</a> for more information.\r\n<h4>Myrtle Beach Mall</h4>\r\nConveinently located at the corner of Highways 22 and 17, Myrtle Beach Mall continues to provide shoppers with unique stores and value not offered by other malls in the area. Two Belk stores, JCPenney are the long standing anchors and are now accompanied by the only Bass Pro Shops in South Carolina! The mall is also home to Uptown Theater, Home of the Carolina Improv, an improv comedy about living and playing Myrtle Beach. If you aren\'t sure what you need, shopping at Myrtle Beach Mall will help you figure it out.\r\n<h4>Myrtle Beach Pelicans</h4>\r\nThe Myrtle Beach Pelicans have been bringing minor league baseball to the beach since 1999 and as of 2011 are the Advanced \'A\' Affiliate of the Texas Rangers. With various promotions and events, including multiple fireworks shows, the Myrtle Beach Pelicans are a family favorite stop on their vacation. Kids are allowed to run the bases following the game and play catch on the field prior to the start of the game.  To add to the fun you always have to be on the lookout for Splash, the official mascot who is usually up to no good; Rally Shark, who adds excitement late in the game and the always popular, Deuce - part bat boy, part ball caddy. As they say...Baseball\'s Even Better at the Beach!\r\n<h4>Myrtle Waves</h4>\r\nVoted 1st Place in Best of the Beach in 2010, Myrtle Waves offers over 20 acres of swerves, curves, waves, and chutes and over 1 million gallons of water! Raft rides, Slides and Family Attractions make this a one-stop place for all around family fun in the sun. The younger kids will enjoy Bubble Bay and Saturation Station while the older kids (and adults) have a blast twisting and turning on Racin\' River, Turbo Twisters, Riptide Rockets Night Flight and more. Myrtle Waves is open seasonally (mid-May thru mid-September) and season passes are available.\r\n<h4>NASCAR SpeedPark</h4>\r\nIf speed is your thing then the NASCAR SpeedPark is for you, boasting over 26 acres of the industries hottest go-kart tracks, family rides, mini-golf courses, midway games, in addition to family dining in a relaxed and fun environment. Challenge everyone in your family to a little race and a lot of fun. NASCAR SpeedPark is open year round and various tickets pacakages are available.\r\n<h4>Palace Theatre</h4>\r\nThe Palace Theatre is located at Broadway at the Beach and is home to the best in live entertainment. Their 2011 lineup includes Hooray for Hollywood which will take you back through 50 years of movie history inlcuding some of the most popular song and dance routines from movies such as Singing in the Rain and Disney\'s \"Jungle Book\". Back by popular demand is The Magical Spirit of Ireland, enjoy sounds from the Irish Tenors and the world renowned Spirit of the Dance dancers. Get your heart pumping and your pulse racing with Le Grand Cirque Adreneline, a 2 hour death defying performance filled with contortionists, tumblers, incredible aerial acts as well as the breathtaking Wheel of Death. Start your holiday season in style with Christmas on Ice, a a one-of-a-kind show that is sure to be an instant family hit as Santa and his helpers take you on a journey around a 40 foot ice skating rink. The Palace Theatre boasts an elegance and beauty unrivaled by any other Theatre in South Carolina.\r\n<h4>Pirate\'s Voyage</h4>\r\nAll new for 2011, Pirate\'s Voyage is the latest live dinner show from Dolly Parton. After closing the doors on the long time running Dixie Stampede, Dolly Parton has revamped the venue into a pirates dream! Featuring 15 foot deep, 750 thousand gallon  lagoon, and 3 full-sized ships, complete with pirates, battling over who will take the treasure. Just revealed was the live animal show which will feature a sea lion who will perform and even \"arrrrrrrrgh\" multiple times during the show. The dinner menu has been updated as well but still continues with the ever popular soup from Dixie Stampede. Pirate\'s Voyage opens on June 3rd, 2011...it\'s time to get your tickets, matey!\r\n<h4>Ripley\'s Aquarium</h4>\r\nRipley\'s Aquarium Myrtle Beach can be found at Broadway at the Beach. Sea life is abundant in the aquarium with more than 350 individual species featuring 10,000 exotic sea creatures. Get hands on in the Discovery Center by holding a horseshoe crab or head over to Ray Bay, where you can reach out and touch a stingray as they glide by. See some of the more exotic fish from the Amazon River at Rio Amazon or get a glimpse of color at Rainbow Rock where the brightly colored Indo-Pacific fish swim through a coral reef. A new exhibit for 2011 gets you up close and personal with the ocean\'s most feared predator, Sharks-Perfect Predators features over a dozen species of sharks and interactive exhibits where you can even feel the force of a shark bite! Don\'t let your eyes fool you, another new exhibit for 2011 is Mermaids, a captivating show that will occur 3 times daily followed by meet and greets. If you\'re looking for family fun that is also educational, Ripley\'s Aquarium needs to be on your list!\r\n<h4>Second Avenue Pier</h4>\r\nRecently renovated, Second Avenue Pier, which has been around since 1936, is located on the southern portion of the Myrtle Beach Boardwalk and just steps away from Oceans One Resort. The pier now features the Pier House Restaurant and Pier View Bar &amp; Lounge (open air bar) as well as what the pier has been famous for...fishing! During the summer season, Second Avenue Pier is home to an amazing fireworks display every Wednesday night as part of the Hot Summer Nights on the Boardwalk. Whether you want to relax with some fishing poles, eat breakfast, lunch or dinner, or simply enjoy a tasty beverage in the ocean breeze, Second Avenue Pier is the place to be!\r\n<h4>SkyWheel Myrtle Beach</h4>\r\n<strong></strong>It\'s tall, it\'s round and it has a light show...yes, the SkyWheel Myrtle is hard to miss along the Myrtle Beach Boardwalk and for all the right reasons.  Standing 200 feet above sea level, you can enjoy a view rarely seen of the Grand Strand in one of 42 temperature controlled glass gondolas. At night a spectacular LED lightshow begins, giving that extra spark to downtown Myrtle Beach. Operating year round, your flight will consist of three rotations and ranges from 8-12 minutes in length and is the first observation wheel of its kind in the United States.\r\n<h4>Tanger Outlets</h4>\r\n<strong></strong>Shop guilt free at either Tanger Outlets located in both Myrtle Beach on 501 or on Kings Highway near Myrtle Beach Mall. With stores such as Coach, kate spade, Old Navy, Gap, Levi\'s, Under Armour, Carter\'s, Disney Store and many, many more; you are sure to find something for the entire family, even Dad! Not only will you find the nation’s leading designer and brand name stores with the widest selection but the prices are also backed by the Best Price Guarantee. When you shop at Tanger Outlets, you can shop with confidence while on vacation.\r\n<h4>WonderWorks</h4>\r\n<strong></strong>A new attraction at Broadway at the Beach in 2011 is WonderWorks, an indoor interactive amusement park for the mind. Whether you are driving by or walking around Broadway at the Beach, you can\'t help but be amazed at the building that appears to have fallen from the sky and landed upside down. WonderWorks features more than 100 exhibits that allow you to interact, discover and explore! Feel the 84 mph winds of a hurricane, build your own roller coaster or submarine adventure with WonderSimulators, pilot a fighter jet, manuever the controls of a NASA spacecraft or simply have fun with bubbles in the Bubble Lab. WonderWorks is open year round, seven days a week and they suggest you allow 3-4 hours to get the full experience.','Things to Do','','inherit','open','open','','61-revision-15','','','2011-06-06 18:12:17','2011-06-06 18:12:17','',61,'http://oor.wbtaylor.net/index.php/2011/06/61-revision-15/',0,'revision','',0),(145,1,'2011-06-06 19:45:08','2011-06-06 19:45:08','','Alabama Theatre','','inherit','open','open','','5371_105115298393_72471983393_2109766_614980_n','','','2011-06-06 19:45:08','2011-06-06 19:45:08','',61,'http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg',0,'attachment','image/jpeg',0),(146,1,'2011-06-06 19:45:47','2011-06-06 19:45:47','','Alligator Adventure','','inherit','open','open','','25739_117188041629520_117187501629574_301191_2621350_n','','','2011-06-06 19:45:47','2011-06-06 19:45:47','',61,'http://oor.wbtaylor.net/wp-content/uploads/2011/05/25739_117188041629520_117187501629574_301191_2621350_n.jpg',0,'attachment','image/jpeg',0),(147,1,'2011-06-06 19:46:16','2011-06-06 19:46:16','','Barefoot Landing','','inherit','open','open','','185605_204035776273335_111374112206169_853743_1453142_n','','','2011-06-06 19:46:16','2011-06-06 19:46:16','',61,'http://oor.wbtaylor.net/wp-content/uploads/2011/05/185605_204035776273335_111374112206169_853743_1453142_n.jpg',0,'attachment','image/jpeg',0),(148,1,'2011-06-06 19:30:30','2011-06-06 19:30:30','<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\"><img class=\"size-full wp-image-128 alignleft\" title=\"Alabama Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\" alt=\"Alabama Theatre\" width=\"130\" height=\"110\" /></a>Alabama Theatre</h4>\r\nVoted the #1 Live Theatre Attraction by Myrtle Beach Visitors featuring the Best in Family Entertainment is located in Barefoot Landing in North Myrtle Beach. The Alabama Theatre long standing performance is \"one The Show\". It has become a go-to show every vacation as the show changes from year to year. one features musical genres such as Country, Gospel, Broadway, Pop and Rock and don\'t forget the comedy! one is family favorite and a show you will never regret. If you visit during the holiday season, you will want to catch the other staple at Alabama Theatre - The South\'s Grandest Christmas Show. This family friendly holiday show features musical performances, dance and plenty of laughter from resident comedian Ricky Mokel. In addition to the regular shows, you will also have the opportunity to see live concerts from chart topping artists such as Kenny Rogers, The Oak Ridge Boys, LeeAnn Rimes and more!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/25739_117188041629520_117187501629574_301191_2621350_n.jpg\"><img class=\"alignleft size-full wp-image-142\" title=\"Alligatore Adventure\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/25739_117188041629520_117187501629574_301191_2621350_n.jpg\" alt=\"Alligator Adventure - Barefoot Landing\" width=\"300\" height=\"137\" /></a>Alligator Adventure</h4>\r\nLocated adjacent to Barefoot Landing in North Myrtle Beach, Alligator Adventure puts you face to face with reptiles, alligators, crocodiles, lemurs, tropical birds, tigers, beavers and bats...oh my! Their live shows are a favorite among visitors and feature Alligator Live Feedings in the warmer months (Mid-April through Mid-October), Alligator Handling and Lecture in the cooler months and Snake Handling. Alligator Adventure is also home to UTAN - King of Crocs, the largest crocodile in the United States measuring over 20 feet long! Tickets can be purchased online or at the ticket counter and discounts are available including Active Military discounts and a Locals discount. You also receive a 2nd day free with any paid admission, you can\'t afford not to experience Alligator Adventure!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/Barefoot-Landing.jpg\"><img class=\"size-full wp-image-135 alignleft\" title=\"Barefoot Landing\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/Barefoot-Landing.jpg\" alt=\"Barefoot Landing\" width=\"109\" height=\"76\" /></a>Barefoot Landing</h4>\r\nBarefoot Landing, sitting along the Intercoastal Waterway, in North Myrtle Beach  is home to the Alabama Theatre, House of Blues, multiple restaurants, more than 100 specialty and retail shops and entertainment! During the summer months you can sit back and enjoy fireworks over the lake and also get up close and personal with exotic animals at the TIGERS Exhibit. SummerFest brings excitement all over Barefoot Landing with parades, magicians, clowns, face painters, stilt walkers, jugglers and more 7 nights a week! Barefoot Landing is conveintently located to both Myrtle Beach and North Myrtle Beach travelers wanting to take it slow and easy....that\'s the beach way, that\'s the Barefoot Way.\r\n<h4>Broadway at the Beach</h4>\r\nIf you\'re looking for one place to go that has everything, Broadway at the Beach is 350 acres of paradise and was voted #1 Attraction in Myrtle Beach according to Trip Advisor. Featuring shopping, dining, nightlife, and entertainment you simply can not go wrong. 2011 brings new excitement and merchants such as WonderWorks Myrtle Beach (an amusement park for your mind), Legends in Concert (Myrtle Beach favorite recently relocated from Surfside Beach) and Bodies Revealed (summer months only). New restaurants feature Carlos \'n Charlies (family friendly Mexican restuarant), Tilted Kilt Pub &amp; Eatery (Scottish themed pub and festive eatery) and Good Time Charley\'s (American featuring sandwiches, hamburgers and more). You can still enjoy your favorites such as IMAX 3D Theatre, MagiQuest, Senor Frogs, Ripley\'s Aquarium, Jimmy Buffet\'s Margaritaville just to name a few. For those who once loved the Myrtle Beach Pavilion be sure to visit the Pavilion Nostaglia Park featuring some of the Pavilion\'s most popular rides including the historical carousel. Year round events and parades are some of the most popular in the area while the Fireworks show over Lake Broadway is a must see during the summer months and on special occasions. Shop, Dine, Dance, Play...It’s Broadwayyy Fun in Myrtle Beach!\r\n<h4>Carolina Opry</h4>\r\nCalvin Gilmore presents four legendary shows all in one legendary theater, The Carolina Opry located at Broadway at the Beach. For 25 years The Carolina Opry has been entertaining everyone who has walked through the door with 2 hours of high-energy music, comedy and dance. Good Vibrations features the best music from the 60s, 70s and 80s in a fast-paced show that will bring you back to the best in American popular music. The Carolina Opry Christmas Special combines the best of the holiday spirit with beloved musical performances, fresh comedy and breathtaking dance. LIGHT See The Music offers a one of a kind view of music with a lazer light show set to a variety of muscial genres. New for 2011 is Beatlemania Now! as seen on Broadway and recaptures everything you loved about The Beatles. Beatlemania Now! will run from June 15-September 4 and showtimes are at 5pm Wed-Sun. If you only see one show...it should be at The Carolina Opry.\r\n<h4>Celebrations Music Theatre</h4>\r\nNew for 2011 and located in Surfside Beach, Celebration Music Theatre features the legendary tribute artist show SUPERSTARZ! Live and the Broadway Celebration Series. They also offer a \"just for kids\" production called \"the Rocktastics!\" that will be performing June 15 - August 6. Don\'t miss their Broadway line-up for 2011 with the Minnie Pearl Gospel Hour, All Shook Up, Hairspray, The Southern Bellers and A Christmas Carol.\r\n<h4>Children\'s Museum of South Carolina</h4>\r\nCome \"Touch, Explore, and Play...\" while learning about your world through the interactive exhibits and programs at The Children\'s Museum of South Carolina. Located near the Myrtle Beach Convention Center, CMSC offers special programs, such as Tales for Tots and Digitalis Planetarium, are extremely popular with the adults and children who visit the Museum. With a wide variety of interactive exhibits kids of all ages are sure to have a fun learning experience.\r\n<h4>Coastal Grand Mall</h4>\r\nFeaturing anchor stores Belk, Dillard\'s, JC Penney and Sears; Coastal Grand Mall has quickly become the #1 mall in Myrtle Beach. Featuring more than 100 stores and restaurants, you will find everything you were looking for...and then some! After you have shopped until you drop, sit down and relax in the state of the art 14 screen Cinemark Movie Theater or enjoy something to eat at Abuelo\'s, Texas Roadhouse, Red Robin and more. Treat everyone in the family to something unique from Coastal Grand Mall.\r\n<h4>Family Kingdom Amusement Park</h4>\r\nJust one block from Oceans One Resort you will find Myrtle Beach\'s only Seaside Amusement Park and Oceanfront Water Park, Family Kingdom! Featuring Go Karts, Kiddie Rides, Family Rides, Water Rides and Thrill Rides the entire family can enjoy their time in the park. Best of all, there is NO ADMISSION FEE! New for 2011 is the Picnic Pavilion, a covered dining area that can accommodate up to 100 guests for birthday parties, family reunions or any other group outing.\r\n<h4>House of Blues</h4>\r\nThe House of Blues Myrtle Beach, located in Barefoot Landing, offers live music on the Sugar Shack Deck and the Concert Hall and delta inspired cuisine in their world famous restuarant. With leading acts from country, rock, top 40 and more your vacation won\'t be complete without the intimate setting with your favorite artist. You can even \"Pass the Line\" and \"Crash the Barricade\" to gain entry first into the concerts. The Gospel Brunch in the restaurant is something that shouldn\'t missed with an amazing buffet and inspiring gospel performances. Where the heart meets the soul®. The ultimate live music and dining experience.\r\n<h4>Legends in Concert</h4>\r\nThe World\'s Longest Running Live Tribute Show, Legends in Concert has been a favorite in Myrtle Beach for years and offering a variety of concerts and live shows and many other activities for all ages. Legends in Concert recently relocated a state-of-the-art theater in Broadway at the Beach next to Planet Hollywood!\r\n<h4>The Market Common</h4>\r\nA place where you can experience exceptional shopping and dining in a beautifully-designed village setting. From the nation’s most celebrated names in retail to ice cream and pizza for the kids, and from one-of-a-kind restaurants to the most comfortable movie theater at the beach, The Market Common is always worth your time. The Market Common is also home to multiple festivals all year long, such as Sun Fun Festival, Beerfest, Myrtle Beach Wine Fest, Oktoberfest and more!\r\n<h4>Medieval Times</h4>\r\nInside the stone walls of the 11th century-style castle, Medieval Spain comes to life as six knights, donning authentic armor, clash in a jousting tournament for the title of King\'s Champion. Let your imagination take you to Medieval Times.\r\n<h4>Myrtle Beach Boardwalk</h4>\r\nThe Myrtle Beach Boardwalk opened in 2010 to rave reviews! The 1.2 mile boardwalk stretches from 14th Avenue North to 2nd Avenue North in the heart of Myrtle Beach. The Myrtle Beach Boardwalk is home to restaurants, shopping, arcades, ice cream shops and more. In the center of it all is the brand new SkyWheel Myrtle Beach and Landshark Bar &amp; Grill which opened to rave reviews in May 2011!  Check out our <a title=\"Boardwalk\" href=\"http://oor.wbtaylor.net/index.php/boardwalk/\">Myrtle Beach Boardwalk page</a> for more information.\r\n<h4>Myrtle Beach Mall</h4>\r\nConveinently located at the corner of Highways 22 and 17, Myrtle Beach Mall continues to provide shoppers with unique stores and value not offered by other malls in the area. Two Belk stores, JCPenney are the long standing anchors and are now accompanied by the only Bass Pro Shops in South Carolina! The mall is also home to Uptown Theater, Home of the Carolina Improv, an improv comedy about living and playing Myrtle Beach. If you aren\'t sure what you need, shopping at Myrtle Beach Mall will help you figure it out.\r\n<h4>Myrtle Beach Pelicans</h4>\r\nThe Myrtle Beach Pelicans have been bringing minor league baseball to the beach since 1999 and as of 2011 are the Advanced \'A\' Affiliate of the Texas Rangers. With various promotions and events, including multiple fireworks shows, the Myrtle Beach Pelicans are a family favorite stop on their vacation. Kids are allowed to run the bases following the game and play catch on the field prior to the start of the game.  To add to the fun you always have to be on the lookout for Splash, the official mascot who is usually up to no good; Rally Shark, who adds excitement late in the game and the always popular, Deuce - part bat boy, part ball caddy. As they say...Baseball\'s Even Better at the Beach!\r\n<h4>Myrtle Waves</h4>\r\nVoted 1st Place in Best of the Beach in 2010, Myrtle Waves offers over 20 acres of swerves, curves, waves, and chutes and over 1 million gallons of water! Raft rides, Slides and Family Attractions make this a one-stop place for all around family fun in the sun. The younger kids will enjoy Bubble Bay and Saturation Station while the older kids (and adults) have a blast twisting and turning on Racin\' River, Turbo Twisters, Riptide Rockets Night Flight and more. Myrtle Waves is open seasonally (mid-May thru mid-September) and season passes are available.\r\n<h4>NASCAR SpeedPark</h4>\r\nIf speed is your thing then the NASCAR SpeedPark is for you, boasting over 26 acres of the industries hottest go-kart tracks, family rides, mini-golf courses, midway games, in addition to family dining in a relaxed and fun environment. Challenge everyone in your family to a little race and a lot of fun. NASCAR SpeedPark is open year round and various tickets pacakages are available.\r\n<h4>Palace Theatre</h4>\r\nThe Palace Theatre is located at Broadway at the Beach and is home to the best in live entertainment. Their 2011 lineup includes Hooray for Hollywood which will take you back through 50 years of movie history inlcuding some of the most popular song and dance routines from movies such as Singing in the Rain and Disney\'s \"Jungle Book\". Back by popular demand is The Magical Spirit of Ireland, enjoy sounds from the Irish Tenors and the world renowned Spirit of the Dance dancers. Get your heart pumping and your pulse racing with Le Grand Cirque Adreneline, a 2 hour death defying performance filled with contortionists, tumblers, incredible aerial acts as well as the breathtaking Wheel of Death. Start your holiday season in style with Christmas on Ice, a a one-of-a-kind show that is sure to be an instant family hit as Santa and his helpers take you on a journey around a 40 foot ice skating rink. The Palace Theatre boasts an elegance and beauty unrivaled by any other Theatre in South Carolina.\r\n<h4>Pirate\'s Voyage</h4>\r\nAll new for 2011, Pirate\'s Voyage is the latest live dinner show from Dolly Parton. After closing the doors on the long time running Dixie Stampede, Dolly Parton has revamped the venue into a pirates dream! Featuring 15 foot deep, 750 thousand gallon  lagoon, and 3 full-sized ships, complete with pirates, battling over who will take the treasure. Just revealed was the live animal show which will feature a sea lion who will perform and even \"arrrrrrrrgh\" multiple times during the show. The dinner menu has been updated as well but still continues with the ever popular soup from Dixie Stampede. Pirate\'s Voyage opens on June 3rd, 2011...it\'s time to get your tickets, matey!\r\n<h4>Ripley\'s Aquarium</h4>\r\nRipley\'s Aquarium Myrtle Beach can be found at Broadway at the Beach. Sea life is abundant in the aquarium with more than 350 individual species featuring 10,000 exotic sea creatures. Get hands on in the Discovery Center by holding a horseshoe crab or head over to Ray Bay, where you can reach out and touch a stingray as they glide by. See some of the more exotic fish from the Amazon River at Rio Amazon or get a glimpse of color at Rainbow Rock where the brightly colored Indo-Pacific fish swim through a coral reef. A new exhibit for 2011 gets you up close and personal with the ocean\'s most feared predator, Sharks-Perfect Predators features over a dozen species of sharks and interactive exhibits where you can even feel the force of a shark bite! Don\'t let your eyes fool you, another new exhibit for 2011 is Mermaids, a captivating show that will occur 3 times daily followed by meet and greets. If you\'re looking for family fun that is also educational, Ripley\'s Aquarium needs to be on your list!\r\n<h4>Second Avenue Pier</h4>\r\nRecently renovated, Second Avenue Pier, which has been around since 1936, is located on the southern portion of the Myrtle Beach Boardwalk and just steps away from Oceans One Resort. The pier now features the Pier House Restaurant and Pier View Bar &amp; Lounge (open air bar) as well as what the pier has been famous for...fishing! During the summer season, Second Avenue Pier is home to an amazing fireworks display every Wednesday night as part of the Hot Summer Nights on the Boardwalk. Whether you want to relax with some fishing poles, eat breakfast, lunch or dinner, or simply enjoy a tasty beverage in the ocean breeze, Second Avenue Pier is the place to be!\r\n<h4>SkyWheel Myrtle Beach</h4>\r\n<strong></strong>It\'s tall, it\'s round and it has a light show...yes, the SkyWheel Myrtle is hard to miss along the Myrtle Beach Boardwalk and for all the right reasons.  Standing 200 feet above sea level, you can enjoy a view rarely seen of the Grand Strand in one of 42 temperature controlled glass gondolas. At night a spectacular LED lightshow begins, giving that extra spark to downtown Myrtle Beach. Operating year round, your flight will consist of three rotations and ranges from 8-12 minutes in length and is the first observation wheel of its kind in the United States.\r\n<h4>Tanger Outlets</h4>\r\n<strong></strong>Shop guilt free at either Tanger Outlets located in both Myrtle Beach on 501 or on Kings Highway near Myrtle Beach Mall. With stores such as Coach, kate spade, Old Navy, Gap, Levi\'s, Under Armour, Carter\'s, Disney Store and many, many more; you are sure to find something for the entire family, even Dad! Not only will you find the nation’s leading designer and brand name stores with the widest selection but the prices are also backed by the Best Price Guarantee. When you shop at Tanger Outlets, you can shop with confidence while on vacation.\r\n<h4>WonderWorks</h4>\r\n<strong></strong>A new attraction at Broadway at the Beach in 2011 is WonderWorks, an indoor interactive amusement park for the mind. Whether you are driving by or walking around Broadway at the Beach, you can\'t help but be amazed at the building that appears to have fallen from the sky and landed upside down. WonderWorks features more than 100 exhibits that allow you to interact, discover and explore! Feel the 84 mph winds of a hurricane, build your own roller coaster or submarine adventure with WonderSimulators, pilot a fighter jet, manuever the controls of a NASA spacecraft or simply have fun with bubbles in the Bubble Lab. WonderWorks is open year round, seven days a week and they suggest you allow 3-4 hours to get the full experience.','Things to Do','','inherit','open','open','','61-revision-16','','','2011-06-06 19:30:30','2011-06-06 19:30:30','',61,'http://oor.wbtaylor.net/index.php/2011/06/61-revision-16/',0,'revision','',0),(149,1,'2011-06-06 19:47:12','2011-06-06 19:47:12','','Broadway at the Beach','','inherit','open','open','','221105_10150598183460433_209961260432_18527166_4310333_o','','','2011-06-06 19:47:12','2011-06-06 19:47:12','',61,'http://oor.wbtaylor.net/wp-content/uploads/2011/05/221105_10150598183460433_209961260432_18527166_4310333_o.jpg',0,'attachment','image/jpeg',0),(150,1,'2011-06-06 19:46:31','2011-06-06 19:46:31','<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\"><img class=\"alignleft size-full wp-image-145\" title=\"Alabama Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\" alt=\"Alabama Theatre\" width=\"130\" height=\"110\" /></a>Alabama Theatre</h4>\r\nVoted the #1 Live Theatre Attraction by Myrtle Beach Visitors featuring the Best in Family Entertainment is located in Barefoot Landing in North Myrtle Beach. The Alabama Theatre long standing performance is \"one The Show\". It has become a go-to show every vacation as the show changes from year to year. one features musical genres such as Country, Gospel, Broadway, Pop and Rock and don\'t forget the comedy! one is family favorite and a show you will never regret. If you visit during the holiday season, you will want to catch the other staple at Alabama Theatre - The South\'s Grandest Christmas Show. This family friendly holiday show features musical performances, dance and plenty of laughter from resident comedian Ricky Mokel. In addition to the regular shows, you will also have the opportunity to see live concerts from chart topping artists such as Kenny Rogers, The Oak Ridge Boys, LeeAnn Rimes and more!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/25739_117188041629520_117187501629574_301191_2621350_n.jpg\"><img class=\"alignleft size-full wp-image-146\" title=\"Alligator Adventure\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/25739_117188041629520_117187501629574_301191_2621350_n.jpg\" alt=\"Alligator Adventure\" width=\"130\" height=\"59\" /></a>Alligator Adventure</h4>\r\nLocated adjacent to Barefoot Landing in North Myrtle Beach, Alligator Adventure puts you face to face with reptiles, alligators, crocodiles, lemurs, tropical birds, tigers, beavers and bats...oh my! Their live shows are a favorite among visitors and feature Alligator Live Feedings in the warmer months (Mid-April through Mid-October), Alligator Handling and Lecture in the cooler months and Snake Handling. Alligator Adventure is also home to UTAN - King of Crocs, the largest crocodile in the United States measuring over 20 feet long! Tickets can be purchased online or at the ticket counter and discounts are available including Active Military discounts and a Locals discount. You also receive a 2nd day free with any paid admission, you can\'t afford not to experience Alligator Adventure!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/185605_204035776273335_111374112206169_853743_1453142_n.jpg\"><img class=\"alignleft size-full wp-image-147\" title=\"Barefoot Landing\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/185605_204035776273335_111374112206169_853743_1453142_n.jpg\" alt=\"Barefoot Landing\" width=\"130\" height=\"93\" /></a>Barefoot Landing</h4>\r\nBarefoot Landing, sitting along the Intercoastal Waterway, in North Myrtle Beach  is home to the Alabama Theatre, House of Blues, multiple restaurants, more than 100 specialty and retail shops and entertainment! During the summer months you can sit back and enjoy fireworks over the lake and also get up close and personal with exotic animals at the TIGERS Exhibit. SummerFest brings excitement all over Barefoot Landing with parades, magicians, clowns, face painters, stilt walkers, jugglers and more 7 nights a week! Barefoot Landing is conveintently located to both Myrtle Beach and North Myrtle Beach travelers wanting to take it slow and easy....that\'s the beach way, that\'s the Barefoot Way.\r\n<h4>Broadway at the Beach</h4>\r\nIf you\'re looking for one place to go that has everything, Broadway at the Beach is 350 acres of paradise and was voted #1 Attraction in Myrtle Beach according to Trip Advisor. Featuring shopping, dining, nightlife, and entertainment you simply can not go wrong. 2011 brings new excitement and merchants such as WonderWorks Myrtle Beach (an amusement park for your mind), Legends in Concert (Myrtle Beach favorite recently relocated from Surfside Beach) and Bodies Revealed (summer months only). New restaurants feature Carlos \'n Charlies (family friendly Mexican restuarant), Tilted Kilt Pub &amp; Eatery (Scottish themed pub and festive eatery) and Good Time Charley\'s (American featuring sandwiches, hamburgers and more). You can still enjoy your favorites such as IMAX 3D Theatre, MagiQuest, Senor Frogs, Ripley\'s Aquarium, Jimmy Buffet\'s Margaritaville just to name a few. For those who once loved the Myrtle Beach Pavilion be sure to visit the Pavilion Nostaglia Park featuring some of the Pavilion\'s most popular rides including the historical carousel. Year round events and parades are some of the most popular in the area while the Fireworks show over Lake Broadway is a must see during the summer months and on special occasions. Shop, Dine, Dance, Play...It’s Broadwayyy Fun in Myrtle Beach!\r\n<h4>Carolina Opry</h4>\r\nCalvin Gilmore presents four legendary shows all in one legendary theater, The Carolina Opry located at Broadway at the Beach. For 25 years The Carolina Opry has been entertaining everyone who has walked through the door with 2 hours of high-energy music, comedy and dance. Good Vibrations features the best music from the 60s, 70s and 80s in a fast-paced show that will bring you back to the best in American popular music. The Carolina Opry Christmas Special combines the best of the holiday spirit with beloved musical performances, fresh comedy and breathtaking dance. LIGHT See The Music offers a one of a kind view of music with a lazer light show set to a variety of muscial genres. New for 2011 is Beatlemania Now! as seen on Broadway and recaptures everything you loved about The Beatles. Beatlemania Now! will run from June 15-September 4 and showtimes are at 5pm Wed-Sun. If you only see one show...it should be at The Carolina Opry.\r\n<h4>Celebrations Music Theatre</h4>\r\nNew for 2011 and located in Surfside Beach, Celebration Music Theatre features the legendary tribute artist show SUPERSTARZ! Live and the Broadway Celebration Series. They also offer a \"just for kids\" production called \"the Rocktastics!\" that will be performing June 15 - August 6. Don\'t miss their Broadway line-up for 2011 with the Minnie Pearl Gospel Hour, All Shook Up, Hairspray, The Southern Bellers and A Christmas Carol.\r\n<h4>Children\'s Museum of South Carolina</h4>\r\nCome \"Touch, Explore, and Play...\" while learning about your world through the interactive exhibits and programs at The Children\'s Museum of South Carolina. Located near the Myrtle Beach Convention Center, CMSC offers special programs, such as Tales for Tots and Digitalis Planetarium, are extremely popular with the adults and children who visit the Museum. With a wide variety of interactive exhibits kids of all ages are sure to have a fun learning experience.\r\n<h4>Coastal Grand Mall</h4>\r\nFeaturing anchor stores Belk, Dillard\'s, JC Penney and Sears; Coastal Grand Mall has quickly become the #1 mall in Myrtle Beach. Featuring more than 100 stores and restaurants, you will find everything you were looking for...and then some! After you have shopped until you drop, sit down and relax in the state of the art 14 screen Cinemark Movie Theater or enjoy something to eat at Abuelo\'s, Texas Roadhouse, Red Robin and more. Treat everyone in the family to something unique from Coastal Grand Mall.\r\n<h4>Family Kingdom Amusement Park</h4>\r\nJust one block from Oceans One Resort you will find Myrtle Beach\'s only Seaside Amusement Park and Oceanfront Water Park, Family Kingdom! Featuring Go Karts, Kiddie Rides, Family Rides, Water Rides and Thrill Rides the entire family can enjoy their time in the park. Best of all, there is NO ADMISSION FEE! New for 2011 is the Picnic Pavilion, a covered dining area that can accommodate up to 100 guests for birthday parties, family reunions or any other group outing.\r\n<h4>House of Blues</h4>\r\nThe House of Blues Myrtle Beach, located in Barefoot Landing, offers live music on the Sugar Shack Deck and the Concert Hall and delta inspired cuisine in their world famous restuarant. With leading acts from country, rock, top 40 and more your vacation won\'t be complete without the intimate setting with your favorite artist. You can even \"Pass the Line\" and \"Crash the Barricade\" to gain entry first into the concerts. The Gospel Brunch in the restaurant is something that shouldn\'t missed with an amazing buffet and inspiring gospel performances. Where the heart meets the soul®. The ultimate live music and dining experience.\r\n<h4>Legends in Concert</h4>\r\nThe World\'s Longest Running Live Tribute Show, Legends in Concert has been a favorite in Myrtle Beach for years and offering a variety of concerts and live shows and many other activities for all ages. Legends in Concert recently relocated a state-of-the-art theater in Broadway at the Beach next to Planet Hollywood!\r\n<h4>The Market Common</h4>\r\nA place where you can experience exceptional shopping and dining in a beautifully-designed village setting. From the nation’s most celebrated names in retail to ice cream and pizza for the kids, and from one-of-a-kind restaurants to the most comfortable movie theater at the beach, The Market Common is always worth your time. The Market Common is also home to multiple festivals all year long, such as Sun Fun Festival, Beerfest, Myrtle Beach Wine Fest, Oktoberfest and more!\r\n<h4>Medieval Times</h4>\r\nInside the stone walls of the 11th century-style castle, Medieval Spain comes to life as six knights, donning authentic armor, clash in a jousting tournament for the title of King\'s Champion. Let your imagination take you to Medieval Times.\r\n<h4>Myrtle Beach Boardwalk</h4>\r\nThe Myrtle Beach Boardwalk opened in 2010 to rave reviews! The 1.2 mile boardwalk stretches from 14th Avenue North to 2nd Avenue North in the heart of Myrtle Beach. The Myrtle Beach Boardwalk is home to restaurants, shopping, arcades, ice cream shops and more. In the center of it all is the brand new SkyWheel Myrtle Beach and Landshark Bar &amp; Grill which opened to rave reviews in May 2011!  Check out our <a title=\"Boardwalk\" href=\"http://oor.wbtaylor.net/index.php/boardwalk/\">Myrtle Beach Boardwalk page</a> for more information.\r\n<h4>Myrtle Beach Mall</h4>\r\nConveinently located at the corner of Highways 22 and 17, Myrtle Beach Mall continues to provide shoppers with unique stores and value not offered by other malls in the area. Two Belk stores, JCPenney are the long standing anchors and are now accompanied by the only Bass Pro Shops in South Carolina! The mall is also home to Uptown Theater, Home of the Carolina Improv, an improv comedy about living and playing Myrtle Beach. If you aren\'t sure what you need, shopping at Myrtle Beach Mall will help you figure it out.\r\n<h4>Myrtle Beach Pelicans</h4>\r\nThe Myrtle Beach Pelicans have been bringing minor league baseball to the beach since 1999 and as of 2011 are the Advanced \'A\' Affiliate of the Texas Rangers. With various promotions and events, including multiple fireworks shows, the Myrtle Beach Pelicans are a family favorite stop on their vacation. Kids are allowed to run the bases following the game and play catch on the field prior to the start of the game.  To add to the fun you always have to be on the lookout for Splash, the official mascot who is usually up to no good; Rally Shark, who adds excitement late in the game and the always popular, Deuce - part bat boy, part ball caddy. As they say...Baseball\'s Even Better at the Beach!\r\n<h4>Myrtle Waves</h4>\r\nVoted 1st Place in Best of the Beach in 2010, Myrtle Waves offers over 20 acres of swerves, curves, waves, and chutes and over 1 million gallons of water! Raft rides, Slides and Family Attractions make this a one-stop place for all around family fun in the sun. The younger kids will enjoy Bubble Bay and Saturation Station while the older kids (and adults) have a blast twisting and turning on Racin\' River, Turbo Twisters, Riptide Rockets Night Flight and more. Myrtle Waves is open seasonally (mid-May thru mid-September) and season passes are available.\r\n<h4>NASCAR SpeedPark</h4>\r\nIf speed is your thing then the NASCAR SpeedPark is for you, boasting over 26 acres of the industries hottest go-kart tracks, family rides, mini-golf courses, midway games, in addition to family dining in a relaxed and fun environment. Challenge everyone in your family to a little race and a lot of fun. NASCAR SpeedPark is open year round and various tickets pacakages are available.\r\n<h4>Palace Theatre</h4>\r\nThe Palace Theatre is located at Broadway at the Beach and is home to the best in live entertainment. Their 2011 lineup includes Hooray for Hollywood which will take you back through 50 years of movie history inlcuding some of the most popular song and dance routines from movies such as Singing in the Rain and Disney\'s \"Jungle Book\". Back by popular demand is The Magical Spirit of Ireland, enjoy sounds from the Irish Tenors and the world renowned Spirit of the Dance dancers. Get your heart pumping and your pulse racing with Le Grand Cirque Adreneline, a 2 hour death defying performance filled with contortionists, tumblers, incredible aerial acts as well as the breathtaking Wheel of Death. Start your holiday season in style with Christmas on Ice, a a one-of-a-kind show that is sure to be an instant family hit as Santa and his helpers take you on a journey around a 40 foot ice skating rink. The Palace Theatre boasts an elegance and beauty unrivaled by any other Theatre in South Carolina.\r\n<h4>Pirate\'s Voyage</h4>\r\nAll new for 2011, Pirate\'s Voyage is the latest live dinner show from Dolly Parton. After closing the doors on the long time running Dixie Stampede, Dolly Parton has revamped the venue into a pirates dream! Featuring 15 foot deep, 750 thousand gallon  lagoon, and 3 full-sized ships, complete with pirates, battling over who will take the treasure. Just revealed was the live animal show which will feature a sea lion who will perform and even \"arrrrrrrrgh\" multiple times during the show. The dinner menu has been updated as well but still continues with the ever popular soup from Dixie Stampede. Pirate\'s Voyage opens on June 3rd, 2011...it\'s time to get your tickets, matey!\r\n<h4>Ripley\'s Aquarium</h4>\r\nRipley\'s Aquarium Myrtle Beach can be found at Broadway at the Beach. Sea life is abundant in the aquarium with more than 350 individual species featuring 10,000 exotic sea creatures. Get hands on in the Discovery Center by holding a horseshoe crab or head over to Ray Bay, where you can reach out and touch a stingray as they glide by. See some of the more exotic fish from the Amazon River at Rio Amazon or get a glimpse of color at Rainbow Rock where the brightly colored Indo-Pacific fish swim through a coral reef. A new exhibit for 2011 gets you up close and personal with the ocean\'s most feared predator, Sharks-Perfect Predators features over a dozen species of sharks and interactive exhibits where you can even feel the force of a shark bite! Don\'t let your eyes fool you, another new exhibit for 2011 is Mermaids, a captivating show that will occur 3 times daily followed by meet and greets. If you\'re looking for family fun that is also educational, Ripley\'s Aquarium needs to be on your list!\r\n<h4>Second Avenue Pier</h4>\r\nRecently renovated, Second Avenue Pier, which has been around since 1936, is located on the southern portion of the Myrtle Beach Boardwalk and just steps away from Oceans One Resort. The pier now features the Pier House Restaurant and Pier View Bar &amp; Lounge (open air bar) as well as what the pier has been famous for...fishing! During the summer season, Second Avenue Pier is home to an amazing fireworks display every Wednesday night as part of the Hot Summer Nights on the Boardwalk. Whether you want to relax with some fishing poles, eat breakfast, lunch or dinner, or simply enjoy a tasty beverage in the ocean breeze, Second Avenue Pier is the place to be!\r\n<h4>SkyWheel Myrtle Beach</h4>\r\n<strong></strong>It\'s tall, it\'s round and it has a light show...yes, the SkyWheel Myrtle is hard to miss along the Myrtle Beach Boardwalk and for all the right reasons.  Standing 200 feet above sea level, you can enjoy a view rarely seen of the Grand Strand in one of 42 temperature controlled glass gondolas. At night a spectacular LED lightshow begins, giving that extra spark to downtown Myrtle Beach. Operating year round, your flight will consist of three rotations and ranges from 8-12 minutes in length and is the first observation wheel of its kind in the United States.\r\n<h4>Tanger Outlets</h4>\r\n<strong></strong>Shop guilt free at either Tanger Outlets located in both Myrtle Beach on 501 or on Kings Highway near Myrtle Beach Mall. With stores such as Coach, kate spade, Old Navy, Gap, Levi\'s, Under Armour, Carter\'s, Disney Store and many, many more; you are sure to find something for the entire family, even Dad! Not only will you find the nation’s leading designer and brand name stores with the widest selection but the prices are also backed by the Best Price Guarantee. When you shop at Tanger Outlets, you can shop with confidence while on vacation.\r\n<h4>WonderWorks</h4>\r\n<strong></strong>A new attraction at Broadway at the Beach in 2011 is WonderWorks, an indoor interactive amusement park for the mind. Whether you are driving by or walking around Broadway at the Beach, you can\'t help but be amazed at the building that appears to have fallen from the sky and landed upside down. WonderWorks features more than 100 exhibits that allow you to interact, discover and explore! Feel the 84 mph winds of a hurricane, build your own roller coaster or submarine adventure with WonderSimulators, pilot a fighter jet, manuever the controls of a NASA spacecraft or simply have fun with bubbles in the Bubble Lab. WonderWorks is open year round, seven days a week and they suggest you allow 3-4 hours to get the full experience.','Things to Do','','inherit','open','open','','61-revision-17','','','2011-06-06 19:46:31','2011-06-06 19:46:31','',61,'http://oor.wbtaylor.net/index.php/2011/06/61-revision-17/',0,'revision','',0),(151,1,'2011-06-06 19:47:50','2011-06-06 19:47:50','','The Carolina Opry','','inherit','open','open','','36803_426904242365_31054032365_4668034_4118876_n','','','2011-06-06 19:47:50','2011-06-06 19:47:50','',61,'http://oor.wbtaylor.net/wp-content/uploads/2011/05/36803_426904242365_31054032365_4668034_4118876_n.jpg',0,'attachment','image/jpeg',0),(152,1,'2011-06-06 19:48:18','2011-06-06 19:48:18','','Celebration Music Theatre','','inherit','open','open','','165770_159098390807159_156683157715349_325517_5126739_n','','','2011-06-06 19:48:18','2011-06-06 19:48:18','',61,'http://oor.wbtaylor.net/wp-content/uploads/2011/05/165770_159098390807159_156683157715349_325517_5126739_n.jpg',0,'attachment','image/jpeg',0),(153,1,'2011-06-06 19:48:53','2011-06-06 19:48:53','','Children\'s Museum of South Carolina','','inherit','open','open','','n60005132046_1972058_8249708','','','2011-06-06 19:48:53','2011-06-06 19:48:53','',61,'http://oor.wbtaylor.net/wp-content/uploads/2011/05/n60005132046_1972058_8249708.jpg',0,'attachment','image/jpeg',0),(154,1,'2011-06-06 19:49:21','2011-06-06 19:49:21','','Coastal Grand Mall','','inherit','open','open','','29330_127959170555007_127958977221693_331764_1537881_n','','','2011-06-06 19:49:21','2011-06-06 19:49:21','',61,'http://oor.wbtaylor.net/wp-content/uploads/2011/05/29330_127959170555007_127958977221693_331764_1537881_n.jpg',0,'attachment','image/jpeg',0),(155,1,'2011-06-06 19:49:43','2011-06-06 19:49:43','','Family Kingdom Amusement Park','','inherit','open','open','','20039_235537488958_94486398958_3067222_3404770_n','','','2011-06-06 19:49:43','2011-06-06 19:49:43','',61,'http://oor.wbtaylor.net/wp-content/uploads/2011/05/20039_235537488958_94486398958_3067222_3404770_n.jpg',0,'attachment','image/jpeg',0),(156,1,'2011-06-06 19:50:14','2011-06-06 19:50:14','','House of Blues','','inherit','open','open','','72254_10150319280965158_196453920157_15571741_4625780_n','','','2011-06-06 19:50:14','2011-06-06 19:50:14','',61,'http://oor.wbtaylor.net/wp-content/uploads/2011/05/72254_10150319280965158_196453920157_15571741_4625780_n.jpg',0,'attachment','image/jpeg',0),(157,1,'2011-06-06 19:50:31','2011-06-06 19:50:31','','Legends in Concert','','inherit','open','open','','15867_170700122851_45187567851_2960017_1281271_n','','','2011-06-06 19:50:31','2011-06-06 19:50:31','',61,'http://oor.wbtaylor.net/wp-content/uploads/2011/05/15867_170700122851_45187567851_2960017_1281271_n.jpg',0,'attachment','image/jpeg',0),(158,1,'2011-06-06 19:51:00','2011-06-06 19:51:00','','The Market Common','','inherit','open','open','','n43711241696_2031957_4252189','','','2011-06-06 19:51:00','2011-06-06 19:51:00','',61,'http://oor.wbtaylor.net/wp-content/uploads/2011/05/n43711241696_2031957_4252189.jpg',0,'attachment','image/jpeg',0),(159,1,'2011-06-06 19:51:37','2011-06-06 19:51:37','','Medieval Times','','inherit','open','open','','12935_202879413428_31330523428_3156769_3542982_n','','','2011-06-06 19:51:37','2011-06-06 19:51:37','',61,'http://oor.wbtaylor.net/wp-content/uploads/2011/05/12935_202879413428_31330523428_3156769_3542982_n.jpg',0,'attachment','image/jpeg',0),(160,1,'2011-06-06 19:51:59','2011-06-06 19:51:59','','Myrtle Beach Boardwalk','','inherit','open','open','','30659_128515707171283_113684151987772_212653_3752426_n','','','2011-06-06 19:51:59','2011-06-06 19:51:59','',61,'http://oor.wbtaylor.net/wp-content/uploads/2011/05/30659_128515707171283_113684151987772_212653_3752426_n.jpg',0,'attachment','image/jpeg',0),(161,1,'2011-06-06 19:52:20','2011-06-06 19:52:20','','Myrtle Beach Mall','','inherit','open','open','','36253_189678207725374_113346388691890_679290_4273636_n','','','2011-06-06 19:52:20','2011-06-06 19:52:20','',61,'http://oor.wbtaylor.net/wp-content/uploads/2011/05/36253_189678207725374_113346388691890_679290_4273636_n.jpg',0,'attachment','image/jpeg',0),(162,1,'2011-06-06 19:52:40','2011-06-06 19:52:40','','Myrtle Beach Pelicans','','inherit','open','open','','n70793224673_1768505_6774025','','','2011-06-06 19:52:40','2011-06-06 19:52:40','',61,'http://oor.wbtaylor.net/wp-content/uploads/2011/05/n70793224673_1768505_6774025.jpg',0,'attachment','image/jpeg',0),(163,1,'2011-06-06 19:53:00','2011-06-06 19:53:00','','Myrtle Waves','','inherit','open','open','','5815_111476139824_111222624824_2032117_1940650_n','','','2011-06-06 19:53:00','2011-06-06 19:53:00','',61,'http://oor.wbtaylor.net/wp-content/uploads/2011/05/5815_111476139824_111222624824_2032117_1940650_n.jpg',0,'attachment','image/jpeg',0),(164,1,'2011-06-06 19:53:18','2011-06-06 19:53:18','','NASCAR SpeedPark','','inherit','open','open','','19174_252369281043_209993466043_3841063_2345964_n','','','2011-06-06 19:53:18','2011-06-06 19:53:18','',61,'http://oor.wbtaylor.net/wp-content/uploads/2011/05/19174_252369281043_209993466043_3841063_2345964_n.jpg',0,'attachment','image/jpeg',0),(165,1,'2011-06-06 19:53:42','2011-06-06 19:53:42','','The Palace Theatre','','inherit','open','open','','6609_109386611532_107473016532_2615436_7261003_n','','','2011-06-06 19:53:42','2011-06-06 19:53:42','',61,'http://oor.wbtaylor.net/wp-content/uploads/2011/05/6609_109386611532_107473016532_2615436_7261003_n.jpg',0,'attachment','image/jpeg',0),(166,1,'2011-06-06 19:54:08','2011-06-06 19:54:08','','Pirate\'s Voyage','','inherit','open','open','','248098_168641923198993_103486043047915_488794_5571923_n','','','2011-06-06 19:54:08','2011-06-06 19:54:08','',61,'http://oor.wbtaylor.net/wp-content/uploads/2011/05/248098_168641923198993_103486043047915_488794_5571923_n.jpg',0,'attachment','image/jpeg',0),(167,1,'2011-06-06 19:54:34','2011-06-06 19:54:34','','Ripley\'s Aquarium','','inherit','open','open','','n52724914645_1534472_5319779','','','2011-06-06 19:54:34','2011-06-06 19:54:34','',61,'http://oor.wbtaylor.net/wp-content/uploads/2011/05/n52724914645_1534472_5319779.jpg',0,'attachment','image/jpeg',0),(168,1,'2011-06-06 19:55:00','2011-06-06 19:55:00','','Second Avenue Pier','','inherit','open','open','','17337_470146280006_470128185006_10677882_3874238_n','','','2011-06-06 19:55:00','2011-06-06 19:55:00','',61,'http://oor.wbtaylor.net/wp-content/uploads/2011/05/17337_470146280006_470128185006_10677882_3874238_n.jpg',0,'attachment','image/jpeg',0),(169,1,'2011-06-06 19:55:26','2011-06-06 19:55:26','','SkyWheel Myrtle Beach','','inherit','open','open','','170744_140966505959886_129530977103439_243558_6670767_o','','','2011-06-06 19:55:26','2011-06-06 19:55:26','',61,'http://oor.wbtaylor.net/wp-content/uploads/2011/05/170744_140966505959886_129530977103439_243558_6670767_o.jpg',0,'attachment','image/jpeg',0),(170,1,'2011-06-06 19:55:48','2011-06-06 19:55:48','','Tanger Outlets','','inherit','open','open','','n25273984618_1008302_1057','','','2011-06-06 19:55:48','2011-06-06 19:55:48','',61,'http://oor.wbtaylor.net/wp-content/uploads/2011/05/n25273984618_1008302_1057.jpg',0,'attachment','image/jpeg',0),(171,1,'2011-06-06 19:56:11','2011-06-06 19:56:11','','WonderWorks','','inherit','open','open','','193863_159995370724615_152235458167273_330537_123776_o','','','2011-06-06 19:56:11','2011-06-06 19:56:11','',61,'http://oor.wbtaylor.net/wp-content/uploads/2011/05/193863_159995370724615_152235458167273_330537_123776_o.jpg',0,'attachment','image/jpeg',0),(172,1,'2011-06-06 19:47:28','2011-06-06 19:47:28','<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\"><img class=\"alignleft size-full wp-image-145\" title=\"Alabama Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\" alt=\"Alabama Theatre\" width=\"130\" height=\"110\" /></a>Alabama Theatre</h4>\r\nVoted the #1 Live Theatre Attraction by Myrtle Beach Visitors featuring the Best in Family Entertainment is located in Barefoot Landing in North Myrtle Beach. The Alabama Theatre long standing performance is \"one The Show\". It has become a go-to show every vacation as the show changes from year to year. one features musical genres such as Country, Gospel, Broadway, Pop and Rock and don\'t forget the comedy! one is family favorite and a show you will never regret. If you visit during the holiday season, you will want to catch the other staple at Alabama Theatre - The South\'s Grandest Christmas Show. This family friendly holiday show features musical performances, dance and plenty of laughter from resident comedian Ricky Mokel. In addition to the regular shows, you will also have the opportunity to see live concerts from chart topping artists such as Kenny Rogers, The Oak Ridge Boys, LeeAnn Rimes and more!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/25739_117188041629520_117187501629574_301191_2621350_n.jpg\"><img class=\"alignleft size-full wp-image-146\" title=\"Alligator Adventure\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/25739_117188041629520_117187501629574_301191_2621350_n.jpg\" alt=\"Alligator Adventure\" width=\"130\" height=\"59\" /></a>Alligator Adventure</h4>\r\nLocated adjacent to Barefoot Landing in North Myrtle Beach, Alligator Adventure puts you face to face with reptiles, alligators, crocodiles, lemurs, tropical birds, tigers, beavers and bats...oh my! Their live shows are a favorite among visitors and feature Alligator Live Feedings in the warmer months (Mid-April through Mid-October), Alligator Handling and Lecture in the cooler months and Snake Handling. Alligator Adventure is also home to UTAN - King of Crocs, the largest crocodile in the United States measuring over 20 feet long! Tickets can be purchased online or at the ticket counter and discounts are available including Active Military discounts and a Locals discount. You also receive a 2nd day free with any paid admission, you can\'t afford not to experience Alligator Adventure!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/185605_204035776273335_111374112206169_853743_1453142_n.jpg\"><img class=\"alignleft size-full wp-image-147\" title=\"Barefoot Landing\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/185605_204035776273335_111374112206169_853743_1453142_n.jpg\" alt=\"Barefoot Landing\" width=\"130\" height=\"93\" /></a>Barefoot Landing</h4>\r\nBarefoot Landing, sitting along the Intercoastal Waterway, in North Myrtle Beach  is home to the Alabama Theatre, House of Blues, multiple restaurants, more than 100 specialty and retail shops and entertainment! During the summer months you can sit back and enjoy fireworks over the lake and also get up close and personal with exotic animals at the TIGERS Exhibit. SummerFest brings excitement all over Barefoot Landing with parades, magicians, clowns, face painters, stilt walkers, jugglers and more 7 nights a week! Barefoot Landing is conveintently located to both Myrtle Beach and North Myrtle Beach travelers wanting to take it slow and easy....that\'s the beach way, that\'s the Barefoot Way.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/221105_10150598183460433_209961260432_18527166_4310333_o.jpg\"><img class=\"alignleft size-full wp-image-149\" title=\"Broadway at the Beach\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/221105_10150598183460433_209961260432_18527166_4310333_o.jpg\" alt=\"Broadway at the Beach\" width=\"130\" height=\"99\" /></a>Broadway at the Beach</h4>\r\nIf you\'re looking for one place to go that has everything, Broadway at the Beach is 350 acres of paradise and was voted #1 Attraction in Myrtle Beach according to Trip Advisor. Featuring shopping, dining, nightlife, and entertainment you simply can not go wrong. 2011 brings new excitement and merchants such as WonderWorks Myrtle Beach (an amusement park for your mind), Legends in Concert (Myrtle Beach favorite recently relocated from Surfside Beach) and Bodies Revealed (summer months only). New restaurants feature Carlos \'n Charlies (family friendly Mexican restuarant), Tilted Kilt Pub &amp; Eatery (Scottish themed pub and festive eatery) and Good Time Charley\'s (American featuring sandwiches, hamburgers and more). You can still enjoy your favorites such as IMAX 3D Theatre, MagiQuest, Senor Frogs, Ripley\'s Aquarium, Jimmy Buffet\'s Margaritaville just to name a few. For those who once loved the Myrtle Beach Pavilion be sure to visit the Pavilion Nostaglia Park featuring some of the Pavilion\'s most popular rides including the historical carousel. Year round events and parades are some of the most popular in the area while the Fireworks show over Lake Broadway is a must see during the summer months and on special occasions. Shop, Dine, Dance, Play...It’s Broadwayyy Fun in Myrtle Beach!\r\n<h4>Carolina Opry</h4>\r\nCalvin Gilmore presents four legendary shows all in one legendary theater, The Carolina Opry located at Broadway at the Beach. For 25 years The Carolina Opry has been entertaining everyone who has walked through the door with 2 hours of high-energy music, comedy and dance. Good Vibrations features the best music from the 60s, 70s and 80s in a fast-paced show that will bring you back to the best in American popular music. The Carolina Opry Christmas Special combines the best of the holiday spirit with beloved musical performances, fresh comedy and breathtaking dance. LIGHT See The Music offers a one of a kind view of music with a lazer light show set to a variety of muscial genres. New for 2011 is Beatlemania Now! as seen on Broadway and recaptures everything you loved about The Beatles. Beatlemania Now! will run from June 15-September 4 and showtimes are at 5pm Wed-Sun. If you only see one show...it should be at The Carolina Opry.\r\n<h4>Celebrations Music Theatre</h4>\r\nNew for 2011 and located in Surfside Beach, Celebration Music Theatre features the legendary tribute artist show SUPERSTARZ! Live and the Broadway Celebration Series. They also offer a \"just for kids\" production called \"the Rocktastics!\" that will be performing June 15 - August 6. Don\'t miss their Broadway line-up for 2011 with the Minnie Pearl Gospel Hour, All Shook Up, Hairspray, The Southern Bellers and A Christmas Carol.\r\n<h4>Children\'s Museum of South Carolina</h4>\r\nCome \"Touch, Explore, and Play...\" while learning about your world through the interactive exhibits and programs at The Children\'s Museum of South Carolina. Located near the Myrtle Beach Convention Center, CMSC offers special programs, such as Tales for Tots and Digitalis Planetarium, are extremely popular with the adults and children who visit the Museum. With a wide variety of interactive exhibits kids of all ages are sure to have a fun learning experience.\r\n<h4>Coastal Grand Mall</h4>\r\nFeaturing anchor stores Belk, Dillard\'s, JC Penney and Sears; Coastal Grand Mall has quickly become the #1 mall in Myrtle Beach. Featuring more than 100 stores and restaurants, you will find everything you were looking for...and then some! After you have shopped until you drop, sit down and relax in the state of the art 14 screen Cinemark Movie Theater or enjoy something to eat at Abuelo\'s, Texas Roadhouse, Red Robin and more. Treat everyone in the family to something unique from Coastal Grand Mall.\r\n<h4>Family Kingdom Amusement Park</h4>\r\nJust one block from Oceans One Resort you will find Myrtle Beach\'s only Seaside Amusement Park and Oceanfront Water Park, Family Kingdom! Featuring Go Karts, Kiddie Rides, Family Rides, Water Rides and Thrill Rides the entire family can enjoy their time in the park. Best of all, there is NO ADMISSION FEE! New for 2011 is the Picnic Pavilion, a covered dining area that can accommodate up to 100 guests for birthday parties, family reunions or any other group outing.\r\n<h4>House of Blues</h4>\r\nThe House of Blues Myrtle Beach, located in Barefoot Landing, offers live music on the Sugar Shack Deck and the Concert Hall and delta inspired cuisine in their world famous restuarant. With leading acts from country, rock, top 40 and more your vacation won\'t be complete without the intimate setting with your favorite artist. You can even \"Pass the Line\" and \"Crash the Barricade\" to gain entry first into the concerts. The Gospel Brunch in the restaurant is something that shouldn\'t missed with an amazing buffet and inspiring gospel performances. Where the heart meets the soul®. The ultimate live music and dining experience.\r\n<h4>Legends in Concert</h4>\r\nThe World\'s Longest Running Live Tribute Show, Legends in Concert has been a favorite in Myrtle Beach for years and offering a variety of concerts and live shows and many other activities for all ages. Legends in Concert recently relocated a state-of-the-art theater in Broadway at the Beach next to Planet Hollywood!\r\n<h4>The Market Common</h4>\r\nA place where you can experience exceptional shopping and dining in a beautifully-designed village setting. From the nation’s most celebrated names in retail to ice cream and pizza for the kids, and from one-of-a-kind restaurants to the most comfortable movie theater at the beach, The Market Common is always worth your time. The Market Common is also home to multiple festivals all year long, such as Sun Fun Festival, Beerfest, Myrtle Beach Wine Fest, Oktoberfest and more!\r\n<h4>Medieval Times</h4>\r\nInside the stone walls of the 11th century-style castle, Medieval Spain comes to life as six knights, donning authentic armor, clash in a jousting tournament for the title of King\'s Champion. Let your imagination take you to Medieval Times.\r\n<h4>Myrtle Beach Boardwalk</h4>\r\nThe Myrtle Beach Boardwalk opened in 2010 to rave reviews! The 1.2 mile boardwalk stretches from 14th Avenue North to 2nd Avenue North in the heart of Myrtle Beach. The Myrtle Beach Boardwalk is home to restaurants, shopping, arcades, ice cream shops and more. In the center of it all is the brand new SkyWheel Myrtle Beach and Landshark Bar &amp; Grill which opened to rave reviews in May 2011!  Check out our <a title=\"Boardwalk\" href=\"http://oor.wbtaylor.net/index.php/boardwalk/\">Myrtle Beach Boardwalk page</a> for more information.\r\n<h4>Myrtle Beach Mall</h4>\r\nConveinently located at the corner of Highways 22 and 17, Myrtle Beach Mall continues to provide shoppers with unique stores and value not offered by other malls in the area. Two Belk stores, JCPenney are the long standing anchors and are now accompanied by the only Bass Pro Shops in South Carolina! The mall is also home to Uptown Theater, Home of the Carolina Improv, an improv comedy about living and playing Myrtle Beach. If you aren\'t sure what you need, shopping at Myrtle Beach Mall will help you figure it out.\r\n<h4>Myrtle Beach Pelicans</h4>\r\nThe Myrtle Beach Pelicans have been bringing minor league baseball to the beach since 1999 and as of 2011 are the Advanced \'A\' Affiliate of the Texas Rangers. With various promotions and events, including multiple fireworks shows, the Myrtle Beach Pelicans are a family favorite stop on their vacation. Kids are allowed to run the bases following the game and play catch on the field prior to the start of the game.  To add to the fun you always have to be on the lookout for Splash, the official mascot who is usually up to no good; Rally Shark, who adds excitement late in the game and the always popular, Deuce - part bat boy, part ball caddy. As they say...Baseball\'s Even Better at the Beach!\r\n<h4>Myrtle Waves</h4>\r\nVoted 1st Place in Best of the Beach in 2010, Myrtle Waves offers over 20 acres of swerves, curves, waves, and chutes and over 1 million gallons of water! Raft rides, Slides and Family Attractions make this a one-stop place for all around family fun in the sun. The younger kids will enjoy Bubble Bay and Saturation Station while the older kids (and adults) have a blast twisting and turning on Racin\' River, Turbo Twisters, Riptide Rockets Night Flight and more. Myrtle Waves is open seasonally (mid-May thru mid-September) and season passes are available.\r\n<h4>NASCAR SpeedPark</h4>\r\nIf speed is your thing then the NASCAR SpeedPark is for you, boasting over 26 acres of the industries hottest go-kart tracks, family rides, mini-golf courses, midway games, in addition to family dining in a relaxed and fun environment. Challenge everyone in your family to a little race and a lot of fun. NASCAR SpeedPark is open year round and various tickets pacakages are available.\r\n<h4>Palace Theatre</h4>\r\nThe Palace Theatre is located at Broadway at the Beach and is home to the best in live entertainment. Their 2011 lineup includes Hooray for Hollywood which will take you back through 50 years of movie history inlcuding some of the most popular song and dance routines from movies such as Singing in the Rain and Disney\'s \"Jungle Book\". Back by popular demand is The Magical Spirit of Ireland, enjoy sounds from the Irish Tenors and the world renowned Spirit of the Dance dancers. Get your heart pumping and your pulse racing with Le Grand Cirque Adreneline, a 2 hour death defying performance filled with contortionists, tumblers, incredible aerial acts as well as the breathtaking Wheel of Death. Start your holiday season in style with Christmas on Ice, a a one-of-a-kind show that is sure to be an instant family hit as Santa and his helpers take you on a journey around a 40 foot ice skating rink. The Palace Theatre boasts an elegance and beauty unrivaled by any other Theatre in South Carolina.\r\n<h4>Pirate\'s Voyage</h4>\r\nAll new for 2011, Pirate\'s Voyage is the latest live dinner show from Dolly Parton. After closing the doors on the long time running Dixie Stampede, Dolly Parton has revamped the venue into a pirates dream! Featuring 15 foot deep, 750 thousand gallon  lagoon, and 3 full-sized ships, complete with pirates, battling over who will take the treasure. Just revealed was the live animal show which will feature a sea lion who will perform and even \"arrrrrrrrgh\" multiple times during the show. The dinner menu has been updated as well but still continues with the ever popular soup from Dixie Stampede. Pirate\'s Voyage opens on June 3rd, 2011...it\'s time to get your tickets, matey!\r\n<h4>Ripley\'s Aquarium</h4>\r\nRipley\'s Aquarium Myrtle Beach can be found at Broadway at the Beach. Sea life is abundant in the aquarium with more than 350 individual species featuring 10,000 exotic sea creatures. Get hands on in the Discovery Center by holding a horseshoe crab or head over to Ray Bay, where you can reach out and touch a stingray as they glide by. See some of the more exotic fish from the Amazon River at Rio Amazon or get a glimpse of color at Rainbow Rock where the brightly colored Indo-Pacific fish swim through a coral reef. A new exhibit for 2011 gets you up close and personal with the ocean\'s most feared predator, Sharks-Perfect Predators features over a dozen species of sharks and interactive exhibits where you can even feel the force of a shark bite! Don\'t let your eyes fool you, another new exhibit for 2011 is Mermaids, a captivating show that will occur 3 times daily followed by meet and greets. If you\'re looking for family fun that is also educational, Ripley\'s Aquarium needs to be on your list!\r\n<h4>Second Avenue Pier</h4>\r\nRecently renovated, Second Avenue Pier, which has been around since 1936, is located on the southern portion of the Myrtle Beach Boardwalk and just steps away from Oceans One Resort. The pier now features the Pier House Restaurant and Pier View Bar &amp; Lounge (open air bar) as well as what the pier has been famous for...fishing! During the summer season, Second Avenue Pier is home to an amazing fireworks display every Wednesday night as part of the Hot Summer Nights on the Boardwalk. Whether you want to relax with some fishing poles, eat breakfast, lunch or dinner, or simply enjoy a tasty beverage in the ocean breeze, Second Avenue Pier is the place to be!\r\n<h4>SkyWheel Myrtle Beach</h4>\r\n<strong></strong>It\'s tall, it\'s round and it has a light show...yes, the SkyWheel Myrtle is hard to miss along the Myrtle Beach Boardwalk and for all the right reasons.  Standing 200 feet above sea level, you can enjoy a view rarely seen of the Grand Strand in one of 42 temperature controlled glass gondolas. At night a spectacular LED lightshow begins, giving that extra spark to downtown Myrtle Beach. Operating year round, your flight will consist of three rotations and ranges from 8-12 minutes in length and is the first observation wheel of its kind in the United States.\r\n<h4>Tanger Outlets</h4>\r\n<strong></strong>Shop guilt free at either Tanger Outlets located in both Myrtle Beach on 501 or on Kings Highway near Myrtle Beach Mall. With stores such as Coach, kate spade, Old Navy, Gap, Levi\'s, Under Armour, Carter\'s, Disney Store and many, many more; you are sure to find something for the entire family, even Dad! Not only will you find the nation’s leading designer and brand name stores with the widest selection but the prices are also backed by the Best Price Guarantee. When you shop at Tanger Outlets, you can shop with confidence while on vacation.\r\n<h4>WonderWorks</h4>\r\n<strong></strong>A new attraction at Broadway at the Beach in 2011 is WonderWorks, an indoor interactive amusement park for the mind. Whether you are driving by or walking around Broadway at the Beach, you can\'t help but be amazed at the building that appears to have fallen from the sky and landed upside down. WonderWorks features more than 100 exhibits that allow you to interact, discover and explore! Feel the 84 mph winds of a hurricane, build your own roller coaster or submarine adventure with WonderSimulators, pilot a fighter jet, manuever the controls of a NASA spacecraft or simply have fun with bubbles in the Bubble Lab. WonderWorks is open year round, seven days a week and they suggest you allow 3-4 hours to get the full experience.','Things to Do','','inherit','open','open','','61-revision-18','','','2011-06-06 19:47:28','2011-06-06 19:47:28','',61,'http://oor.wbtaylor.net/index.php/2011/06/61-revision-18/',0,'revision','',0),(173,1,'2011-06-06 19:56:27','2011-06-06 19:56:27','<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\"><img class=\"alignleft size-full wp-image-145\" title=\"Alabama Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\" alt=\"Alabama Theatre\" width=\"130\" height=\"110\" /></a>Alabama Theatre</h4>\r\nVoted the #1 Live Theatre Attraction by Myrtle Beach Visitors featuring the Best in Family Entertainment is located in Barefoot Landing in North Myrtle Beach. The Alabama Theatre long standing performance is \"one The Show\". It has become a go-to show every vacation as the show changes from year to year. one features musical genres such as Country, Gospel, Broadway, Pop and Rock and don\'t forget the comedy! one is family favorite and a show you will never regret. If you visit during the holiday season, you will want to catch the other staple at Alabama Theatre - The South\'s Grandest Christmas Show. This family friendly holiday show features musical performances, dance and plenty of laughter from resident comedian Ricky Mokel. In addition to the regular shows, you will also have the opportunity to see live concerts from chart topping artists such as Kenny Rogers, The Oak Ridge Boys, LeeAnn Rimes and more!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/25739_117188041629520_117187501629574_301191_2621350_n.jpg\"><img class=\"alignleft size-full wp-image-146\" title=\"Alligator Adventure\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/25739_117188041629520_117187501629574_301191_2621350_n.jpg\" alt=\"Alligator Adventure\" width=\"130\" height=\"59\" /></a>Alligator Adventure</h4>\r\nLocated adjacent to Barefoot Landing in North Myrtle Beach, Alligator Adventure puts you face to face with reptiles, alligators, crocodiles, lemurs, tropical birds, tigers, beavers and bats...oh my! Their live shows are a favorite among visitors and feature Alligator Live Feedings in the warmer months (Mid-April through Mid-October), Alligator Handling and Lecture in the cooler months and Snake Handling. Alligator Adventure is also home to UTAN - King of Crocs, the largest crocodile in the United States measuring over 20 feet long! Tickets can be purchased online or at the ticket counter and discounts are available including Active Military discounts and a Locals discount. You also receive a 2nd day free with any paid admission, you can\'t afford not to experience Alligator Adventure!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/185605_204035776273335_111374112206169_853743_1453142_n.jpg\"><img class=\"alignleft size-full wp-image-147\" title=\"Barefoot Landing\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/185605_204035776273335_111374112206169_853743_1453142_n.jpg\" alt=\"Barefoot Landing\" width=\"130\" height=\"93\" /></a>Barefoot Landing</h4>\r\nBarefoot Landing, sitting along the Intercoastal Waterway, in North Myrtle Beach  is home to the Alabama Theatre, House of Blues, multiple restaurants, more than 100 specialty and retail shops and entertainment! During the summer months you can sit back and enjoy fireworks over the lake and also get up close and personal with exotic animals at the TIGERS Exhibit. SummerFest brings excitement all over Barefoot Landing with parades, magicians, clowns, face painters, stilt walkers, jugglers and more 7 nights a week! Barefoot Landing is conveintently located to both Myrtle Beach and North Myrtle Beach travelers wanting to take it slow and easy....that\'s the beach way, that\'s the Barefoot Way.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/221105_10150598183460433_209961260432_18527166_4310333_o.jpg\"><img class=\"alignleft size-full wp-image-149\" title=\"Broadway at the Beach\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/221105_10150598183460433_209961260432_18527166_4310333_o.jpg\" alt=\"Broadway at the Beach\" width=\"130\" height=\"99\" /></a>Broadway at the Beach</h4>\r\nIf you\'re looking for one place to go that has everything, Broadway at the Beach is 350 acres of paradise and was voted #1 Attraction in Myrtle Beach according to Trip Advisor. Featuring shopping, dining, nightlife, and entertainment you simply can not go wrong. 2011 brings new excitement and merchants such as WonderWorks Myrtle Beach (an amusement park for your mind), Legends in Concert (Myrtle Beach favorite recently relocated from Surfside Beach) and Bodies Revealed (summer months only). New restaurants feature Carlos \'n Charlies (family friendly Mexican restuarant), Tilted Kilt Pub &amp; Eatery (Scottish themed pub and festive eatery) and Good Time Charley\'s (American featuring sandwiches, hamburgers and more). You can still enjoy your favorites such as IMAX 3D Theatre, MagiQuest, Senor Frogs, Ripley\'s Aquarium, Jimmy Buffet\'s Margaritaville just to name a few. For those who once loved the Myrtle Beach Pavilion be sure to visit the Pavilion Nostaglia Park featuring some of the Pavilion\'s most popular rides including the historical carousel. Year round events and parades are some of the most popular in the area while the Fireworks show over Lake Broadway is a must see during the summer months and on special occasions. Shop, Dine, Dance, Play...It’s Broadwayyy Fun in Myrtle Beach!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36803_426904242365_31054032365_4668034_4118876_n.jpg\"><img class=\"alignleft size-full wp-image-151\" title=\"The Carolina Opry\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36803_426904242365_31054032365_4668034_4118876_n.jpg\" alt=\"The Carolina Opry\" width=\"130\" height=\"130\" /></a>The Carolina Opry</h4>\r\nCalvin Gilmore presents four legendary shows all in one legendary theater, The Carolina Opry located at Broadway at the Beach. For 25 years The Carolina Opry has been entertaining everyone who has walked through the door with 2 hours of high-energy music, comedy and dance. Good Vibrations features the best music from the 60s, 70s and 80s in a fast-paced show that will bring you back to the best in American popular music. The Carolina Opry Christmas Special combines the best of the holiday spirit with beloved musical performances, fresh comedy and breathtaking dance. LIGHT See The Music offers a one of a kind view of music with a lazer light show set to a variety of muscial genres. New for 2011 is Beatlemania Now! as seen on Broadway and recaptures everything you loved about The Beatles. Beatlemania Now! will run from June 15-September 4 and showtimes are at 5pm Wed-Sun. If you only see one show...it should be at The Carolina Opry.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/165770_159098390807159_156683157715349_325517_5126739_n.jpg\"><img class=\"alignleft size-full wp-image-152\" title=\"Celebration Music Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/165770_159098390807159_156683157715349_325517_5126739_n.jpg\" alt=\"Celebration Music Theatre\" width=\"130\" height=\"118\" /></a>Celebration Music Theatre</h4>\r\nNew for 2011 and located in Surfside Beach, Celebration Music Theatre features the legendary tribute artist show SUPERSTARZ! Live and the Broadway Celebration Series. They also offer a \"just for kids\" production called \"the Rocktastics!\" that will be performing June 15 - August 6. Don\'t miss their Broadway line-up for 2011 with the Minnie Pearl Gospel Hour, All Shook Up, Hairspray, The Southern Bellers and A Christmas Carol.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n60005132046_1972058_8249708.jpg\"><img class=\"alignleft size-full wp-image-153\" title=\"Children\'s Museum of South Carolina\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n60005132046_1972058_8249708.jpg\" alt=\"Children\'s Museum of South Carolina\" width=\"130\" height=\"104\" /></a>Children\'s Museum of South Carolina</h4>\r\nCome \"Touch, Explore, and Play...\" while learning about your world through the interactive exhibits and programs at The Children\'s Museum of South Carolina. Located near the Myrtle Beach Convention Center, CMSC offers special programs, such as Tales for Tots and Digitalis Planetarium, are extremely popular with the adults and children who visit the Museum. With a wide variety of interactive exhibits kids of all ages are sure to have a fun learning experience.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/29330_127959170555007_127958977221693_331764_1537881_n.jpg\"><img class=\"alignleft size-full wp-image-154\" title=\"Coastal Grand Mall\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/29330_127959170555007_127958977221693_331764_1537881_n.jpg\" alt=\"Coastal Grand Mall\" width=\"130\" height=\"133\" /></a>oastal Grand Mall</h4>\r\nFeaturing anchor stores Belk, Dillard\'s, JC Penney and Sears; Coastal Grand Mall has quickly become the #1 mall in Myrtle Beach. Featuring more than 100 stores and restaurants, you will find everything you were looking for...and then some! After you have shopped until you drop, sit down and relax in the state of the art 14 screen Cinemark Movie Theater or enjoy something to eat at Abuelo\'s, Texas Roadhouse, Red Robin and more. Treat everyone in the family to something unique from Coastal Grand Mall.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/20039_235537488958_94486398958_3067222_3404770_n.jpg\"><img class=\"alignleft size-full wp-image-155\" title=\"Family Kingdom Amusement Park\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/20039_235537488958_94486398958_3067222_3404770_n.jpg\" alt=\"Family Kingdom Amusement Park\" width=\"130\" height=\"65\" /></a>Family Kingdom Amusement Park</h4>\r\nJust one block from Oceans One Resort you will find Myrtle Beach\'s only Seaside Amusement Park and Oceanfront Water Park, Family Kingdom! Featuring Go Karts, Kiddie Rides, Family Rides, Water Rides and Thrill Rides the entire family can enjoy their time in the park. Best of all, there is NO ADMISSION FEE! New for 2011 is the Picnic Pavilion, a covered dining area that can accommodate up to 100 guests for birthday parties, family reunions or any other group outing.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/72254_10150319280965158_196453920157_15571741_4625780_n.jpg\"><img class=\"alignleft size-full wp-image-156\" title=\"House of Blues\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/72254_10150319280965158_196453920157_15571741_4625780_n.jpg\" alt=\"House of Blues\" width=\"130\" height=\"130\" /></a>House of Blues</h4>\r\nThe House of Blues Myrtle Beach, located in Barefoot Landing, offers live music on the Sugar Shack Deck and the Concert Hall and delta inspired cuisine in their world famous restuarant. With leading acts from country, rock, top 40 and more your vacation won\'t be complete without the intimate setting with your favorite artist. You can even \"Pass the Line\" and \"Crash the Barricade\" to gain entry first into the concerts. The Gospel Brunch in the restaurant is something that shouldn\'t missed with an amazing buffet and inspiring gospel performances. Where the heart meets the soul®. The ultimate live music and dining experience.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/15867_170700122851_45187567851_2960017_1281271_n.jpg\"><img class=\"alignleft size-full wp-image-157\" title=\"Legends in Concert\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/15867_170700122851_45187567851_2960017_1281271_n.jpg\" alt=\"Legends in Concert\" width=\"130\" height=\"77\" /></a>Legends in Concert</h4>\r\nThe World\'s Longest Running Live Tribute Show, Legends in Concert has been a favorite in Myrtle Beach for years and offering a variety of concerts and live shows and many other activities for all ages. Legends in Concert recently relocated a state-of-the-art theater in Broadway at the Beach next to Planet Hollywood!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n43711241696_2031957_4252189.jpg\"><img class=\"alignleft size-full wp-image-158\" title=\"The Market Common\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n43711241696_2031957_4252189.jpg\" alt=\"The Market Common\" width=\"130\" height=\"98\" /></a>The Market Common</h4>\r\nA place where you can experience exceptional shopping and dining in a beautifully-designed village setting. From the nation’s most celebrated names in retail to ice cream and pizza for the kids, and from one-of-a-kind restaurants to the most comfortable movie theater at the beach, The Market Common is always worth your time. The Market Common is also home to multiple festivals all year long, such as Sun Fun Festival, Beerfest, Myrtle Beach Wine Fest, Oktoberfest and more!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/12935_202879413428_31330523428_3156769_3542982_n.jpg\"><img class=\"alignleft size-full wp-image-159\" title=\"Medieval Times\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/12935_202879413428_31330523428_3156769_3542982_n.jpg\" alt=\"Medieval Times\" width=\"130\" height=\"130\" /></a>Medieval Times</h4>\r\nInside the stone walls of the 11th century-style castle, Medieval Spain comes to life as six knights, donning authentic armor, clash in a jousting tournament for the title of King\'s Champion. Let your imagination take you to Medieval Times.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/30659_128515707171283_113684151987772_212653_3752426_n.jpg\"><img class=\"alignleft size-full wp-image-160\" title=\"Myrtle Beach Boardwalk\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/30659_128515707171283_113684151987772_212653_3752426_n.jpg\" alt=\"Myrtle Beach Boardwalk\" width=\"130\" height=\"62\" /></a>Myrtle Beach Boardwalk</h4>\r\nThe Myrtle Beach Boardwalk opened in 2010 to rave reviews! The 1.2 mile boardwalk stretches from 14th Avenue North to 2nd Avenue North in the heart of Myrtle Beach. The Myrtle Beach Boardwalk is home to restaurants, shopping, arcades, ice cream shops and more. In the center of it all is the brand new SkyWheel Myrtle Beach and Landshark Bar &amp; Grill which opened to rave reviews in May 2011!  Check out our <a title=\"Boardwalk\" href=\"http://oor.wbtaylor.net/index.php/boardwalk/\">Myrtle Beach Boardwalk page</a> for more information.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36253_189678207725374_113346388691890_679290_4273636_n.jpg\"><img class=\"alignleft size-full wp-image-161\" title=\"Myrtle Beach Mall\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36253_189678207725374_113346388691890_679290_4273636_n.jpg\" alt=\"Myrtle Beach Mall\" width=\"130\" height=\"77\" /></a>Myrtle Beach Mall</h4>\r\nConveinently located at the corner of Highways 22 and 17, Myrtle Beach Mall continues to provide shoppers with unique stores and value not offered by other malls in the area. Two Belk stores, JCPenney are the long standing anchors and are now accompanied by the only Bass Pro Shops in South Carolina! The mall is also home to Uptown Theater, Home of the Carolina Improv, an improv comedy about living and playing Myrtle Beach. If you aren\'t sure what you need, shopping at Myrtle Beach Mall will help you figure it out.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n70793224673_1768505_6774025.jpg\"><img class=\"alignleft size-full wp-image-162\" title=\"Myrtle Beach Pelicans\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n70793224673_1768505_6774025.jpg\" alt=\"Myrtle Beach Pelicans\" width=\"130\" height=\"114\" /></a>Myrtle Beach Pelicans</h4>\r\nThe Myrtle Beach Pelicans have been bringing minor league baseball to the beach since 1999 and as of 2011 are the Advanced \'A\' Affiliate of the Texas Rangers. With various promotions and events, including multiple fireworks shows, the Myrtle Beach Pelicans are a family favorite stop on their vacation. Kids are allowed to run the bases following the game and play catch on the field prior to the start of the game.  To add to the fun you always have to be on the lookout for Splash, the official mascot who is usually up to no good; Rally Shark, who adds excitement late in the game and the always popular, Deuce - part bat boy, part ball caddy. As they say...Baseball\'s Even Better at the Beach!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5815_111476139824_111222624824_2032117_1940650_n.jpg\"><img class=\"alignleft size-full wp-image-163\" title=\"Myrtle Waves\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5815_111476139824_111222624824_2032117_1940650_n.jpg\" alt=\"Myrtle Waves\" width=\"130\" height=\"58\" /></a>Myrtle Waves</h4>\r\nVoted 1st Place in Best of the Beach in 2010, Myrtle Waves offers over 20 acres of swerves, curves, waves, and chutes and over 1 million gallons of water! Raft rides, Slides and Family Attractions make this a one-stop place for all around family fun in the sun. The younger kids will enjoy Bubble Bay and Saturation Station while the older kids (and adults) have a blast twisting and turning on Racin\' River, Turbo Twisters, Riptide Rockets Night Flight and more. Myrtle Waves is open seasonally (mid-May thru mid-September) and season passes are available.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/19174_252369281043_209993466043_3841063_2345964_n.jpg\"><img class=\"alignleft size-full wp-image-164\" title=\"NASCAR SpeedPark\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/19174_252369281043_209993466043_3841063_2345964_n.jpg\" alt=\"NASCAR SpeedPark\" width=\"130\" height=\"124\" /></a>NASCAR SpeedPark</h4>\r\nIf speed is your thing then the NASCAR SpeedPark is for you, boasting over 26 acres of the industries hottest go-kart tracks, family rides, mini-golf courses, midway games, in addition to family dining in a relaxed and fun environment. Challenge everyone in your family to a little race and a lot of fun. NASCAR SpeedPark is open year round and various tickets pacakages are available.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/6609_109386611532_107473016532_2615436_7261003_n.jpg\"><img class=\"alignleft size-full wp-image-165\" title=\"The Palace Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/6609_109386611532_107473016532_2615436_7261003_n.jpg\" alt=\"The Palace Theatre\" width=\"130\" height=\"90\" /></a>The Palace Theatre</h4>\r\nThe Palace Theatre is located at Broadway at the Beach and is home to the best in live entertainment. Their 2011 lineup includes Hooray for Hollywood which will take you back through 50 years of movie history inlcuding some of the most popular song and dance routines from movies such as Singing in the Rain and Disney\'s \"Jungle Book\". Back by popular demand is The Magical Spirit of Ireland, enjoy sounds from the Irish Tenors and the world renowned Spirit of the Dance dancers. Get your heart pumping and your pulse racing with Le Grand Cirque Adreneline, a 2 hour death defying performance filled with contortionists, tumblers, incredible aerial acts as well as the breathtaking Wheel of Death. Start your holiday season in style with Christmas on Ice, a a one-of-a-kind show that is sure to be an instant family hit as Santa and his helpers take you on a journey around a 40 foot ice skating rink. The Palace Theatre boasts an elegance and beauty unrivaled by any other Theatre in South Carolina.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/248098_168641923198993_103486043047915_488794_5571923_n.jpg\"><img class=\"alignleft size-full wp-image-166\" title=\"Pirate\'s Voyage\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/248098_168641923198993_103486043047915_488794_5571923_n.jpg\" alt=\"Pirate\'s Voyage\" width=\"130\" height=\"130\" /></a>Pirate\'s Voyage</h4>\r\nAll new for 2011, Pirate\'s Voyage is the latest live dinner show from Dolly Parton. After closing the doors on the long time running Dixie Stampede, Dolly Parton has revamped the venue into a pirates dream! Featuring 15 foot deep, 750 thousand gallon  lagoon, and 3 full-sized ships, complete with pirates, battling over who will take the treasure. Just revealed was the live animal show which will feature a sea lion who will perform and even \"arrrrrrrrgh\" multiple times during the show. The dinner menu has been updated as well but still continues with the ever popular soup from Dixie Stampede. Pirate\'s Voyage opens on June 3rd, 2011...it\'s time to get your tickets, matey!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n52724914645_1534472_5319779.jpg\"><img class=\"alignleft size-full wp-image-167\" title=\"Ripley\'s Aquarium\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n52724914645_1534472_5319779.jpg\" alt=\"Ripley\'s Aquarium\" width=\"130\" height=\"123\" /></a>Ripley\'s Aquarium</h4>\r\nRipley\'s Aquarium Myrtle Beach can be found at Broadway at the Beach. Sea life is abundant in the aquarium with more than 350 individual species featuring 10,000 exotic sea creatures. Get hands on in the Discovery Center by holding a horseshoe crab or head over to Ray Bay, where you can reach out and touch a stingray as they glide by. See some of the more exotic fish from the Amazon River at Rio Amazon or get a glimpse of color at Rainbow Rock where the brightly colored Indo-Pacific fish swim through a coral reef. A new exhibit for 2011 gets you up close and personal with the ocean\'s most feared predator, Sharks-Perfect Predators features over a dozen species of sharks and interactive exhibits where you can even feel the force of a shark bite! Don\'t let your eyes fool you, another new exhibit for 2011 is Mermaids, a captivating show that will occur 3 times daily followed by meet and greets. If you\'re looking for family fun that is also educational, Ripley\'s Aquarium needs to be on your list!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/17337_470146280006_470128185006_10677882_3874238_n.jpg\"><img class=\"alignleft size-full wp-image-168\" title=\"Second Avenue Pier\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/17337_470146280006_470128185006_10677882_3874238_n.jpg\" alt=\"Second Avenue Pier\" width=\"130\" height=\"264\" /></a>Second Avenue Pier</h4>\r\nRecently renovated, Second Avenue Pier, which has been around since 1936, is located on the southern portion of the Myrtle Beach Boardwalk and just steps away from Oceans One Resort. The pier now features the Pier House Restaurant and Pier View Bar &amp; Lounge (open air bar) as well as what the pier has been famous for...fishing! During the summer season, Second Avenue Pier is home to an amazing fireworks display every Wednesday night as part of the Hot Summer Nights on the Boardwalk. Whether you want to relax with some fishing poles, eat breakfast, lunch or dinner, or simply enjoy a tasty beverage in the ocean breeze, Second Avenue Pier is the place to be!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/170744_140966505959886_129530977103439_243558_6670767_o.jpg\"><img class=\"alignleft size-full wp-image-169\" title=\"SkyWheel Myrtle Beach\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/170744_140966505959886_129530977103439_243558_6670767_o.jpg\" alt=\"SkyWheel Myrtle Beach\" width=\"130\" height=\"90\" /></a>SkyWheel Myrtle Beach</h4>\r\n<strong></strong>It\'s tall, it\'s round and it has a light show...yes, the SkyWheel Myrtle is hard to miss along the Myrtle Beach Boardwalk and for all the right reasons.  Standing 200 feet above sea level, you can enjoy a view rarely seen of the Grand Strand in one of 42 temperature controlled glass gondolas. At night a spectacular LED lightshow begins, giving that extra spark to downtown Myrtle Beach. Operating year round, your flight will consist of three rotations and ranges from 8-12 minutes in length and is the first observation wheel of its kind in the United States.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n25273984618_1008302_1057.jpg\"><img class=\"alignleft size-full wp-image-170\" title=\"Tanger Outlets\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n25273984618_1008302_1057.jpg\" alt=\"Tanger Outlets\" width=\"130\" height=\"87\" /></a>Tanger Outlets</h4>\r\n<strong></strong>Shop guilt free at either Tanger Outlets located in both Myrtle Beach on 501 or on Kings Highway near Myrtle Beach Mall. With stores such as Coach, kate spade, Old Navy, Gap, Levi\'s, Under Armour, Carter\'s, Disney Store and many, many more; you are sure to find something for the entire family, even Dad! Not only will you find the nation’s leading designer and brand name stores with the widest selection but the prices are also backed by the Best Price Guarantee. When you shop at Tanger Outlets, you can shop with confidence while on vacation.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/193863_159995370724615_152235458167273_330537_123776_o.jpg\"><img class=\"alignleft size-full wp-image-171\" title=\"WonderWorks\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/193863_159995370724615_152235458167273_330537_123776_o.jpg\" alt=\"WonderWorks\" width=\"130\" height=\"86\" /></a>WonderWorks</h4>\r\n<strong></strong>A new attraction at Broadway at the Beach in 2011 is WonderWorks, an indoor interactive amusement park for the mind. Whether you are driving by or walking around Broadway at the Beach, you can\'t help but be amazed at the building that appears to have fallen from the sky and landed upside down. WonderWorks features more than 100 exhibits that allow you to interact, discover and explore! Feel the 84 mph winds of a hurricane, build your own roller coaster or submarine adventure with WonderSimulators, pilot a fighter jet, manuever the controls of a NASA spacecraft or simply have fun with bubbles in the Bubble Lab. WonderWorks is open year round, seven days a week and they suggest you allow 3-4 hours to get the full experience.','Things to Do','','inherit','open','open','','61-revision-19','','','2011-06-06 19:56:27','2011-06-06 19:56:27','',61,'http://oor.wbtaylor.net/index.php/2011/06/61-revision-19/',0,'revision','',0),(174,1,'2011-06-06 19:57:06','2011-06-06 19:57:06','<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\"><img class=\"alignleft size-full wp-image-145\" title=\"Alabama Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\" alt=\"Alabama Theatre\" width=\"130\" height=\"110\" /></a>Alabama Theatre</h4>\r\nVoted the #1 Live Theatre Attraction by Myrtle Beach Visitors featuring the Best in Family Entertainment is located in Barefoot Landing in North Myrtle Beach. The Alabama Theatre long standing performance is \"one The Show\". It has become a go-to show every vacation as the show changes from year to year. one features musical genres such as Country, Gospel, Broadway, Pop and Rock and don\'t forget the comedy! one is family favorite and a show you will never regret. If you visit during the holiday season, you will want to catch the other staple at Alabama Theatre - The South\'s Grandest Christmas Show. This family friendly holiday show features musical performances, dance and plenty of laughter from resident comedian Ricky Mokel. In addition to the regular shows, you will also have the opportunity to see live concerts from chart topping artists such as Kenny Rogers, The Oak Ridge Boys, LeeAnn Rimes and more!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/25739_117188041629520_117187501629574_301191_2621350_n.jpg\"><img class=\"alignleft size-full wp-image-146\" title=\"Alligator Adventure\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/25739_117188041629520_117187501629574_301191_2621350_n.jpg\" alt=\"Alligator Adventure\" width=\"130\" height=\"59\" /></a>Alligator Adventure</h4>\r\nLocated adjacent to Barefoot Landing in North Myrtle Beach, Alligator Adventure puts you face to face with reptiles, alligators, crocodiles, lemurs, tropical birds, tigers, beavers and bats...oh my! Their live shows are a favorite among visitors and feature Alligator Live Feedings in the warmer months (Mid-April through Mid-October), Alligator Handling and Lecture in the cooler months and Snake Handling. Alligator Adventure is also home to UTAN - King of Crocs, the largest crocodile in the United States measuring over 20 feet long! Tickets can be purchased online or at the ticket counter and discounts are available including Active Military discounts and a Locals discount. You also receive a 2nd day free with any paid admission, you can\'t afford not to experience Alligator Adventure!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/185605_204035776273335_111374112206169_853743_1453142_n.jpg\"><img class=\"alignleft size-full wp-image-147\" title=\"Barefoot Landing\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/185605_204035776273335_111374112206169_853743_1453142_n.jpg\" alt=\"Barefoot Landing\" width=\"130\" height=\"93\" /></a>Barefoot Landing</h4>\r\nBarefoot Landing, sitting along the Intercoastal Waterway, in North Myrtle Beach  is home to the Alabama Theatre, House of Blues, multiple restaurants, more than 100 specialty and retail shops and entertainment! During the summer months you can sit back and enjoy fireworks over the lake and also get up close and personal with exotic animals at the TIGERS Exhibit. SummerFest brings excitement all over Barefoot Landing with parades, magicians, clowns, face painters, stilt walkers, jugglers and more 7 nights a week! Barefoot Landing is conveintently located to both Myrtle Beach and North Myrtle Beach travelers wanting to take it slow and easy....that\'s the beach way, that\'s the Barefoot Way.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/221105_10150598183460433_209961260432_18527166_4310333_o.jpg\"><img class=\"alignleft size-full wp-image-149\" title=\"Broadway at the Beach\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/221105_10150598183460433_209961260432_18527166_4310333_o.jpg\" alt=\"Broadway at the Beach\" width=\"130\" height=\"99\" /></a>Broadway at the Beach</h4>\r\nIf you\'re looking for one place to go that has everything, Broadway at the Beach is 350 acres of paradise and was voted #1 Attraction in Myrtle Beach according to Trip Advisor. Featuring shopping, dining, nightlife, and entertainment you simply can not go wrong. 2011 brings new excitement and merchants such as WonderWorks Myrtle Beach (an amusement park for your mind), Legends in Concert (Myrtle Beach favorite recently relocated from Surfside Beach) and Bodies Revealed (summer months only). New restaurants feature Carlos \'n Charlies (family friendly Mexican restuarant), Tilted Kilt Pub &amp; Eatery (Scottish themed pub and festive eatery) and Good Time Charley\'s (American featuring sandwiches, hamburgers and more). You can still enjoy your favorites such as IMAX 3D Theatre, MagiQuest, Senor Frogs, Ripley\'s Aquarium, Jimmy Buffet\'s Margaritaville just to name a few. For those who once loved the Myrtle Beach Pavilion be sure to visit the Pavilion Nostaglia Park featuring some of the Pavilion\'s most popular rides including the historical carousel. Year round events and parades are some of the most popular in the area while the Fireworks show over Lake Broadway is a must see during the summer months and on special occasions. Shop, Dine, Dance, Play...It’s Broadwayyy Fun in Myrtle Beach!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36803_426904242365_31054032365_4668034_4118876_n.jpg\"><img class=\"alignleft size-full wp-image-151\" title=\"The Carolina Opry\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36803_426904242365_31054032365_4668034_4118876_n.jpg\" alt=\"The Carolina Opry\" width=\"130\" height=\"130\" /></a>The Carolina Opry</h4>\r\nCalvin Gilmore presents four legendary shows all in one legendary theater, The Carolina Opry located at Broadway at the Beach. For 25 years The Carolina Opry has been entertaining everyone who has walked through the door with 2 hours of high-energy music, comedy and dance. Good Vibrations features the best music from the 60s, 70s and 80s in a fast-paced show that will bring you back to the best in American popular music. The Carolina Opry Christmas Special combines the best of the holiday spirit with beloved musical performances, fresh comedy and breathtaking dance. LIGHT See The Music offers a one of a kind view of music with a lazer light show set to a variety of muscial genres. New for 2011 is Beatlemania Now! as seen on Broadway and recaptures everything you loved about The Beatles. Beatlemania Now! will run from June 15-September 4 and showtimes are at 5pm Wed-Sun. If you only see one show...it should be at The Carolina Opry.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/165770_159098390807159_156683157715349_325517_5126739_n.jpg\"><img class=\"alignleft size-full wp-image-152\" title=\"Celebration Music Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/165770_159098390807159_156683157715349_325517_5126739_n.jpg\" alt=\"Celebration Music Theatre\" width=\"130\" height=\"118\" /></a>Celebration Music Theatre</h4>\r\nNew for 2011 and located in Surfside Beach, Celebration Music Theatre features the legendary tribute artist show SUPERSTARZ! Live and the Broadway Celebration Series. They also offer a \"just for kids\" production called \"the Rocktastics!\" that will be performing June 15 - August 6. Don\'t miss their Broadway line-up for 2011 with the Minnie Pearl Gospel Hour, All Shook Up, Hairspray, The Southern Bellers and A Christmas Carol.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n60005132046_1972058_8249708.jpg\"><img class=\"alignleft size-full wp-image-153\" title=\"Children\'s Museum of South Carolina\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n60005132046_1972058_8249708.jpg\" alt=\"Children\'s Museum of South Carolina\" width=\"130\" height=\"104\" /></a>Children\'s Museum of South Carolina</h4>\r\nCome \"Touch, Explore, and Play...\" while learning about your world through the interactive exhibits and programs at The Children\'s Museum of South Carolina. Located near the Myrtle Beach Convention Center, CMSC offers special programs, such as Tales for Tots and Digitalis Planetarium, are extremely popular with the adults and children who visit the Museum. With a wide variety of interactive exhibits kids of all ages are sure to have a fun learning experience.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/29330_127959170555007_127958977221693_331764_1537881_n.jpg\"><img class=\"alignleft size-full wp-image-154\" title=\"Coastal Grand Mall\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/29330_127959170555007_127958977221693_331764_1537881_n.jpg\" alt=\"Coastal Grand Mall\" width=\"130\" height=\"133\" /></a>Coastal Grand Mall</h4>\r\nFeaturing anchor stores Belk, Dillard\'s, JC Penney and Sears; Coastal Grand Mall has quickly become the #1 mall in Myrtle Beach. Featuring more than 100 stores and restaurants, you will find everything you were looking for...and then some! After you have shopped until you drop, sit down and relax in the state of the art 14 screen Cinemark Movie Theater or enjoy something to eat at Abuelo\'s, Texas Roadhouse, Red Robin and more. Treat everyone in the family to something unique from Coastal Grand Mall.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/20039_235537488958_94486398958_3067222_3404770_n.jpg\"><img class=\"alignleft size-full wp-image-155\" title=\"Family Kingdom Amusement Park\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/20039_235537488958_94486398958_3067222_3404770_n.jpg\" alt=\"Family Kingdom Amusement Park\" width=\"130\" height=\"65\" /></a>Family Kingdom Amusement Park</h4>\r\nJust one block from Oceans One Resort you will find Myrtle Beach\'s only Seaside Amusement Park and Oceanfront Water Park, Family Kingdom! Featuring Go Karts, Kiddie Rides, Family Rides, Water Rides and Thrill Rides the entire family can enjoy their time in the park. Best of all, there is NO ADMISSION FEE! New for 2011 is the Picnic Pavilion, a covered dining area that can accommodate up to 100 guests for birthday parties, family reunions or any other group outing.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/72254_10150319280965158_196453920157_15571741_4625780_n.jpg\"><img class=\"alignleft size-full wp-image-156\" title=\"House of Blues\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/72254_10150319280965158_196453920157_15571741_4625780_n.jpg\" alt=\"House of Blues\" width=\"130\" height=\"130\" /></a>House of Blues</h4>\r\nThe House of Blues Myrtle Beach, located in Barefoot Landing, offers live music on the Sugar Shack Deck and the Concert Hall and delta inspired cuisine in their world famous restuarant. With leading acts from country, rock, top 40 and more your vacation won\'t be complete without the intimate setting with your favorite artist. You can even \"Pass the Line\" and \"Crash the Barricade\" to gain entry first into the concerts. The Gospel Brunch in the restaurant is something that shouldn\'t missed with an amazing buffet and inspiring gospel performances. Where the heart meets the soul®. The ultimate live music and dining experience.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/15867_170700122851_45187567851_2960017_1281271_n.jpg\"><img class=\"alignleft size-full wp-image-157\" title=\"Legends in Concert\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/15867_170700122851_45187567851_2960017_1281271_n.jpg\" alt=\"Legends in Concert\" width=\"130\" height=\"77\" /></a>Legends in Concert</h4>\r\nThe World\'s Longest Running Live Tribute Show, Legends in Concert has been a favorite in Myrtle Beach for years and offering a variety of concerts and live shows and many other activities for all ages. Legends in Concert recently relocated a state-of-the-art theater in Broadway at the Beach next to Planet Hollywood!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n43711241696_2031957_4252189.jpg\"><img class=\"alignleft size-full wp-image-158\" title=\"The Market Common\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n43711241696_2031957_4252189.jpg\" alt=\"The Market Common\" width=\"130\" height=\"98\" /></a>The Market Common</h4>\r\nA place where you can experience exceptional shopping and dining in a beautifully-designed village setting. From the nation’s most celebrated names in retail to ice cream and pizza for the kids, and from one-of-a-kind restaurants to the most comfortable movie theater at the beach, The Market Common is always worth your time. The Market Common is also home to multiple festivals all year long, such as Sun Fun Festival, Beerfest, Myrtle Beach Wine Fest, Oktoberfest and more!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/12935_202879413428_31330523428_3156769_3542982_n.jpg\"><img class=\"alignleft size-full wp-image-159\" title=\"Medieval Times\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/12935_202879413428_31330523428_3156769_3542982_n.jpg\" alt=\"Medieval Times\" width=\"130\" height=\"130\" /></a>Medieval Times</h4>\r\nInside the stone walls of the 11th century-style castle, Medieval Spain comes to life as six knights, donning authentic armor, clash in a jousting tournament for the title of King\'s Champion. Let your imagination take you to Medieval Times.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/30659_128515707171283_113684151987772_212653_3752426_n.jpg\"><img class=\"alignleft size-full wp-image-160\" title=\"Myrtle Beach Boardwalk\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/30659_128515707171283_113684151987772_212653_3752426_n.jpg\" alt=\"Myrtle Beach Boardwalk\" width=\"130\" height=\"62\" /></a>Myrtle Beach Boardwalk</h4>\r\nThe Myrtle Beach Boardwalk opened in 2010 to rave reviews! The 1.2 mile boardwalk stretches from 14th Avenue North to 2nd Avenue North in the heart of Myrtle Beach. The Myrtle Beach Boardwalk is home to restaurants, shopping, arcades, ice cream shops and more. In the center of it all is the brand new SkyWheel Myrtle Beach and Landshark Bar &amp; Grill which opened to rave reviews in May 2011!  Check out our <a title=\"Boardwalk\" href=\"http://oor.wbtaylor.net/index.php/boardwalk/\">Myrtle Beach Boardwalk page</a> for more information.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36253_189678207725374_113346388691890_679290_4273636_n.jpg\"><img class=\"alignleft size-full wp-image-161\" title=\"Myrtle Beach Mall\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36253_189678207725374_113346388691890_679290_4273636_n.jpg\" alt=\"Myrtle Beach Mall\" width=\"130\" height=\"77\" /></a>Myrtle Beach Mall</h4>\r\nConveinently located at the corner of Highways 22 and 17, Myrtle Beach Mall continues to provide shoppers with unique stores and value not offered by other malls in the area. Two Belk stores, JCPenney are the long standing anchors and are now accompanied by the only Bass Pro Shops in South Carolina! The mall is also home to Uptown Theater, Home of the Carolina Improv, an improv comedy about living and playing Myrtle Beach. If you aren\'t sure what you need, shopping at Myrtle Beach Mall will help you figure it out.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n70793224673_1768505_6774025.jpg\"><img class=\"alignleft size-full wp-image-162\" title=\"Myrtle Beach Pelicans\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n70793224673_1768505_6774025.jpg\" alt=\"Myrtle Beach Pelicans\" width=\"130\" height=\"114\" /></a>Myrtle Beach Pelicans</h4>\r\nThe Myrtle Beach Pelicans have been bringing minor league baseball to the beach since 1999 and as of 2011 are the Advanced \'A\' Affiliate of the Texas Rangers. With various promotions and events, including multiple fireworks shows, the Myrtle Beach Pelicans are a family favorite stop on their vacation. Kids are allowed to run the bases following the game and play catch on the field prior to the start of the game.  To add to the fun you always have to be on the lookout for Splash, the official mascot who is usually up to no good; Rally Shark, who adds excitement late in the game and the always popular, Deuce - part bat boy, part ball caddy. As they say...Baseball\'s Even Better at the Beach!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5815_111476139824_111222624824_2032117_1940650_n.jpg\"><img class=\"alignleft size-full wp-image-163\" title=\"Myrtle Waves\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5815_111476139824_111222624824_2032117_1940650_n.jpg\" alt=\"Myrtle Waves\" width=\"130\" height=\"58\" /></a>Myrtle Waves</h4>\r\nVoted 1st Place in Best of the Beach in 2010, Myrtle Waves offers over 20 acres of swerves, curves, waves, and chutes and over 1 million gallons of water! Raft rides, Slides and Family Attractions make this a one-stop place for all around family fun in the sun. The younger kids will enjoy Bubble Bay and Saturation Station while the older kids (and adults) have a blast twisting and turning on Racin\' River, Turbo Twisters, Riptide Rockets Night Flight and more. Myrtle Waves is open seasonally (mid-May thru mid-September) and season passes are available.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/19174_252369281043_209993466043_3841063_2345964_n.jpg\"><img class=\"alignleft size-full wp-image-164\" title=\"NASCAR SpeedPark\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/19174_252369281043_209993466043_3841063_2345964_n.jpg\" alt=\"NASCAR SpeedPark\" width=\"130\" height=\"124\" /></a>NASCAR SpeedPark</h4>\r\nIf speed is your thing then the NASCAR SpeedPark is for you, boasting over 26 acres of the industries hottest go-kart tracks, family rides, mini-golf courses, midway games, in addition to family dining in a relaxed and fun environment. Challenge everyone in your family to a little race and a lot of fun. NASCAR SpeedPark is open year round and various tickets pacakages are available.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/6609_109386611532_107473016532_2615436_7261003_n.jpg\"><img class=\"alignleft size-full wp-image-165\" title=\"The Palace Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/6609_109386611532_107473016532_2615436_7261003_n.jpg\" alt=\"The Palace Theatre\" width=\"130\" height=\"90\" /></a>The Palace Theatre</h4>\r\nThe Palace Theatre is located at Broadway at the Beach and is home to the best in live entertainment. Their 2011 lineup includes Hooray for Hollywood which will take you back through 50 years of movie history inlcuding some of the most popular song and dance routines from movies such as Singing in the Rain and Disney\'s \"Jungle Book\". Back by popular demand is The Magical Spirit of Ireland, enjoy sounds from the Irish Tenors and the world renowned Spirit of the Dance dancers. Get your heart pumping and your pulse racing with Le Grand Cirque Adreneline, a 2 hour death defying performance filled with contortionists, tumblers, incredible aerial acts as well as the breathtaking Wheel of Death. Start your holiday season in style with Christmas on Ice, a a one-of-a-kind show that is sure to be an instant family hit as Santa and his helpers take you on a journey around a 40 foot ice skating rink. The Palace Theatre boasts an elegance and beauty unrivaled by any other Theatre in South Carolina.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/248098_168641923198993_103486043047915_488794_5571923_n.jpg\"><img class=\"alignleft size-full wp-image-166\" title=\"Pirate\'s Voyage\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/248098_168641923198993_103486043047915_488794_5571923_n.jpg\" alt=\"Pirate\'s Voyage\" width=\"130\" height=\"130\" /></a>Pirate\'s Voyage</h4>\r\nAll new for 2011, Pirate\'s Voyage is the latest live dinner show from Dolly Parton. After closing the doors on the long time running Dixie Stampede, Dolly Parton has revamped the venue into a pirates dream! Featuring 15 foot deep, 750 thousand gallon  lagoon, and 3 full-sized ships, complete with pirates, battling over who will take the treasure. Just revealed was the live animal show which will feature a sea lion who will perform and even \"arrrrrrrrgh\" multiple times during the show. The dinner menu has been updated as well but still continues with the ever popular soup from Dixie Stampede. Pirate\'s Voyage opens on June 3rd, 2011...it\'s time to get your tickets, matey!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n52724914645_1534472_5319779.jpg\"><img class=\"alignleft size-full wp-image-167\" title=\"Ripley\'s Aquarium\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n52724914645_1534472_5319779.jpg\" alt=\"Ripley\'s Aquarium\" width=\"130\" height=\"123\" /></a>Ripley\'s Aquarium</h4>\r\nRipley\'s Aquarium Myrtle Beach can be found at Broadway at the Beach. Sea life is abundant in the aquarium with more than 350 individual species featuring 10,000 exotic sea creatures. Get hands on in the Discovery Center by holding a horseshoe crab or head over to Ray Bay, where you can reach out and touch a stingray as they glide by. See some of the more exotic fish from the Amazon River at Rio Amazon or get a glimpse of color at Rainbow Rock where the brightly colored Indo-Pacific fish swim through a coral reef. A new exhibit for 2011 gets you up close and personal with the ocean\'s most feared predator, Sharks-Perfect Predators features over a dozen species of sharks and interactive exhibits where you can even feel the force of a shark bite! Don\'t let your eyes fool you, another new exhibit for 2011 is Mermaids, a captivating show that will occur 3 times daily followed by meet and greets. If you\'re looking for family fun that is also educational, Ripley\'s Aquarium needs to be on your list!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/17337_470146280006_470128185006_10677882_3874238_n.jpg\"><img class=\"alignleft size-full wp-image-168\" title=\"Second Avenue Pier\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/17337_470146280006_470128185006_10677882_3874238_n.jpg\" alt=\"Second Avenue Pier\" width=\"130\" height=\"264\" /></a>Second Avenue Pier</h4>\r\nRecently renovated, Second Avenue Pier, which has been around since 1936, is located on the southern portion of the Myrtle Beach Boardwalk and just steps away from Oceans One Resort. The pier now features the Pier House Restaurant and Pier View Bar &amp; Lounge (open air bar) as well as what the pier has been famous for...fishing! During the summer season, Second Avenue Pier is home to an amazing fireworks display every Wednesday night as part of the Hot Summer Nights on the Boardwalk. Whether you want to relax with some fishing poles, eat breakfast, lunch or dinner, or simply enjoy a tasty beverage in the ocean breeze, Second Avenue Pier is the place to be!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/170744_140966505959886_129530977103439_243558_6670767_o.jpg\"><img class=\"alignleft size-full wp-image-169\" title=\"SkyWheel Myrtle Beach\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/170744_140966505959886_129530977103439_243558_6670767_o.jpg\" alt=\"SkyWheel Myrtle Beach\" width=\"130\" height=\"90\" /></a>SkyWheel Myrtle Beach</h4>\r\n<strong></strong>It\'s tall, it\'s round and it has a light show...yes, the SkyWheel Myrtle is hard to miss along the Myrtle Beach Boardwalk and for all the right reasons.  Standing 200 feet above sea level, you can enjoy a view rarely seen of the Grand Strand in one of 42 temperature controlled glass gondolas. At night a spectacular LED lightshow begins, giving that extra spark to downtown Myrtle Beach. Operating year round, your flight will consist of three rotations and ranges from 8-12 minutes in length and is the first observation wheel of its kind in the United States.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n25273984618_1008302_1057.jpg\"><img class=\"alignleft size-full wp-image-170\" title=\"Tanger Outlets\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n25273984618_1008302_1057.jpg\" alt=\"Tanger Outlets\" width=\"130\" height=\"87\" /></a>Tanger Outlets</h4>\r\n<strong></strong>Shop guilt free at either Tanger Outlets located in both Myrtle Beach on 501 or on Kings Highway near Myrtle Beach Mall. With stores such as Coach, kate spade, Old Navy, Gap, Levi\'s, Under Armour, Carter\'s, Disney Store and many, many more; you are sure to find something for the entire family, even Dad! Not only will you find the nation’s leading designer and brand name stores with the widest selection but the prices are also backed by the Best Price Guarantee. When you shop at Tanger Outlets, you can shop with confidence while on vacation.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/193863_159995370724615_152235458167273_330537_123776_o.jpg\"><img class=\"alignleft size-full wp-image-171\" title=\"WonderWorks\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/193863_159995370724615_152235458167273_330537_123776_o.jpg\" alt=\"WonderWorks\" width=\"130\" height=\"86\" /></a>WonderWorks</h4>\r\n<strong></strong>A new attraction at Broadway at the Beach in 2011 is WonderWorks, an indoor interactive amusement park for the mind. Whether you are driving by or walking around Broadway at the Beach, you can\'t help but be amazed at the building that appears to have fallen from the sky and landed upside down. WonderWorks features more than 100 exhibits that allow you to interact, discover and explore! Feel the 84 mph winds of a hurricane, build your own roller coaster or submarine adventure with WonderSimulators, pilot a fighter jet, manuever the controls of a NASA spacecraft or simply have fun with bubbles in the Bubble Lab. WonderWorks is open year round, seven days a week and they suggest you allow 3-4 hours to get the full experience.','Things to Do','','inherit','open','open','','61-revision-20','','','2011-06-06 19:57:06','2011-06-06 19:57:06','',61,'http://oor.wbtaylor.net/index.php/2011/06/61-revision-20/',0,'revision','',0),(175,1,'2011-06-06 19:58:18','2011-06-06 19:58:18','<address><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\"><img class=\"alignleft size-full wp-image-145\" title=\"Alabama Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\" alt=\"Alabama Theatre\" width=\"130\" height=\"110\" /></a>Alabama Theatre\r\n4750 Hwy 17 South\r\nNorth Myrtle Beach, SC 29582</address>Voted the #1 Live Theatre Attraction by Myrtle Beach Visitors featuring the Best in Family Entertainment is located in Barefoot Landing in North Myrtle Beach. The Alabama Theatre long standing performance is \"one The Show\". It has become a go-to show every vacation as the show changes from year to year. one features musical genres such as Country, Gospel, Broadway, Pop and Rock and don\'t forget the comedy! one is family favorite and a show you will never regret. If you visit during the holiday season, you will want to catch the other staple at Alabama Theatre - The South\'s Grandest Christmas Show. This family friendly holiday show features musical performances, dance and plenty of laughter from resident comedian Ricky Mokel. In addition to the regular shows, you will also have the opportunity to see live concerts from chart topping artists such as Kenny Rogers, The Oak Ridge Boys, LeeAnn Rimes and more!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/25739_117188041629520_117187501629574_301191_2621350_n.jpg\"><img class=\"alignleft size-full wp-image-146\" title=\"Alligator Adventure\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/25739_117188041629520_117187501629574_301191_2621350_n.jpg\" alt=\"Alligator Adventure\" width=\"130\" height=\"59\" /></a>Alligator Adventure</h4>\r\nLocated adjacent to Barefoot Landing in North Myrtle Beach, Alligator Adventure puts you face to face with reptiles, alligators, crocodiles, lemurs, tropical birds, tigers, beavers and bats...oh my! Their live shows are a favorite among visitors and feature Alligator Live Feedings in the warmer months (Mid-April through Mid-October), Alligator Handling and Lecture in the cooler months and Snake Handling. Alligator Adventure is also home to UTAN - King of Crocs, the largest crocodile in the United States measuring over 20 feet long! Tickets can be purchased online or at the ticket counter and discounts are available including Active Military discounts and a Locals discount. You also receive a 2nd day free with any paid admission, you can\'t afford not to experience Alligator Adventure!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/185605_204035776273335_111374112206169_853743_1453142_n.jpg\"><img class=\"alignleft size-full wp-image-147\" title=\"Barefoot Landing\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/185605_204035776273335_111374112206169_853743_1453142_n.jpg\" alt=\"Barefoot Landing\" width=\"130\" height=\"93\" /></a>Barefoot Landing</h4>\r\nBarefoot Landing, sitting along the Intercoastal Waterway, in North Myrtle Beach  is home to the Alabama Theatre, House of Blues, multiple restaurants, more than 100 specialty and retail shops and entertainment! During the summer months you can sit back and enjoy fireworks over the lake and also get up close and personal with exotic animals at the TIGERS Exhibit. SummerFest brings excitement all over Barefoot Landing with parades, magicians, clowns, face painters, stilt walkers, jugglers and more 7 nights a week! Barefoot Landing is conveintently located to both Myrtle Beach and North Myrtle Beach travelers wanting to take it slow and easy....that\'s the beach way, that\'s the Barefoot Way.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/221105_10150598183460433_209961260432_18527166_4310333_o.jpg\"><img class=\"alignleft size-full wp-image-149\" title=\"Broadway at the Beach\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/221105_10150598183460433_209961260432_18527166_4310333_o.jpg\" alt=\"Broadway at the Beach\" width=\"130\" height=\"99\" /></a>Broadway at the Beach</h4>\r\nIf you\'re looking for one place to go that has everything, Broadway at the Beach is 350 acres of paradise and was voted #1 Attraction in Myrtle Beach according to Trip Advisor. Featuring shopping, dining, nightlife, and entertainment you simply can not go wrong. 2011 brings new excitement and merchants such as WonderWorks Myrtle Beach (an amusement park for your mind), Legends in Concert (Myrtle Beach favorite recently relocated from Surfside Beach) and Bodies Revealed (summer months only). New restaurants feature Carlos \'n Charlies (family friendly Mexican restuarant), Tilted Kilt Pub &amp; Eatery (Scottish themed pub and festive eatery) and Good Time Charley\'s (American featuring sandwiches, hamburgers and more). You can still enjoy your favorites such as IMAX 3D Theatre, MagiQuest, Senor Frogs, Ripley\'s Aquarium, Jimmy Buffet\'s Margaritaville just to name a few. For those who once loved the Myrtle Beach Pavilion be sure to visit the Pavilion Nostaglia Park featuring some of the Pavilion\'s most popular rides including the historical carousel. Year round events and parades are some of the most popular in the area while the Fireworks show over Lake Broadway is a must see during the summer months and on special occasions. Shop, Dine, Dance, Play...It’s Broadwayyy Fun in Myrtle Beach!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36803_426904242365_31054032365_4668034_4118876_n.jpg\"><img class=\"alignleft size-full wp-image-151\" title=\"The Carolina Opry\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36803_426904242365_31054032365_4668034_4118876_n.jpg\" alt=\"The Carolina Opry\" width=\"130\" height=\"130\" /></a>The Carolina Opry</h4>\r\nCalvin Gilmore presents four legendary shows all in one legendary theater, The Carolina Opry located at Broadway at the Beach. For 25 years The Carolina Opry has been entertaining everyone who has walked through the door with 2 hours of high-energy music, comedy and dance. Good Vibrations features the best music from the 60s, 70s and 80s in a fast-paced show that will bring you back to the best in American popular music. The Carolina Opry Christmas Special combines the best of the holiday spirit with beloved musical performances, fresh comedy and breathtaking dance. LIGHT See The Music offers a one of a kind view of music with a lazer light show set to a variety of muscial genres. New for 2011 is Beatlemania Now! as seen on Broadway and recaptures everything you loved about The Beatles. Beatlemania Now! will run from June 15-September 4 and showtimes are at 5pm Wed-Sun. If you only see one show...it should be at The Carolina Opry.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/165770_159098390807159_156683157715349_325517_5126739_n.jpg\"><img class=\"alignleft size-full wp-image-152\" title=\"Celebration Music Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/165770_159098390807159_156683157715349_325517_5126739_n.jpg\" alt=\"Celebration Music Theatre\" width=\"130\" height=\"118\" /></a>Celebration Music Theatre</h4>\r\nNew for 2011 and located in Surfside Beach, Celebration Music Theatre features the legendary tribute artist show SUPERSTARZ! Live and the Broadway Celebration Series. They also offer a \"just for kids\" production called \"the Rocktastics!\" that will be performing June 15 - August 6. Don\'t miss their Broadway line-up for 2011 with the Minnie Pearl Gospel Hour, All Shook Up, Hairspray, The Southern Bellers and A Christmas Carol.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n60005132046_1972058_8249708.jpg\"><img class=\"alignleft size-full wp-image-153\" title=\"Children\'s Museum of South Carolina\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n60005132046_1972058_8249708.jpg\" alt=\"Children\'s Museum of South Carolina\" width=\"130\" height=\"104\" /></a>Children\'s Museum of South Carolina</h4>\r\nCome \"Touch, Explore, and Play...\" while learning about your world through the interactive exhibits and programs at The Children\'s Museum of South Carolina. Located near the Myrtle Beach Convention Center, CMSC offers special programs, such as Tales for Tots and Digitalis Planetarium, are extremely popular with the adults and children who visit the Museum. With a wide variety of interactive exhibits kids of all ages are sure to have a fun learning experience.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/29330_127959170555007_127958977221693_331764_1537881_n.jpg\"><img class=\"alignleft size-full wp-image-154\" title=\"Coastal Grand Mall\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/29330_127959170555007_127958977221693_331764_1537881_n.jpg\" alt=\"Coastal Grand Mall\" width=\"130\" height=\"133\" /></a>Coastal Grand Mall</h4>\r\nFeaturing anchor stores Belk, Dillard\'s, JC Penney and Sears; Coastal Grand Mall has quickly become the #1 mall in Myrtle Beach. Featuring more than 100 stores and restaurants, you will find everything you were looking for...and then some! After you have shopped until you drop, sit down and relax in the state of the art 14 screen Cinemark Movie Theater or enjoy something to eat at Abuelo\'s, Texas Roadhouse, Red Robin and more. Treat everyone in the family to something unique from Coastal Grand Mall.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/20039_235537488958_94486398958_3067222_3404770_n.jpg\"><img class=\"alignleft size-full wp-image-155\" title=\"Family Kingdom Amusement Park\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/20039_235537488958_94486398958_3067222_3404770_n.jpg\" alt=\"Family Kingdom Amusement Park\" width=\"130\" height=\"65\" /></a>Family Kingdom Amusement Park</h4>\r\nJust one block from Oceans One Resort you will find Myrtle Beach\'s only Seaside Amusement Park and Oceanfront Water Park, Family Kingdom! Featuring Go Karts, Kiddie Rides, Family Rides, Water Rides and Thrill Rides the entire family can enjoy their time in the park. Best of all, there is NO ADMISSION FEE! New for 2011 is the Picnic Pavilion, a covered dining area that can accommodate up to 100 guests for birthday parties, family reunions or any other group outing.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/72254_10150319280965158_196453920157_15571741_4625780_n.jpg\"><img class=\"alignleft size-full wp-image-156\" title=\"House of Blues\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/72254_10150319280965158_196453920157_15571741_4625780_n.jpg\" alt=\"House of Blues\" width=\"130\" height=\"130\" /></a>House of Blues</h4>\r\nThe House of Blues Myrtle Beach, located in Barefoot Landing, offers live music on the Sugar Shack Deck and the Concert Hall and delta inspired cuisine in their world famous restuarant. With leading acts from country, rock, top 40 and more your vacation won\'t be complete without the intimate setting with your favorite artist. You can even \"Pass the Line\" and \"Crash the Barricade\" to gain entry first into the concerts. The Gospel Brunch in the restaurant is something that shouldn\'t missed with an amazing buffet and inspiring gospel performances. Where the heart meets the soul®. The ultimate live music and dining experience.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/15867_170700122851_45187567851_2960017_1281271_n.jpg\"><img class=\"alignleft size-full wp-image-157\" title=\"Legends in Concert\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/15867_170700122851_45187567851_2960017_1281271_n.jpg\" alt=\"Legends in Concert\" width=\"130\" height=\"77\" /></a>Legends in Concert</h4>\r\nThe World\'s Longest Running Live Tribute Show, Legends in Concert has been a favorite in Myrtle Beach for years and offering a variety of concerts and live shows and many other activities for all ages. Legends in Concert recently relocated a state-of-the-art theater in Broadway at the Beach next to Planet Hollywood!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n43711241696_2031957_4252189.jpg\"><img class=\"alignleft size-full wp-image-158\" title=\"The Market Common\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n43711241696_2031957_4252189.jpg\" alt=\"The Market Common\" width=\"130\" height=\"98\" /></a>The Market Common</h4>\r\nA place where you can experience exceptional shopping and dining in a beautifully-designed village setting. From the nation’s most celebrated names in retail to ice cream and pizza for the kids, and from one-of-a-kind restaurants to the most comfortable movie theater at the beach, The Market Common is always worth your time. The Market Common is also home to multiple festivals all year long, such as Sun Fun Festival, Beerfest, Myrtle Beach Wine Fest, Oktoberfest and more!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/12935_202879413428_31330523428_3156769_3542982_n.jpg\"><img class=\"alignleft size-full wp-image-159\" title=\"Medieval Times\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/12935_202879413428_31330523428_3156769_3542982_n.jpg\" alt=\"Medieval Times\" width=\"130\" height=\"130\" /></a>Medieval Times</h4>\r\nInside the stone walls of the 11th century-style castle, Medieval Spain comes to life as six knights, donning authentic armor, clash in a jousting tournament for the title of King\'s Champion. Let your imagination take you to Medieval Times.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/30659_128515707171283_113684151987772_212653_3752426_n.jpg\"><img class=\"alignleft size-full wp-image-160\" title=\"Myrtle Beach Boardwalk\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/30659_128515707171283_113684151987772_212653_3752426_n.jpg\" alt=\"Myrtle Beach Boardwalk\" width=\"130\" height=\"62\" /></a>Myrtle Beach Boardwalk</h4>\r\nThe Myrtle Beach Boardwalk opened in 2010 to rave reviews! The 1.2 mile boardwalk stretches from 14th Avenue North to 2nd Avenue North in the heart of Myrtle Beach. The Myrtle Beach Boardwalk is home to restaurants, shopping, arcades, ice cream shops and more. In the center of it all is the brand new SkyWheel Myrtle Beach and Landshark Bar &amp; Grill which opened to rave reviews in May 2011!  Check out our <a title=\"Boardwalk\" href=\"http://oor.wbtaylor.net/index.php/boardwalk/\">Myrtle Beach Boardwalk page</a> for more information.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36253_189678207725374_113346388691890_679290_4273636_n.jpg\"><img class=\"alignleft size-full wp-image-161\" title=\"Myrtle Beach Mall\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36253_189678207725374_113346388691890_679290_4273636_n.jpg\" alt=\"Myrtle Beach Mall\" width=\"130\" height=\"77\" /></a>Myrtle Beach Mall</h4>\r\nConveinently located at the corner of Highways 22 and 17, Myrtle Beach Mall continues to provide shoppers with unique stores and value not offered by other malls in the area. Two Belk stores, JCPenney are the long standing anchors and are now accompanied by the only Bass Pro Shops in South Carolina! The mall is also home to Uptown Theater, Home of the Carolina Improv, an improv comedy about living and playing Myrtle Beach. If you aren\'t sure what you need, shopping at Myrtle Beach Mall will help you figure it out.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n70793224673_1768505_6774025.jpg\"><img class=\"alignleft size-full wp-image-162\" title=\"Myrtle Beach Pelicans\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n70793224673_1768505_6774025.jpg\" alt=\"Myrtle Beach Pelicans\" width=\"130\" height=\"114\" /></a>Myrtle Beach Pelicans</h4>\r\nThe Myrtle Beach Pelicans have been bringing minor league baseball to the beach since 1999 and as of 2011 are the Advanced \'A\' Affiliate of the Texas Rangers. With various promotions and events, including multiple fireworks shows, the Myrtle Beach Pelicans are a family favorite stop on their vacation. Kids are allowed to run the bases following the game and play catch on the field prior to the start of the game.  To add to the fun you always have to be on the lookout for Splash, the official mascot who is usually up to no good; Rally Shark, who adds excitement late in the game and the always popular, Deuce - part bat boy, part ball caddy. As they say...Baseball\'s Even Better at the Beach!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5815_111476139824_111222624824_2032117_1940650_n.jpg\"><img class=\"alignleft size-full wp-image-163\" title=\"Myrtle Waves\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5815_111476139824_111222624824_2032117_1940650_n.jpg\" alt=\"Myrtle Waves\" width=\"130\" height=\"58\" /></a>Myrtle Waves</h4>\r\nVoted 1st Place in Best of the Beach in 2010, Myrtle Waves offers over 20 acres of swerves, curves, waves, and chutes and over 1 million gallons of water! Raft rides, Slides and Family Attractions make this a one-stop place for all around family fun in the sun. The younger kids will enjoy Bubble Bay and Saturation Station while the older kids (and adults) have a blast twisting and turning on Racin\' River, Turbo Twisters, Riptide Rockets Night Flight and more. Myrtle Waves is open seasonally (mid-May thru mid-September) and season passes are available.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/19174_252369281043_209993466043_3841063_2345964_n.jpg\"><img class=\"alignleft size-full wp-image-164\" title=\"NASCAR SpeedPark\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/19174_252369281043_209993466043_3841063_2345964_n.jpg\" alt=\"NASCAR SpeedPark\" width=\"130\" height=\"124\" /></a>NASCAR SpeedPark</h4>\r\nIf speed is your thing then the NASCAR SpeedPark is for you, boasting over 26 acres of the industries hottest go-kart tracks, family rides, mini-golf courses, midway games, in addition to family dining in a relaxed and fun environment. Challenge everyone in your family to a little race and a lot of fun. NASCAR SpeedPark is open year round and various tickets pacakages are available.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/6609_109386611532_107473016532_2615436_7261003_n.jpg\"><img class=\"alignleft size-full wp-image-165\" title=\"The Palace Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/6609_109386611532_107473016532_2615436_7261003_n.jpg\" alt=\"The Palace Theatre\" width=\"130\" height=\"90\" /></a>The Palace Theatre</h4>\r\nThe Palace Theatre is located at Broadway at the Beach and is home to the best in live entertainment. Their 2011 lineup includes Hooray for Hollywood which will take you back through 50 years of movie history inlcuding some of the most popular song and dance routines from movies such as Singing in the Rain and Disney\'s \"Jungle Book\". Back by popular demand is The Magical Spirit of Ireland, enjoy sounds from the Irish Tenors and the world renowned Spirit of the Dance dancers. Get your heart pumping and your pulse racing with Le Grand Cirque Adreneline, a 2 hour death defying performance filled with contortionists, tumblers, incredible aerial acts as well as the breathtaking Wheel of Death. Start your holiday season in style with Christmas on Ice, a a one-of-a-kind show that is sure to be an instant family hit as Santa and his helpers take you on a journey around a 40 foot ice skating rink. The Palace Theatre boasts an elegance and beauty unrivaled by any other Theatre in South Carolina.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/248098_168641923198993_103486043047915_488794_5571923_n.jpg\"><img class=\"alignleft size-full wp-image-166\" title=\"Pirate\'s Voyage\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/248098_168641923198993_103486043047915_488794_5571923_n.jpg\" alt=\"Pirate\'s Voyage\" width=\"130\" height=\"130\" /></a>Pirate\'s Voyage</h4>\r\nAll new for 2011, Pirate\'s Voyage is the latest live dinner show from Dolly Parton. After closing the doors on the long time running Dixie Stampede, Dolly Parton has revamped the venue into a pirates dream! Featuring 15 foot deep, 750 thousand gallon  lagoon, and 3 full-sized ships, complete with pirates, battling over who will take the treasure. Just revealed was the live animal show which will feature a sea lion who will perform and even \"arrrrrrrrgh\" multiple times during the show. The dinner menu has been updated as well but still continues with the ever popular soup from Dixie Stampede. Pirate\'s Voyage opens on June 3rd, 2011...it\'s time to get your tickets, matey!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n52724914645_1534472_5319779.jpg\"><img class=\"alignleft size-full wp-image-167\" title=\"Ripley\'s Aquarium\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n52724914645_1534472_5319779.jpg\" alt=\"Ripley\'s Aquarium\" width=\"130\" height=\"123\" /></a>Ripley\'s Aquarium</h4>\r\nRipley\'s Aquarium Myrtle Beach can be found at Broadway at the Beach. Sea life is abundant in the aquarium with more than 350 individual species featuring 10,000 exotic sea creatures. Get hands on in the Discovery Center by holding a horseshoe crab or head over to Ray Bay, where you can reach out and touch a stingray as they glide by. See some of the more exotic fish from the Amazon River at Rio Amazon or get a glimpse of color at Rainbow Rock where the brightly colored Indo-Pacific fish swim through a coral reef. A new exhibit for 2011 gets you up close and personal with the ocean\'s most feared predator, Sharks-Perfect Predators features over a dozen species of sharks and interactive exhibits where you can even feel the force of a shark bite! Don\'t let your eyes fool you, another new exhibit for 2011 is Mermaids, a captivating show that will occur 3 times daily followed by meet and greets. If you\'re looking for family fun that is also educational, Ripley\'s Aquarium needs to be on your list!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/17337_470146280006_470128185006_10677882_3874238_n.jpg\"><img class=\"alignleft size-full wp-image-168\" title=\"Second Avenue Pier\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/17337_470146280006_470128185006_10677882_3874238_n.jpg\" alt=\"Second Avenue Pier\" width=\"130\" height=\"264\" /></a>Second Avenue Pier</h4>\r\nRecently renovated, Second Avenue Pier, which has been around since 1936, is located on the southern portion of the Myrtle Beach Boardwalk and just steps away from Oceans One Resort. The pier now features the Pier House Restaurant and Pier View Bar &amp; Lounge (open air bar) as well as what the pier has been famous for...fishing! During the summer season, Second Avenue Pier is home to an amazing fireworks display every Wednesday night as part of the Hot Summer Nights on the Boardwalk. Whether you want to relax with some fishing poles, eat breakfast, lunch or dinner, or simply enjoy a tasty beverage in the ocean breeze, Second Avenue Pier is the place to be!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/170744_140966505959886_129530977103439_243558_6670767_o.jpg\"><img class=\"alignleft size-full wp-image-169\" title=\"SkyWheel Myrtle Beach\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/170744_140966505959886_129530977103439_243558_6670767_o.jpg\" alt=\"SkyWheel Myrtle Beach\" width=\"130\" height=\"90\" /></a>SkyWheel Myrtle Beach</h4>\r\n<strong></strong>It\'s tall, it\'s round and it has a light show...yes, the SkyWheel Myrtle is hard to miss along the Myrtle Beach Boardwalk and for all the right reasons.  Standing 200 feet above sea level, you can enjoy a view rarely seen of the Grand Strand in one of 42 temperature controlled glass gondolas. At night a spectacular LED lightshow begins, giving that extra spark to downtown Myrtle Beach. Operating year round, your flight will consist of three rotations and ranges from 8-12 minutes in length and is the first observation wheel of its kind in the United States.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n25273984618_1008302_1057.jpg\"><img class=\"alignleft size-full wp-image-170\" title=\"Tanger Outlets\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n25273984618_1008302_1057.jpg\" alt=\"Tanger Outlets\" width=\"130\" height=\"87\" /></a>Tanger Outlets</h4>\r\n<strong></strong>Shop guilt free at either Tanger Outlets located in both Myrtle Beach on 501 or on Kings Highway near Myrtle Beach Mall. With stores such as Coach, kate spade, Old Navy, Gap, Levi\'s, Under Armour, Carter\'s, Disney Store and many, many more; you are sure to find something for the entire family, even Dad! Not only will you find the nation’s leading designer and brand name stores with the widest selection but the prices are also backed by the Best Price Guarantee. When you shop at Tanger Outlets, you can shop with confidence while on vacation.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/193863_159995370724615_152235458167273_330537_123776_o.jpg\"><img class=\"alignleft size-full wp-image-171\" title=\"WonderWorks\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/193863_159995370724615_152235458167273_330537_123776_o.jpg\" alt=\"WonderWorks\" width=\"130\" height=\"86\" /></a>WonderWorks</h4>\r\n<strong></strong>A new attraction at Broadway at the Beach in 2011 is WonderWorks, an indoor interactive amusement park for the mind. Whether you are driving by or walking around Broadway at the Beach, you can\'t help but be amazed at the building that appears to have fallen from the sky and landed upside down. WonderWorks features more than 100 exhibits that allow you to interact, discover and explore! Feel the 84 mph winds of a hurricane, build your own roller coaster or submarine adventure with WonderSimulators, pilot a fighter jet, manuever the controls of a NASA spacecraft or simply have fun with bubbles in the Bubble Lab. WonderWorks is open year round, seven days a week and they suggest you allow 3-4 hours to get the full experience.','Things to Do','','inherit','open','open','','61-revision-21','','','2011-06-06 19:58:18','2011-06-06 19:58:18','',61,'http://oor.wbtaylor.net/index.php/2011/06/61-revision-21/',0,'revision','',0),(176,1,'2011-06-06 19:58:44','2011-06-06 19:58:44','<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\"><img class=\"alignleft size-full wp-image-145\" title=\"Alabama Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\" alt=\"Alabama Theatre\" width=\"130\" height=\"110\" /></a>Alabama Theatre\r\n<span style=\"color: #000000;\">4750 Hwy 17 South</span>\r\n<span style=\"color: #000000;\"> North Myrtle Beach, SC 29582</span></h4>\r\nVoted the #1 Live Theatre Attraction by Myrtle Beach Visitors featuring the Best in Family Entertainment is located in Barefoot Landing in North Myrtle Beach. The Alabama Theatre long standing performance is \"one The Show\". It has become a go-to show every vacation as the show changes from year to year. one features musical genres such as Country, Gospel, Broadway, Pop and Rock and don\'t forget the comedy! one is family favorite and a show you will never regret. If you visit during the holiday season, you will want to catch the other staple at Alabama Theatre - The South\'s Grandest Christmas Show. This family friendly holiday show features musical performances, dance and plenty of laughter from resident comedian Ricky Mokel. In addition to the regular shows, you will also have the opportunity to see live concerts from chart topping artists such as Kenny Rogers, The Oak Ridge Boys, LeeAnn Rimes and more!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/25739_117188041629520_117187501629574_301191_2621350_n.jpg\"><img class=\"alignleft size-full wp-image-146\" title=\"Alligator Adventure\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/25739_117188041629520_117187501629574_301191_2621350_n.jpg\" alt=\"Alligator Adventure\" width=\"130\" height=\"59\" /></a>Alligator Adventure</h4>\r\nLocated adjacent to Barefoot Landing in North Myrtle Beach, Alligator Adventure puts you face to face with reptiles, alligators, crocodiles, lemurs, tropical birds, tigers, beavers and bats...oh my! Their live shows are a favorite among visitors and feature Alligator Live Feedings in the warmer months (Mid-April through Mid-October), Alligator Handling and Lecture in the cooler months and Snake Handling. Alligator Adventure is also home to UTAN - King of Crocs, the largest crocodile in the United States measuring over 20 feet long! Tickets can be purchased online or at the ticket counter and discounts are available including Active Military discounts and a Locals discount. You also receive a 2nd day free with any paid admission, you can\'t afford not to experience Alligator Adventure!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/185605_204035776273335_111374112206169_853743_1453142_n.jpg\"><img class=\"alignleft size-full wp-image-147\" title=\"Barefoot Landing\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/185605_204035776273335_111374112206169_853743_1453142_n.jpg\" alt=\"Barefoot Landing\" width=\"130\" height=\"93\" /></a>Barefoot Landing</h4>\r\nBarefoot Landing, sitting along the Intercoastal Waterway, in North Myrtle Beach  is home to the Alabama Theatre, House of Blues, multiple restaurants, more than 100 specialty and retail shops and entertainment! During the summer months you can sit back and enjoy fireworks over the lake and also get up close and personal with exotic animals at the TIGERS Exhibit. SummerFest brings excitement all over Barefoot Landing with parades, magicians, clowns, face painters, stilt walkers, jugglers and more 7 nights a week! Barefoot Landing is conveintently located to both Myrtle Beach and North Myrtle Beach travelers wanting to take it slow and easy....that\'s the beach way, that\'s the Barefoot Way.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/221105_10150598183460433_209961260432_18527166_4310333_o.jpg\"><img class=\"alignleft size-full wp-image-149\" title=\"Broadway at the Beach\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/221105_10150598183460433_209961260432_18527166_4310333_o.jpg\" alt=\"Broadway at the Beach\" width=\"130\" height=\"99\" /></a>Broadway at the Beach</h4>\r\nIf you\'re looking for one place to go that has everything, Broadway at the Beach is 350 acres of paradise and was voted #1 Attraction in Myrtle Beach according to Trip Advisor. Featuring shopping, dining, nightlife, and entertainment you simply can not go wrong. 2011 brings new excitement and merchants such as WonderWorks Myrtle Beach (an amusement park for your mind), Legends in Concert (Myrtle Beach favorite recently relocated from Surfside Beach) and Bodies Revealed (summer months only). New restaurants feature Carlos \'n Charlies (family friendly Mexican restuarant), Tilted Kilt Pub &amp; Eatery (Scottish themed pub and festive eatery) and Good Time Charley\'s (American featuring sandwiches, hamburgers and more). You can still enjoy your favorites such as IMAX 3D Theatre, MagiQuest, Senor Frogs, Ripley\'s Aquarium, Jimmy Buffet\'s Margaritaville just to name a few. For those who once loved the Myrtle Beach Pavilion be sure to visit the Pavilion Nostaglia Park featuring some of the Pavilion\'s most popular rides including the historical carousel. Year round events and parades are some of the most popular in the area while the Fireworks show over Lake Broadway is a must see during the summer months and on special occasions. Shop, Dine, Dance, Play...It’s Broadwayyy Fun in Myrtle Beach!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36803_426904242365_31054032365_4668034_4118876_n.jpg\"><img class=\"alignleft size-full wp-image-151\" title=\"The Carolina Opry\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36803_426904242365_31054032365_4668034_4118876_n.jpg\" alt=\"The Carolina Opry\" width=\"130\" height=\"130\" /></a>The Carolina Opry</h4>\r\nCalvin Gilmore presents four legendary shows all in one legendary theater, The Carolina Opry located at Broadway at the Beach. For 25 years The Carolina Opry has been entertaining everyone who has walked through the door with 2 hours of high-energy music, comedy and dance. Good Vibrations features the best music from the 60s, 70s and 80s in a fast-paced show that will bring you back to the best in American popular music. The Carolina Opry Christmas Special combines the best of the holiday spirit with beloved musical performances, fresh comedy and breathtaking dance. LIGHT See The Music offers a one of a kind view of music with a lazer light show set to a variety of muscial genres. New for 2011 is Beatlemania Now! as seen on Broadway and recaptures everything you loved about The Beatles. Beatlemania Now! will run from June 15-September 4 and showtimes are at 5pm Wed-Sun. If you only see one show...it should be at The Carolina Opry.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/165770_159098390807159_156683157715349_325517_5126739_n.jpg\"><img class=\"alignleft size-full wp-image-152\" title=\"Celebration Music Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/165770_159098390807159_156683157715349_325517_5126739_n.jpg\" alt=\"Celebration Music Theatre\" width=\"130\" height=\"118\" /></a>Celebration Music Theatre</h4>\r\nNew for 2011 and located in Surfside Beach, Celebration Music Theatre features the legendary tribute artist show SUPERSTARZ! Live and the Broadway Celebration Series. They also offer a \"just for kids\" production called \"the Rocktastics!\" that will be performing June 15 - August 6. Don\'t miss their Broadway line-up for 2011 with the Minnie Pearl Gospel Hour, All Shook Up, Hairspray, The Southern Bellers and A Christmas Carol.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n60005132046_1972058_8249708.jpg\"><img class=\"alignleft size-full wp-image-153\" title=\"Children\'s Museum of South Carolina\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n60005132046_1972058_8249708.jpg\" alt=\"Children\'s Museum of South Carolina\" width=\"130\" height=\"104\" /></a>Children\'s Museum of South Carolina</h4>\r\nCome \"Touch, Explore, and Play...\" while learning about your world through the interactive exhibits and programs at The Children\'s Museum of South Carolina. Located near the Myrtle Beach Convention Center, CMSC offers special programs, such as Tales for Tots and Digitalis Planetarium, are extremely popular with the adults and children who visit the Museum. With a wide variety of interactive exhibits kids of all ages are sure to have a fun learning experience.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/29330_127959170555007_127958977221693_331764_1537881_n.jpg\"><img class=\"alignleft size-full wp-image-154\" title=\"Coastal Grand Mall\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/29330_127959170555007_127958977221693_331764_1537881_n.jpg\" alt=\"Coastal Grand Mall\" width=\"130\" height=\"133\" /></a>Coastal Grand Mall</h4>\r\nFeaturing anchor stores Belk, Dillard\'s, JC Penney and Sears; Coastal Grand Mall has quickly become the #1 mall in Myrtle Beach. Featuring more than 100 stores and restaurants, you will find everything you were looking for...and then some! After you have shopped until you drop, sit down and relax in the state of the art 14 screen Cinemark Movie Theater or enjoy something to eat at Abuelo\'s, Texas Roadhouse, Red Robin and more. Treat everyone in the family to something unique from Coastal Grand Mall.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/20039_235537488958_94486398958_3067222_3404770_n.jpg\"><img class=\"alignleft size-full wp-image-155\" title=\"Family Kingdom Amusement Park\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/20039_235537488958_94486398958_3067222_3404770_n.jpg\" alt=\"Family Kingdom Amusement Park\" width=\"130\" height=\"65\" /></a>Family Kingdom Amusement Park</h4>\r\nJust one block from Oceans One Resort you will find Myrtle Beach\'s only Seaside Amusement Park and Oceanfront Water Park, Family Kingdom! Featuring Go Karts, Kiddie Rides, Family Rides, Water Rides and Thrill Rides the entire family can enjoy their time in the park. Best of all, there is NO ADMISSION FEE! New for 2011 is the Picnic Pavilion, a covered dining area that can accommodate up to 100 guests for birthday parties, family reunions or any other group outing.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/72254_10150319280965158_196453920157_15571741_4625780_n.jpg\"><img class=\"alignleft size-full wp-image-156\" title=\"House of Blues\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/72254_10150319280965158_196453920157_15571741_4625780_n.jpg\" alt=\"House of Blues\" width=\"130\" height=\"130\" /></a>House of Blues</h4>\r\nThe House of Blues Myrtle Beach, located in Barefoot Landing, offers live music on the Sugar Shack Deck and the Concert Hall and delta inspired cuisine in their world famous restuarant. With leading acts from country, rock, top 40 and more your vacation won\'t be complete without the intimate setting with your favorite artist. You can even \"Pass the Line\" and \"Crash the Barricade\" to gain entry first into the concerts. The Gospel Brunch in the restaurant is something that shouldn\'t missed with an amazing buffet and inspiring gospel performances. Where the heart meets the soul®. The ultimate live music and dining experience.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/15867_170700122851_45187567851_2960017_1281271_n.jpg\"><img class=\"alignleft size-full wp-image-157\" title=\"Legends in Concert\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/15867_170700122851_45187567851_2960017_1281271_n.jpg\" alt=\"Legends in Concert\" width=\"130\" height=\"77\" /></a>Legends in Concert</h4>\r\nThe World\'s Longest Running Live Tribute Show, Legends in Concert has been a favorite in Myrtle Beach for years and offering a variety of concerts and live shows and many other activities for all ages. Legends in Concert recently relocated a state-of-the-art theater in Broadway at the Beach next to Planet Hollywood!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n43711241696_2031957_4252189.jpg\"><img class=\"alignleft size-full wp-image-158\" title=\"The Market Common\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n43711241696_2031957_4252189.jpg\" alt=\"The Market Common\" width=\"130\" height=\"98\" /></a>The Market Common</h4>\r\nA place where you can experience exceptional shopping and dining in a beautifully-designed village setting. From the nation’s most celebrated names in retail to ice cream and pizza for the kids, and from one-of-a-kind restaurants to the most comfortable movie theater at the beach, The Market Common is always worth your time. The Market Common is also home to multiple festivals all year long, such as Sun Fun Festival, Beerfest, Myrtle Beach Wine Fest, Oktoberfest and more!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/12935_202879413428_31330523428_3156769_3542982_n.jpg\"><img class=\"alignleft size-full wp-image-159\" title=\"Medieval Times\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/12935_202879413428_31330523428_3156769_3542982_n.jpg\" alt=\"Medieval Times\" width=\"130\" height=\"130\" /></a>Medieval Times</h4>\r\nInside the stone walls of the 11th century-style castle, Medieval Spain comes to life as six knights, donning authentic armor, clash in a jousting tournament for the title of King\'s Champion. Let your imagination take you to Medieval Times.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/30659_128515707171283_113684151987772_212653_3752426_n.jpg\"><img class=\"alignleft size-full wp-image-160\" title=\"Myrtle Beach Boardwalk\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/30659_128515707171283_113684151987772_212653_3752426_n.jpg\" alt=\"Myrtle Beach Boardwalk\" width=\"130\" height=\"62\" /></a>Myrtle Beach Boardwalk</h4>\r\nThe Myrtle Beach Boardwalk opened in 2010 to rave reviews! The 1.2 mile boardwalk stretches from 14th Avenue North to 2nd Avenue North in the heart of Myrtle Beach. The Myrtle Beach Boardwalk is home to restaurants, shopping, arcades, ice cream shops and more. In the center of it all is the brand new SkyWheel Myrtle Beach and Landshark Bar &amp; Grill which opened to rave reviews in May 2011!  Check out our <a title=\"Boardwalk\" href=\"http://oor.wbtaylor.net/index.php/boardwalk/\">Myrtle Beach Boardwalk page</a> for more information.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36253_189678207725374_113346388691890_679290_4273636_n.jpg\"><img class=\"alignleft size-full wp-image-161\" title=\"Myrtle Beach Mall\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36253_189678207725374_113346388691890_679290_4273636_n.jpg\" alt=\"Myrtle Beach Mall\" width=\"130\" height=\"77\" /></a>Myrtle Beach Mall</h4>\r\nConveinently located at the corner of Highways 22 and 17, Myrtle Beach Mall continues to provide shoppers with unique stores and value not offered by other malls in the area. Two Belk stores, JCPenney are the long standing anchors and are now accompanied by the only Bass Pro Shops in South Carolina! The mall is also home to Uptown Theater, Home of the Carolina Improv, an improv comedy about living and playing Myrtle Beach. If you aren\'t sure what you need, shopping at Myrtle Beach Mall will help you figure it out.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n70793224673_1768505_6774025.jpg\"><img class=\"alignleft size-full wp-image-162\" title=\"Myrtle Beach Pelicans\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n70793224673_1768505_6774025.jpg\" alt=\"Myrtle Beach Pelicans\" width=\"130\" height=\"114\" /></a>Myrtle Beach Pelicans</h4>\r\nThe Myrtle Beach Pelicans have been bringing minor league baseball to the beach since 1999 and as of 2011 are the Advanced \'A\' Affiliate of the Texas Rangers. With various promotions and events, including multiple fireworks shows, the Myrtle Beach Pelicans are a family favorite stop on their vacation. Kids are allowed to run the bases following the game and play catch on the field prior to the start of the game.  To add to the fun you always have to be on the lookout for Splash, the official mascot who is usually up to no good; Rally Shark, who adds excitement late in the game and the always popular, Deuce - part bat boy, part ball caddy. As they say...Baseball\'s Even Better at the Beach!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5815_111476139824_111222624824_2032117_1940650_n.jpg\"><img class=\"alignleft size-full wp-image-163\" title=\"Myrtle Waves\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5815_111476139824_111222624824_2032117_1940650_n.jpg\" alt=\"Myrtle Waves\" width=\"130\" height=\"58\" /></a>Myrtle Waves</h4>\r\nVoted 1st Place in Best of the Beach in 2010, Myrtle Waves offers over 20 acres of swerves, curves, waves, and chutes and over 1 million gallons of water! Raft rides, Slides and Family Attractions make this a one-stop place for all around family fun in the sun. The younger kids will enjoy Bubble Bay and Saturation Station while the older kids (and adults) have a blast twisting and turning on Racin\' River, Turbo Twisters, Riptide Rockets Night Flight and more. Myrtle Waves is open seasonally (mid-May thru mid-September) and season passes are available.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/19174_252369281043_209993466043_3841063_2345964_n.jpg\"><img class=\"alignleft size-full wp-image-164\" title=\"NASCAR SpeedPark\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/19174_252369281043_209993466043_3841063_2345964_n.jpg\" alt=\"NASCAR SpeedPark\" width=\"130\" height=\"124\" /></a>NASCAR SpeedPark</h4>\r\nIf speed is your thing then the NASCAR SpeedPark is for you, boasting over 26 acres of the industries hottest go-kart tracks, family rides, mini-golf courses, midway games, in addition to family dining in a relaxed and fun environment. Challenge everyone in your family to a little race and a lot of fun. NASCAR SpeedPark is open year round and various tickets pacakages are available.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/6609_109386611532_107473016532_2615436_7261003_n.jpg\"><img class=\"alignleft size-full wp-image-165\" title=\"The Palace Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/6609_109386611532_107473016532_2615436_7261003_n.jpg\" alt=\"The Palace Theatre\" width=\"130\" height=\"90\" /></a>The Palace Theatre</h4>\r\nThe Palace Theatre is located at Broadway at the Beach and is home to the best in live entertainment. Their 2011 lineup includes Hooray for Hollywood which will take you back through 50 years of movie history inlcuding some of the most popular song and dance routines from movies such as Singing in the Rain and Disney\'s \"Jungle Book\". Back by popular demand is The Magical Spirit of Ireland, enjoy sounds from the Irish Tenors and the world renowned Spirit of the Dance dancers. Get your heart pumping and your pulse racing with Le Grand Cirque Adreneline, a 2 hour death defying performance filled with contortionists, tumblers, incredible aerial acts as well as the breathtaking Wheel of Death. Start your holiday season in style with Christmas on Ice, a a one-of-a-kind show that is sure to be an instant family hit as Santa and his helpers take you on a journey around a 40 foot ice skating rink. The Palace Theatre boasts an elegance and beauty unrivaled by any other Theatre in South Carolina.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/248098_168641923198993_103486043047915_488794_5571923_n.jpg\"><img class=\"alignleft size-full wp-image-166\" title=\"Pirate\'s Voyage\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/248098_168641923198993_103486043047915_488794_5571923_n.jpg\" alt=\"Pirate\'s Voyage\" width=\"130\" height=\"130\" /></a>Pirate\'s Voyage</h4>\r\nAll new for 2011, Pirate\'s Voyage is the latest live dinner show from Dolly Parton. After closing the doors on the long time running Dixie Stampede, Dolly Parton has revamped the venue into a pirates dream! Featuring 15 foot deep, 750 thousand gallon  lagoon, and 3 full-sized ships, complete with pirates, battling over who will take the treasure. Just revealed was the live animal show which will feature a sea lion who will perform and even \"arrrrrrrrgh\" multiple times during the show. The dinner menu has been updated as well but still continues with the ever popular soup from Dixie Stampede. Pirate\'s Voyage opens on June 3rd, 2011...it\'s time to get your tickets, matey!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n52724914645_1534472_5319779.jpg\"><img class=\"alignleft size-full wp-image-167\" title=\"Ripley\'s Aquarium\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n52724914645_1534472_5319779.jpg\" alt=\"Ripley\'s Aquarium\" width=\"130\" height=\"123\" /></a>Ripley\'s Aquarium</h4>\r\nRipley\'s Aquarium Myrtle Beach can be found at Broadway at the Beach. Sea life is abundant in the aquarium with more than 350 individual species featuring 10,000 exotic sea creatures. Get hands on in the Discovery Center by holding a horseshoe crab or head over to Ray Bay, where you can reach out and touch a stingray as they glide by. See some of the more exotic fish from the Amazon River at Rio Amazon or get a glimpse of color at Rainbow Rock where the brightly colored Indo-Pacific fish swim through a coral reef. A new exhibit for 2011 gets you up close and personal with the ocean\'s most feared predator, Sharks-Perfect Predators features over a dozen species of sharks and interactive exhibits where you can even feel the force of a shark bite! Don\'t let your eyes fool you, another new exhibit for 2011 is Mermaids, a captivating show that will occur 3 times daily followed by meet and greets. If you\'re looking for family fun that is also educational, Ripley\'s Aquarium needs to be on your list!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/17337_470146280006_470128185006_10677882_3874238_n.jpg\"><img class=\"alignleft size-full wp-image-168\" title=\"Second Avenue Pier\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/17337_470146280006_470128185006_10677882_3874238_n.jpg\" alt=\"Second Avenue Pier\" width=\"130\" height=\"264\" /></a>Second Avenue Pier</h4>\r\nRecently renovated, Second Avenue Pier, which has been around since 1936, is located on the southern portion of the Myrtle Beach Boardwalk and just steps away from Oceans One Resort. The pier now features the Pier House Restaurant and Pier View Bar &amp; Lounge (open air bar) as well as what the pier has been famous for...fishing! During the summer season, Second Avenue Pier is home to an amazing fireworks display every Wednesday night as part of the Hot Summer Nights on the Boardwalk. Whether you want to relax with some fishing poles, eat breakfast, lunch or dinner, or simply enjoy a tasty beverage in the ocean breeze, Second Avenue Pier is the place to be!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/170744_140966505959886_129530977103439_243558_6670767_o.jpg\"><img class=\"alignleft size-full wp-image-169\" title=\"SkyWheel Myrtle Beach\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/170744_140966505959886_129530977103439_243558_6670767_o.jpg\" alt=\"SkyWheel Myrtle Beach\" width=\"130\" height=\"90\" /></a>SkyWheel Myrtle Beach</h4>\r\n<strong></strong>It\'s tall, it\'s round and it has a light show...yes, the SkyWheel Myrtle is hard to miss along the Myrtle Beach Boardwalk and for all the right reasons.  Standing 200 feet above sea level, you can enjoy a view rarely seen of the Grand Strand in one of 42 temperature controlled glass gondolas. At night a spectacular LED lightshow begins, giving that extra spark to downtown Myrtle Beach. Operating year round, your flight will consist of three rotations and ranges from 8-12 minutes in length and is the first observation wheel of its kind in the United States.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n25273984618_1008302_1057.jpg\"><img class=\"alignleft size-full wp-image-170\" title=\"Tanger Outlets\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n25273984618_1008302_1057.jpg\" alt=\"Tanger Outlets\" width=\"130\" height=\"87\" /></a>Tanger Outlets</h4>\r\n<strong></strong>Shop guilt free at either Tanger Outlets located in both Myrtle Beach on 501 or on Kings Highway near Myrtle Beach Mall. With stores such as Coach, kate spade, Old Navy, Gap, Levi\'s, Under Armour, Carter\'s, Disney Store and many, many more; you are sure to find something for the entire family, even Dad! Not only will you find the nation’s leading designer and brand name stores with the widest selection but the prices are also backed by the Best Price Guarantee. When you shop at Tanger Outlets, you can shop with confidence while on vacation.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/193863_159995370724615_152235458167273_330537_123776_o.jpg\"><img class=\"alignleft size-full wp-image-171\" title=\"WonderWorks\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/193863_159995370724615_152235458167273_330537_123776_o.jpg\" alt=\"WonderWorks\" width=\"130\" height=\"86\" /></a>WonderWorks</h4>\r\n<strong></strong>A new attraction at Broadway at the Beach in 2011 is WonderWorks, an indoor interactive amusement park for the mind. Whether you are driving by or walking around Broadway at the Beach, you can\'t help but be amazed at the building that appears to have fallen from the sky and landed upside down. WonderWorks features more than 100 exhibits that allow you to interact, discover and explore! Feel the 84 mph winds of a hurricane, build your own roller coaster or submarine adventure with WonderSimulators, pilot a fighter jet, manuever the controls of a NASA spacecraft or simply have fun with bubbles in the Bubble Lab. WonderWorks is open year round, seven days a week and they suggest you allow 3-4 hours to get the full experience.','Things to Do','','inherit','open','open','','61-revision-22','','','2011-06-06 19:58:44','2011-06-06 19:58:44','',61,'http://oor.wbtaylor.net/index.php/2011/06/61-revision-22/',0,'revision','',0),(177,1,'2011-06-06 19:58:59','2011-06-06 19:58:59','<a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\"><img class=\"alignleft size-full wp-image-145\" title=\"Alabama Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\" alt=\"Alabama Theatre\" width=\"130\" height=\"110\" /></a>Alabama Theatre\r\n<span style=\"color: #000000;\">4750 Hwy 17 South</span>\r\n<span style=\"color: #000000;\"> North Myrtle Beach, SC 29582</span>\r\n\r\nVoted the #1 Live Theatre Attraction by Myrtle Beach Visitors featuring the Best in Family Entertainment is located in Barefoot Landing in North Myrtle Beach. The Alabama Theatre long standing performance is \"one The Show\". It has become a go-to show every vacation as the show changes from year to year. one features musical genres such as Country, Gospel, Broadway, Pop and Rock and don\'t forget the comedy! one is family favorite and a show you will never regret. If you visit during the holiday season, you will want to catch the other staple at Alabama Theatre - The South\'s Grandest Christmas Show. This family friendly holiday show features musical performances, dance and plenty of laughter from resident comedian Ricky Mokel. In addition to the regular shows, you will also have the opportunity to see live concerts from chart topping artists such as Kenny Rogers, The Oak Ridge Boys, LeeAnn Rimes and more!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/25739_117188041629520_117187501629574_301191_2621350_n.jpg\"><img class=\"alignleft size-full wp-image-146\" title=\"Alligator Adventure\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/25739_117188041629520_117187501629574_301191_2621350_n.jpg\" alt=\"Alligator Adventure\" width=\"130\" height=\"59\" /></a>Alligator Adventure</h4>\r\nLocated adjacent to Barefoot Landing in North Myrtle Beach, Alligator Adventure puts you face to face with reptiles, alligators, crocodiles, lemurs, tropical birds, tigers, beavers and bats...oh my! Their live shows are a favorite among visitors and feature Alligator Live Feedings in the warmer months (Mid-April through Mid-October), Alligator Handling and Lecture in the cooler months and Snake Handling. Alligator Adventure is also home to UTAN - King of Crocs, the largest crocodile in the United States measuring over 20 feet long! Tickets can be purchased online or at the ticket counter and discounts are available including Active Military discounts and a Locals discount. You also receive a 2nd day free with any paid admission, you can\'t afford not to experience Alligator Adventure!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/185605_204035776273335_111374112206169_853743_1453142_n.jpg\"><img class=\"alignleft size-full wp-image-147\" title=\"Barefoot Landing\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/185605_204035776273335_111374112206169_853743_1453142_n.jpg\" alt=\"Barefoot Landing\" width=\"130\" height=\"93\" /></a>Barefoot Landing</h4>\r\nBarefoot Landing, sitting along the Intercoastal Waterway, in North Myrtle Beach  is home to the Alabama Theatre, House of Blues, multiple restaurants, more than 100 specialty and retail shops and entertainment! During the summer months you can sit back and enjoy fireworks over the lake and also get up close and personal with exotic animals at the TIGERS Exhibit. SummerFest brings excitement all over Barefoot Landing with parades, magicians, clowns, face painters, stilt walkers, jugglers and more 7 nights a week! Barefoot Landing is conveintently located to both Myrtle Beach and North Myrtle Beach travelers wanting to take it slow and easy....that\'s the beach way, that\'s the Barefoot Way.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/221105_10150598183460433_209961260432_18527166_4310333_o.jpg\"><img class=\"alignleft size-full wp-image-149\" title=\"Broadway at the Beach\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/221105_10150598183460433_209961260432_18527166_4310333_o.jpg\" alt=\"Broadway at the Beach\" width=\"130\" height=\"99\" /></a>Broadway at the Beach</h4>\r\nIf you\'re looking for one place to go that has everything, Broadway at the Beach is 350 acres of paradise and was voted #1 Attraction in Myrtle Beach according to Trip Advisor. Featuring shopping, dining, nightlife, and entertainment you simply can not go wrong. 2011 brings new excitement and merchants such as WonderWorks Myrtle Beach (an amusement park for your mind), Legends in Concert (Myrtle Beach favorite recently relocated from Surfside Beach) and Bodies Revealed (summer months only). New restaurants feature Carlos \'n Charlies (family friendly Mexican restuarant), Tilted Kilt Pub &amp; Eatery (Scottish themed pub and festive eatery) and Good Time Charley\'s (American featuring sandwiches, hamburgers and more). You can still enjoy your favorites such as IMAX 3D Theatre, MagiQuest, Senor Frogs, Ripley\'s Aquarium, Jimmy Buffet\'s Margaritaville just to name a few. For those who once loved the Myrtle Beach Pavilion be sure to visit the Pavilion Nostaglia Park featuring some of the Pavilion\'s most popular rides including the historical carousel. Year round events and parades are some of the most popular in the area while the Fireworks show over Lake Broadway is a must see during the summer months and on special occasions. Shop, Dine, Dance, Play...It’s Broadwayyy Fun in Myrtle Beach!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36803_426904242365_31054032365_4668034_4118876_n.jpg\"><img class=\"alignleft size-full wp-image-151\" title=\"The Carolina Opry\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36803_426904242365_31054032365_4668034_4118876_n.jpg\" alt=\"The Carolina Opry\" width=\"130\" height=\"130\" /></a>The Carolina Opry</h4>\r\nCalvin Gilmore presents four legendary shows all in one legendary theater, The Carolina Opry located at Broadway at the Beach. For 25 years The Carolina Opry has been entertaining everyone who has walked through the door with 2 hours of high-energy music, comedy and dance. Good Vibrations features the best music from the 60s, 70s and 80s in a fast-paced show that will bring you back to the best in American popular music. The Carolina Opry Christmas Special combines the best of the holiday spirit with beloved musical performances, fresh comedy and breathtaking dance. LIGHT See The Music offers a one of a kind view of music with a lazer light show set to a variety of muscial genres. New for 2011 is Beatlemania Now! as seen on Broadway and recaptures everything you loved about The Beatles. Beatlemania Now! will run from June 15-September 4 and showtimes are at 5pm Wed-Sun. If you only see one show...it should be at The Carolina Opry.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/165770_159098390807159_156683157715349_325517_5126739_n.jpg\"><img class=\"alignleft size-full wp-image-152\" title=\"Celebration Music Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/165770_159098390807159_156683157715349_325517_5126739_n.jpg\" alt=\"Celebration Music Theatre\" width=\"130\" height=\"118\" /></a>Celebration Music Theatre</h4>\r\nNew for 2011 and located in Surfside Beach, Celebration Music Theatre features the legendary tribute artist show SUPERSTARZ! Live and the Broadway Celebration Series. They also offer a \"just for kids\" production called \"the Rocktastics!\" that will be performing June 15 - August 6. Don\'t miss their Broadway line-up for 2011 with the Minnie Pearl Gospel Hour, All Shook Up, Hairspray, The Southern Bellers and A Christmas Carol.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n60005132046_1972058_8249708.jpg\"><img class=\"alignleft size-full wp-image-153\" title=\"Children\'s Museum of South Carolina\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n60005132046_1972058_8249708.jpg\" alt=\"Children\'s Museum of South Carolina\" width=\"130\" height=\"104\" /></a>Children\'s Museum of South Carolina</h4>\r\nCome \"Touch, Explore, and Play...\" while learning about your world through the interactive exhibits and programs at The Children\'s Museum of South Carolina. Located near the Myrtle Beach Convention Center, CMSC offers special programs, such as Tales for Tots and Digitalis Planetarium, are extremely popular with the adults and children who visit the Museum. With a wide variety of interactive exhibits kids of all ages are sure to have a fun learning experience.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/29330_127959170555007_127958977221693_331764_1537881_n.jpg\"><img class=\"alignleft size-full wp-image-154\" title=\"Coastal Grand Mall\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/29330_127959170555007_127958977221693_331764_1537881_n.jpg\" alt=\"Coastal Grand Mall\" width=\"130\" height=\"133\" /></a>Coastal Grand Mall</h4>\r\nFeaturing anchor stores Belk, Dillard\'s, JC Penney and Sears; Coastal Grand Mall has quickly become the #1 mall in Myrtle Beach. Featuring more than 100 stores and restaurants, you will find everything you were looking for...and then some! After you have shopped until you drop, sit down and relax in the state of the art 14 screen Cinemark Movie Theater or enjoy something to eat at Abuelo\'s, Texas Roadhouse, Red Robin and more. Treat everyone in the family to something unique from Coastal Grand Mall.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/20039_235537488958_94486398958_3067222_3404770_n.jpg\"><img class=\"alignleft size-full wp-image-155\" title=\"Family Kingdom Amusement Park\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/20039_235537488958_94486398958_3067222_3404770_n.jpg\" alt=\"Family Kingdom Amusement Park\" width=\"130\" height=\"65\" /></a>Family Kingdom Amusement Park</h4>\r\nJust one block from Oceans One Resort you will find Myrtle Beach\'s only Seaside Amusement Park and Oceanfront Water Park, Family Kingdom! Featuring Go Karts, Kiddie Rides, Family Rides, Water Rides and Thrill Rides the entire family can enjoy their time in the park. Best of all, there is NO ADMISSION FEE! New for 2011 is the Picnic Pavilion, a covered dining area that can accommodate up to 100 guests for birthday parties, family reunions or any other group outing.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/72254_10150319280965158_196453920157_15571741_4625780_n.jpg\"><img class=\"alignleft size-full wp-image-156\" title=\"House of Blues\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/72254_10150319280965158_196453920157_15571741_4625780_n.jpg\" alt=\"House of Blues\" width=\"130\" height=\"130\" /></a>House of Blues</h4>\r\nThe House of Blues Myrtle Beach, located in Barefoot Landing, offers live music on the Sugar Shack Deck and the Concert Hall and delta inspired cuisine in their world famous restuarant. With leading acts from country, rock, top 40 and more your vacation won\'t be complete without the intimate setting with your favorite artist. You can even \"Pass the Line\" and \"Crash the Barricade\" to gain entry first into the concerts. The Gospel Brunch in the restaurant is something that shouldn\'t missed with an amazing buffet and inspiring gospel performances. Where the heart meets the soul®. The ultimate live music and dining experience.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/15867_170700122851_45187567851_2960017_1281271_n.jpg\"><img class=\"alignleft size-full wp-image-157\" title=\"Legends in Concert\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/15867_170700122851_45187567851_2960017_1281271_n.jpg\" alt=\"Legends in Concert\" width=\"130\" height=\"77\" /></a>Legends in Concert</h4>\r\nThe World\'s Longest Running Live Tribute Show, Legends in Concert has been a favorite in Myrtle Beach for years and offering a variety of concerts and live shows and many other activities for all ages. Legends in Concert recently relocated a state-of-the-art theater in Broadway at the Beach next to Planet Hollywood!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n43711241696_2031957_4252189.jpg\"><img class=\"alignleft size-full wp-image-158\" title=\"The Market Common\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n43711241696_2031957_4252189.jpg\" alt=\"The Market Common\" width=\"130\" height=\"98\" /></a>The Market Common</h4>\r\nA place where you can experience exceptional shopping and dining in a beautifully-designed village setting. From the nation’s most celebrated names in retail to ice cream and pizza for the kids, and from one-of-a-kind restaurants to the most comfortable movie theater at the beach, The Market Common is always worth your time. The Market Common is also home to multiple festivals all year long, such as Sun Fun Festival, Beerfest, Myrtle Beach Wine Fest, Oktoberfest and more!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/12935_202879413428_31330523428_3156769_3542982_n.jpg\"><img class=\"alignleft size-full wp-image-159\" title=\"Medieval Times\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/12935_202879413428_31330523428_3156769_3542982_n.jpg\" alt=\"Medieval Times\" width=\"130\" height=\"130\" /></a>Medieval Times</h4>\r\nInside the stone walls of the 11th century-style castle, Medieval Spain comes to life as six knights, donning authentic armor, clash in a jousting tournament for the title of King\'s Champion. Let your imagination take you to Medieval Times.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/30659_128515707171283_113684151987772_212653_3752426_n.jpg\"><img class=\"alignleft size-full wp-image-160\" title=\"Myrtle Beach Boardwalk\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/30659_128515707171283_113684151987772_212653_3752426_n.jpg\" alt=\"Myrtle Beach Boardwalk\" width=\"130\" height=\"62\" /></a>Myrtle Beach Boardwalk</h4>\r\nThe Myrtle Beach Boardwalk opened in 2010 to rave reviews! The 1.2 mile boardwalk stretches from 14th Avenue North to 2nd Avenue North in the heart of Myrtle Beach. The Myrtle Beach Boardwalk is home to restaurants, shopping, arcades, ice cream shops and more. In the center of it all is the brand new SkyWheel Myrtle Beach and Landshark Bar &amp; Grill which opened to rave reviews in May 2011!  Check out our <a title=\"Boardwalk\" href=\"http://oor.wbtaylor.net/index.php/boardwalk/\">Myrtle Beach Boardwalk page</a> for more information.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36253_189678207725374_113346388691890_679290_4273636_n.jpg\"><img class=\"alignleft size-full wp-image-161\" title=\"Myrtle Beach Mall\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36253_189678207725374_113346388691890_679290_4273636_n.jpg\" alt=\"Myrtle Beach Mall\" width=\"130\" height=\"77\" /></a>Myrtle Beach Mall</h4>\r\nConveinently located at the corner of Highways 22 and 17, Myrtle Beach Mall continues to provide shoppers with unique stores and value not offered by other malls in the area. Two Belk stores, JCPenney are the long standing anchors and are now accompanied by the only Bass Pro Shops in South Carolina! The mall is also home to Uptown Theater, Home of the Carolina Improv, an improv comedy about living and playing Myrtle Beach. If you aren\'t sure what you need, shopping at Myrtle Beach Mall will help you figure it out.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n70793224673_1768505_6774025.jpg\"><img class=\"alignleft size-full wp-image-162\" title=\"Myrtle Beach Pelicans\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n70793224673_1768505_6774025.jpg\" alt=\"Myrtle Beach Pelicans\" width=\"130\" height=\"114\" /></a>Myrtle Beach Pelicans</h4>\r\nThe Myrtle Beach Pelicans have been bringing minor league baseball to the beach since 1999 and as of 2011 are the Advanced \'A\' Affiliate of the Texas Rangers. With various promotions and events, including multiple fireworks shows, the Myrtle Beach Pelicans are a family favorite stop on their vacation. Kids are allowed to run the bases following the game and play catch on the field prior to the start of the game.  To add to the fun you always have to be on the lookout for Splash, the official mascot who is usually up to no good; Rally Shark, who adds excitement late in the game and the always popular, Deuce - part bat boy, part ball caddy. As they say...Baseball\'s Even Better at the Beach!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5815_111476139824_111222624824_2032117_1940650_n.jpg\"><img class=\"alignleft size-full wp-image-163\" title=\"Myrtle Waves\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5815_111476139824_111222624824_2032117_1940650_n.jpg\" alt=\"Myrtle Waves\" width=\"130\" height=\"58\" /></a>Myrtle Waves</h4>\r\nVoted 1st Place in Best of the Beach in 2010, Myrtle Waves offers over 20 acres of swerves, curves, waves, and chutes and over 1 million gallons of water! Raft rides, Slides and Family Attractions make this a one-stop place for all around family fun in the sun. The younger kids will enjoy Bubble Bay and Saturation Station while the older kids (and adults) have a blast twisting and turning on Racin\' River, Turbo Twisters, Riptide Rockets Night Flight and more. Myrtle Waves is open seasonally (mid-May thru mid-September) and season passes are available.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/19174_252369281043_209993466043_3841063_2345964_n.jpg\"><img class=\"alignleft size-full wp-image-164\" title=\"NASCAR SpeedPark\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/19174_252369281043_209993466043_3841063_2345964_n.jpg\" alt=\"NASCAR SpeedPark\" width=\"130\" height=\"124\" /></a>NASCAR SpeedPark</h4>\r\nIf speed is your thing then the NASCAR SpeedPark is for you, boasting over 26 acres of the industries hottest go-kart tracks, family rides, mini-golf courses, midway games, in addition to family dining in a relaxed and fun environment. Challenge everyone in your family to a little race and a lot of fun. NASCAR SpeedPark is open year round and various tickets pacakages are available.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/6609_109386611532_107473016532_2615436_7261003_n.jpg\"><img class=\"alignleft size-full wp-image-165\" title=\"The Palace Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/6609_109386611532_107473016532_2615436_7261003_n.jpg\" alt=\"The Palace Theatre\" width=\"130\" height=\"90\" /></a>The Palace Theatre</h4>\r\nThe Palace Theatre is located at Broadway at the Beach and is home to the best in live entertainment. Their 2011 lineup includes Hooray for Hollywood which will take you back through 50 years of movie history inlcuding some of the most popular song and dance routines from movies such as Singing in the Rain and Disney\'s \"Jungle Book\". Back by popular demand is The Magical Spirit of Ireland, enjoy sounds from the Irish Tenors and the world renowned Spirit of the Dance dancers. Get your heart pumping and your pulse racing with Le Grand Cirque Adreneline, a 2 hour death defying performance filled with contortionists, tumblers, incredible aerial acts as well as the breathtaking Wheel of Death. Start your holiday season in style with Christmas on Ice, a a one-of-a-kind show that is sure to be an instant family hit as Santa and his helpers take you on a journey around a 40 foot ice skating rink. The Palace Theatre boasts an elegance and beauty unrivaled by any other Theatre in South Carolina.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/248098_168641923198993_103486043047915_488794_5571923_n.jpg\"><img class=\"alignleft size-full wp-image-166\" title=\"Pirate\'s Voyage\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/248098_168641923198993_103486043047915_488794_5571923_n.jpg\" alt=\"Pirate\'s Voyage\" width=\"130\" height=\"130\" /></a>Pirate\'s Voyage</h4>\r\nAll new for 2011, Pirate\'s Voyage is the latest live dinner show from Dolly Parton. After closing the doors on the long time running Dixie Stampede, Dolly Parton has revamped the venue into a pirates dream! Featuring 15 foot deep, 750 thousand gallon  lagoon, and 3 full-sized ships, complete with pirates, battling over who will take the treasure. Just revealed was the live animal show which will feature a sea lion who will perform and even \"arrrrrrrrgh\" multiple times during the show. The dinner menu has been updated as well but still continues with the ever popular soup from Dixie Stampede. Pirate\'s Voyage opens on June 3rd, 2011...it\'s time to get your tickets, matey!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n52724914645_1534472_5319779.jpg\"><img class=\"alignleft size-full wp-image-167\" title=\"Ripley\'s Aquarium\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n52724914645_1534472_5319779.jpg\" alt=\"Ripley\'s Aquarium\" width=\"130\" height=\"123\" /></a>Ripley\'s Aquarium</h4>\r\nRipley\'s Aquarium Myrtle Beach can be found at Broadway at the Beach. Sea life is abundant in the aquarium with more than 350 individual species featuring 10,000 exotic sea creatures. Get hands on in the Discovery Center by holding a horseshoe crab or head over to Ray Bay, where you can reach out and touch a stingray as they glide by. See some of the more exotic fish from the Amazon River at Rio Amazon or get a glimpse of color at Rainbow Rock where the brightly colored Indo-Pacific fish swim through a coral reef. A new exhibit for 2011 gets you up close and personal with the ocean\'s most feared predator, Sharks-Perfect Predators features over a dozen species of sharks and interactive exhibits where you can even feel the force of a shark bite! Don\'t let your eyes fool you, another new exhibit for 2011 is Mermaids, a captivating show that will occur 3 times daily followed by meet and greets. If you\'re looking for family fun that is also educational, Ripley\'s Aquarium needs to be on your list!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/17337_470146280006_470128185006_10677882_3874238_n.jpg\"><img class=\"alignleft size-full wp-image-168\" title=\"Second Avenue Pier\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/17337_470146280006_470128185006_10677882_3874238_n.jpg\" alt=\"Second Avenue Pier\" width=\"130\" height=\"264\" /></a>Second Avenue Pier</h4>\r\nRecently renovated, Second Avenue Pier, which has been around since 1936, is located on the southern portion of the Myrtle Beach Boardwalk and just steps away from Oceans One Resort. The pier now features the Pier House Restaurant and Pier View Bar &amp; Lounge (open air bar) as well as what the pier has been famous for...fishing! During the summer season, Second Avenue Pier is home to an amazing fireworks display every Wednesday night as part of the Hot Summer Nights on the Boardwalk. Whether you want to relax with some fishing poles, eat breakfast, lunch or dinner, or simply enjoy a tasty beverage in the ocean breeze, Second Avenue Pier is the place to be!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/170744_140966505959886_129530977103439_243558_6670767_o.jpg\"><img class=\"alignleft size-full wp-image-169\" title=\"SkyWheel Myrtle Beach\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/170744_140966505959886_129530977103439_243558_6670767_o.jpg\" alt=\"SkyWheel Myrtle Beach\" width=\"130\" height=\"90\" /></a>SkyWheel Myrtle Beach</h4>\r\n<strong></strong>It\'s tall, it\'s round and it has a light show...yes, the SkyWheel Myrtle is hard to miss along the Myrtle Beach Boardwalk and for all the right reasons.  Standing 200 feet above sea level, you can enjoy a view rarely seen of the Grand Strand in one of 42 temperature controlled glass gondolas. At night a spectacular LED lightshow begins, giving that extra spark to downtown Myrtle Beach. Operating year round, your flight will consist of three rotations and ranges from 8-12 minutes in length and is the first observation wheel of its kind in the United States.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n25273984618_1008302_1057.jpg\"><img class=\"alignleft size-full wp-image-170\" title=\"Tanger Outlets\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n25273984618_1008302_1057.jpg\" alt=\"Tanger Outlets\" width=\"130\" height=\"87\" /></a>Tanger Outlets</h4>\r\n<strong></strong>Shop guilt free at either Tanger Outlets located in both Myrtle Beach on 501 or on Kings Highway near Myrtle Beach Mall. With stores such as Coach, kate spade, Old Navy, Gap, Levi\'s, Under Armour, Carter\'s, Disney Store and many, many more; you are sure to find something for the entire family, even Dad! Not only will you find the nation’s leading designer and brand name stores with the widest selection but the prices are also backed by the Best Price Guarantee. When you shop at Tanger Outlets, you can shop with confidence while on vacation.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/193863_159995370724615_152235458167273_330537_123776_o.jpg\"><img class=\"alignleft size-full wp-image-171\" title=\"WonderWorks\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/193863_159995370724615_152235458167273_330537_123776_o.jpg\" alt=\"WonderWorks\" width=\"130\" height=\"86\" /></a>WonderWorks</h4>\r\n<strong></strong>A new attraction at Broadway at the Beach in 2011 is WonderWorks, an indoor interactive amusement park for the mind. Whether you are driving by or walking around Broadway at the Beach, you can\'t help but be amazed at the building that appears to have fallen from the sky and landed upside down. WonderWorks features more than 100 exhibits that allow you to interact, discover and explore! Feel the 84 mph winds of a hurricane, build your own roller coaster or submarine adventure with WonderSimulators, pilot a fighter jet, manuever the controls of a NASA spacecraft or simply have fun with bubbles in the Bubble Lab. WonderWorks is open year round, seven days a week and they suggest you allow 3-4 hours to get the full experience.','Things to Do','','inherit','open','open','','61-revision-23','','','2011-06-06 19:58:59','2011-06-06 19:58:59','',61,'http://oor.wbtaylor.net/index.php/2011/06/61-revision-23/',0,'revision','',0),(178,1,'2011-06-06 19:59:48','2011-06-06 19:59:48','<h3><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\"><img class=\"alignleft size-full wp-image-145\" title=\"Alabama Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\" alt=\"Alabama Theatre\" width=\"130\" height=\"110\" /></a>Alabama Theatre</h3>\r\n<span style=\"color: #000000;\">4750 Hwy 17 South\r\nNorth Myrtle Beach, SC 29582\r\n</span>\r\n\r\nVoted the #1 Live Theatre Attraction by Myrtle Beach Visitors featuring the Best in Family Entertainment is located in Barefoot Landing in North Myrtle Beach. The Alabama Theatre long standing performance is \"one The Show\". It has become a go-to show every vacation as the show changes from year to year. one features musical genres such as Country, Gospel, Broadway, Pop and Rock and don\'t forget the comedy! one is family favorite and a show you will never regret. If you visit during the holiday season, you will want to catch the other staple at Alabama Theatre - The South\'s Grandest Christmas Show. This family friendly holiday show features musical performances, dance and plenty of laughter from resident comedian Ricky Mokel. In addition to the regular shows, you will also have the opportunity to see live concerts from chart topping artists such as Kenny Rogers, The Oak Ridge Boys, LeeAnn Rimes and more!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/25739_117188041629520_117187501629574_301191_2621350_n.jpg\"><img class=\"alignleft size-full wp-image-146\" title=\"Alligator Adventure\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/25739_117188041629520_117187501629574_301191_2621350_n.jpg\" alt=\"Alligator Adventure\" width=\"130\" height=\"59\" /></a>Alligator Adventure</h4>\r\nLocated adjacent to Barefoot Landing in North Myrtle Beach, Alligator Adventure puts you face to face with reptiles, alligators, crocodiles, lemurs, tropical birds, tigers, beavers and bats...oh my! Their live shows are a favorite among visitors and feature Alligator Live Feedings in the warmer months (Mid-April through Mid-October), Alligator Handling and Lecture in the cooler months and Snake Handling. Alligator Adventure is also home to UTAN - King of Crocs, the largest crocodile in the United States measuring over 20 feet long! Tickets can be purchased online or at the ticket counter and discounts are available including Active Military discounts and a Locals discount. You also receive a 2nd day free with any paid admission, you can\'t afford not to experience Alligator Adventure!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/185605_204035776273335_111374112206169_853743_1453142_n.jpg\"><img class=\"alignleft size-full wp-image-147\" title=\"Barefoot Landing\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/185605_204035776273335_111374112206169_853743_1453142_n.jpg\" alt=\"Barefoot Landing\" width=\"130\" height=\"93\" /></a>Barefoot Landing</h4>\r\nBarefoot Landing, sitting along the Intercoastal Waterway, in North Myrtle Beach  is home to the Alabama Theatre, House of Blues, multiple restaurants, more than 100 specialty and retail shops and entertainment! During the summer months you can sit back and enjoy fireworks over the lake and also get up close and personal with exotic animals at the TIGERS Exhibit. SummerFest brings excitement all over Barefoot Landing with parades, magicians, clowns, face painters, stilt walkers, jugglers and more 7 nights a week! Barefoot Landing is conveintently located to both Myrtle Beach and North Myrtle Beach travelers wanting to take it slow and easy....that\'s the beach way, that\'s the Barefoot Way.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/221105_10150598183460433_209961260432_18527166_4310333_o.jpg\"><img class=\"alignleft size-full wp-image-149\" title=\"Broadway at the Beach\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/221105_10150598183460433_209961260432_18527166_4310333_o.jpg\" alt=\"Broadway at the Beach\" width=\"130\" height=\"99\" /></a>Broadway at the Beach</h4>\r\nIf you\'re looking for one place to go that has everything, Broadway at the Beach is 350 acres of paradise and was voted #1 Attraction in Myrtle Beach according to Trip Advisor. Featuring shopping, dining, nightlife, and entertainment you simply can not go wrong. 2011 brings new excitement and merchants such as WonderWorks Myrtle Beach (an amusement park for your mind), Legends in Concert (Myrtle Beach favorite recently relocated from Surfside Beach) and Bodies Revealed (summer months only). New restaurants feature Carlos \'n Charlies (family friendly Mexican restuarant), Tilted Kilt Pub &amp; Eatery (Scottish themed pub and festive eatery) and Good Time Charley\'s (American featuring sandwiches, hamburgers and more). You can still enjoy your favorites such as IMAX 3D Theatre, MagiQuest, Senor Frogs, Ripley\'s Aquarium, Jimmy Buffet\'s Margaritaville just to name a few. For those who once loved the Myrtle Beach Pavilion be sure to visit the Pavilion Nostaglia Park featuring some of the Pavilion\'s most popular rides including the historical carousel. Year round events and parades are some of the most popular in the area while the Fireworks show over Lake Broadway is a must see during the summer months and on special occasions. Shop, Dine, Dance, Play...It’s Broadwayyy Fun in Myrtle Beach!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36803_426904242365_31054032365_4668034_4118876_n.jpg\"><img class=\"alignleft size-full wp-image-151\" title=\"The Carolina Opry\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36803_426904242365_31054032365_4668034_4118876_n.jpg\" alt=\"The Carolina Opry\" width=\"130\" height=\"130\" /></a>The Carolina Opry</h4>\r\nCalvin Gilmore presents four legendary shows all in one legendary theater, The Carolina Opry located at Broadway at the Beach. For 25 years The Carolina Opry has been entertaining everyone who has walked through the door with 2 hours of high-energy music, comedy and dance. Good Vibrations features the best music from the 60s, 70s and 80s in a fast-paced show that will bring you back to the best in American popular music. The Carolina Opry Christmas Special combines the best of the holiday spirit with beloved musical performances, fresh comedy and breathtaking dance. LIGHT See The Music offers a one of a kind view of music with a lazer light show set to a variety of muscial genres. New for 2011 is Beatlemania Now! as seen on Broadway and recaptures everything you loved about The Beatles. Beatlemania Now! will run from June 15-September 4 and showtimes are at 5pm Wed-Sun. If you only see one show...it should be at The Carolina Opry.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/165770_159098390807159_156683157715349_325517_5126739_n.jpg\"><img class=\"alignleft size-full wp-image-152\" title=\"Celebration Music Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/165770_159098390807159_156683157715349_325517_5126739_n.jpg\" alt=\"Celebration Music Theatre\" width=\"130\" height=\"118\" /></a>Celebration Music Theatre</h4>\r\nNew for 2011 and located in Surfside Beach, Celebration Music Theatre features the legendary tribute artist show SUPERSTARZ! Live and the Broadway Celebration Series. They also offer a \"just for kids\" production called \"the Rocktastics!\" that will be performing June 15 - August 6. Don\'t miss their Broadway line-up for 2011 with the Minnie Pearl Gospel Hour, All Shook Up, Hairspray, The Southern Bellers and A Christmas Carol.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n60005132046_1972058_8249708.jpg\"><img class=\"alignleft size-full wp-image-153\" title=\"Children\'s Museum of South Carolina\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n60005132046_1972058_8249708.jpg\" alt=\"Children\'s Museum of South Carolina\" width=\"130\" height=\"104\" /></a>Children\'s Museum of South Carolina</h4>\r\nCome \"Touch, Explore, and Play...\" while learning about your world through the interactive exhibits and programs at The Children\'s Museum of South Carolina. Located near the Myrtle Beach Convention Center, CMSC offers special programs, such as Tales for Tots and Digitalis Planetarium, are extremely popular with the adults and children who visit the Museum. With a wide variety of interactive exhibits kids of all ages are sure to have a fun learning experience.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/29330_127959170555007_127958977221693_331764_1537881_n.jpg\"><img class=\"alignleft size-full wp-image-154\" title=\"Coastal Grand Mall\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/29330_127959170555007_127958977221693_331764_1537881_n.jpg\" alt=\"Coastal Grand Mall\" width=\"130\" height=\"133\" /></a>Coastal Grand Mall</h4>\r\nFeaturing anchor stores Belk, Dillard\'s, JC Penney and Sears; Coastal Grand Mall has quickly become the #1 mall in Myrtle Beach. Featuring more than 100 stores and restaurants, you will find everything you were looking for...and then some! After you have shopped until you drop, sit down and relax in the state of the art 14 screen Cinemark Movie Theater or enjoy something to eat at Abuelo\'s, Texas Roadhouse, Red Robin and more. Treat everyone in the family to something unique from Coastal Grand Mall.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/20039_235537488958_94486398958_3067222_3404770_n.jpg\"><img class=\"alignleft size-full wp-image-155\" title=\"Family Kingdom Amusement Park\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/20039_235537488958_94486398958_3067222_3404770_n.jpg\" alt=\"Family Kingdom Amusement Park\" width=\"130\" height=\"65\" /></a>Family Kingdom Amusement Park</h4>\r\nJust one block from Oceans One Resort you will find Myrtle Beach\'s only Seaside Amusement Park and Oceanfront Water Park, Family Kingdom! Featuring Go Karts, Kiddie Rides, Family Rides, Water Rides and Thrill Rides the entire family can enjoy their time in the park. Best of all, there is NO ADMISSION FEE! New for 2011 is the Picnic Pavilion, a covered dining area that can accommodate up to 100 guests for birthday parties, family reunions or any other group outing.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/72254_10150319280965158_196453920157_15571741_4625780_n.jpg\"><img class=\"alignleft size-full wp-image-156\" title=\"House of Blues\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/72254_10150319280965158_196453920157_15571741_4625780_n.jpg\" alt=\"House of Blues\" width=\"130\" height=\"130\" /></a>House of Blues</h4>\r\nThe House of Blues Myrtle Beach, located in Barefoot Landing, offers live music on the Sugar Shack Deck and the Concert Hall and delta inspired cuisine in their world famous restuarant. With leading acts from country, rock, top 40 and more your vacation won\'t be complete without the intimate setting with your favorite artist. You can even \"Pass the Line\" and \"Crash the Barricade\" to gain entry first into the concerts. The Gospel Brunch in the restaurant is something that shouldn\'t missed with an amazing buffet and inspiring gospel performances. Where the heart meets the soul®. The ultimate live music and dining experience.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/15867_170700122851_45187567851_2960017_1281271_n.jpg\"><img class=\"alignleft size-full wp-image-157\" title=\"Legends in Concert\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/15867_170700122851_45187567851_2960017_1281271_n.jpg\" alt=\"Legends in Concert\" width=\"130\" height=\"77\" /></a>Legends in Concert</h4>\r\nThe World\'s Longest Running Live Tribute Show, Legends in Concert has been a favorite in Myrtle Beach for years and offering a variety of concerts and live shows and many other activities for all ages. Legends in Concert recently relocated a state-of-the-art theater in Broadway at the Beach next to Planet Hollywood!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n43711241696_2031957_4252189.jpg\"><img class=\"alignleft size-full wp-image-158\" title=\"The Market Common\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n43711241696_2031957_4252189.jpg\" alt=\"The Market Common\" width=\"130\" height=\"98\" /></a>The Market Common</h4>\r\nA place where you can experience exceptional shopping and dining in a beautifully-designed village setting. From the nation’s most celebrated names in retail to ice cream and pizza for the kids, and from one-of-a-kind restaurants to the most comfortable movie theater at the beach, The Market Common is always worth your time. The Market Common is also home to multiple festivals all year long, such as Sun Fun Festival, Beerfest, Myrtle Beach Wine Fest, Oktoberfest and more!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/12935_202879413428_31330523428_3156769_3542982_n.jpg\"><img class=\"alignleft size-full wp-image-159\" title=\"Medieval Times\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/12935_202879413428_31330523428_3156769_3542982_n.jpg\" alt=\"Medieval Times\" width=\"130\" height=\"130\" /></a>Medieval Times</h4>\r\nInside the stone walls of the 11th century-style castle, Medieval Spain comes to life as six knights, donning authentic armor, clash in a jousting tournament for the title of King\'s Champion. Let your imagination take you to Medieval Times.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/30659_128515707171283_113684151987772_212653_3752426_n.jpg\"><img class=\"alignleft size-full wp-image-160\" title=\"Myrtle Beach Boardwalk\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/30659_128515707171283_113684151987772_212653_3752426_n.jpg\" alt=\"Myrtle Beach Boardwalk\" width=\"130\" height=\"62\" /></a>Myrtle Beach Boardwalk</h4>\r\nThe Myrtle Beach Boardwalk opened in 2010 to rave reviews! The 1.2 mile boardwalk stretches from 14th Avenue North to 2nd Avenue North in the heart of Myrtle Beach. The Myrtle Beach Boardwalk is home to restaurants, shopping, arcades, ice cream shops and more. In the center of it all is the brand new SkyWheel Myrtle Beach and Landshark Bar &amp; Grill which opened to rave reviews in May 2011!  Check out our <a title=\"Boardwalk\" href=\"http://oor.wbtaylor.net/index.php/boardwalk/\">Myrtle Beach Boardwalk page</a> for more information.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36253_189678207725374_113346388691890_679290_4273636_n.jpg\"><img class=\"alignleft size-full wp-image-161\" title=\"Myrtle Beach Mall\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36253_189678207725374_113346388691890_679290_4273636_n.jpg\" alt=\"Myrtle Beach Mall\" width=\"130\" height=\"77\" /></a>Myrtle Beach Mall</h4>\r\nConveinently located at the corner of Highways 22 and 17, Myrtle Beach Mall continues to provide shoppers with unique stores and value not offered by other malls in the area. Two Belk stores, JCPenney are the long standing anchors and are now accompanied by the only Bass Pro Shops in South Carolina! The mall is also home to Uptown Theater, Home of the Carolina Improv, an improv comedy about living and playing Myrtle Beach. If you aren\'t sure what you need, shopping at Myrtle Beach Mall will help you figure it out.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n70793224673_1768505_6774025.jpg\"><img class=\"alignleft size-full wp-image-162\" title=\"Myrtle Beach Pelicans\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n70793224673_1768505_6774025.jpg\" alt=\"Myrtle Beach Pelicans\" width=\"130\" height=\"114\" /></a>Myrtle Beach Pelicans</h4>\r\nThe Myrtle Beach Pelicans have been bringing minor league baseball to the beach since 1999 and as of 2011 are the Advanced \'A\' Affiliate of the Texas Rangers. With various promotions and events, including multiple fireworks shows, the Myrtle Beach Pelicans are a family favorite stop on their vacation. Kids are allowed to run the bases following the game and play catch on the field prior to the start of the game.  To add to the fun you always have to be on the lookout for Splash, the official mascot who is usually up to no good; Rally Shark, who adds excitement late in the game and the always popular, Deuce - part bat boy, part ball caddy. As they say...Baseball\'s Even Better at the Beach!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5815_111476139824_111222624824_2032117_1940650_n.jpg\"><img class=\"alignleft size-full wp-image-163\" title=\"Myrtle Waves\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5815_111476139824_111222624824_2032117_1940650_n.jpg\" alt=\"Myrtle Waves\" width=\"130\" height=\"58\" /></a>Myrtle Waves</h4>\r\nVoted 1st Place in Best of the Beach in 2010, Myrtle Waves offers over 20 acres of swerves, curves, waves, and chutes and over 1 million gallons of water! Raft rides, Slides and Family Attractions make this a one-stop place for all around family fun in the sun. The younger kids will enjoy Bubble Bay and Saturation Station while the older kids (and adults) have a blast twisting and turning on Racin\' River, Turbo Twisters, Riptide Rockets Night Flight and more. Myrtle Waves is open seasonally (mid-May thru mid-September) and season passes are available.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/19174_252369281043_209993466043_3841063_2345964_n.jpg\"><img class=\"alignleft size-full wp-image-164\" title=\"NASCAR SpeedPark\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/19174_252369281043_209993466043_3841063_2345964_n.jpg\" alt=\"NASCAR SpeedPark\" width=\"130\" height=\"124\" /></a>NASCAR SpeedPark</h4>\r\nIf speed is your thing then the NASCAR SpeedPark is for you, boasting over 26 acres of the industries hottest go-kart tracks, family rides, mini-golf courses, midway games, in addition to family dining in a relaxed and fun environment. Challenge everyone in your family to a little race and a lot of fun. NASCAR SpeedPark is open year round and various tickets pacakages are available.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/6609_109386611532_107473016532_2615436_7261003_n.jpg\"><img class=\"alignleft size-full wp-image-165\" title=\"The Palace Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/6609_109386611532_107473016532_2615436_7261003_n.jpg\" alt=\"The Palace Theatre\" width=\"130\" height=\"90\" /></a>The Palace Theatre</h4>\r\nThe Palace Theatre is located at Broadway at the Beach and is home to the best in live entertainment. Their 2011 lineup includes Hooray for Hollywood which will take you back through 50 years of movie history inlcuding some of the most popular song and dance routines from movies such as Singing in the Rain and Disney\'s \"Jungle Book\". Back by popular demand is The Magical Spirit of Ireland, enjoy sounds from the Irish Tenors and the world renowned Spirit of the Dance dancers. Get your heart pumping and your pulse racing with Le Grand Cirque Adreneline, a 2 hour death defying performance filled with contortionists, tumblers, incredible aerial acts as well as the breathtaking Wheel of Death. Start your holiday season in style with Christmas on Ice, a a one-of-a-kind show that is sure to be an instant family hit as Santa and his helpers take you on a journey around a 40 foot ice skating rink. The Palace Theatre boasts an elegance and beauty unrivaled by any other Theatre in South Carolina.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/248098_168641923198993_103486043047915_488794_5571923_n.jpg\"><img class=\"alignleft size-full wp-image-166\" title=\"Pirate\'s Voyage\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/248098_168641923198993_103486043047915_488794_5571923_n.jpg\" alt=\"Pirate\'s Voyage\" width=\"130\" height=\"130\" /></a>Pirate\'s Voyage</h4>\r\nAll new for 2011, Pirate\'s Voyage is the latest live dinner show from Dolly Parton. After closing the doors on the long time running Dixie Stampede, Dolly Parton has revamped the venue into a pirates dream! Featuring 15 foot deep, 750 thousand gallon  lagoon, and 3 full-sized ships, complete with pirates, battling over who will take the treasure. Just revealed was the live animal show which will feature a sea lion who will perform and even \"arrrrrrrrgh\" multiple times during the show. The dinner menu has been updated as well but still continues with the ever popular soup from Dixie Stampede. Pirate\'s Voyage opens on June 3rd, 2011...it\'s time to get your tickets, matey!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n52724914645_1534472_5319779.jpg\"><img class=\"alignleft size-full wp-image-167\" title=\"Ripley\'s Aquarium\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n52724914645_1534472_5319779.jpg\" alt=\"Ripley\'s Aquarium\" width=\"130\" height=\"123\" /></a>Ripley\'s Aquarium</h4>\r\nRipley\'s Aquarium Myrtle Beach can be found at Broadway at the Beach. Sea life is abundant in the aquarium with more than 350 individual species featuring 10,000 exotic sea creatures. Get hands on in the Discovery Center by holding a horseshoe crab or head over to Ray Bay, where you can reach out and touch a stingray as they glide by. See some of the more exotic fish from the Amazon River at Rio Amazon or get a glimpse of color at Rainbow Rock where the brightly colored Indo-Pacific fish swim through a coral reef. A new exhibit for 2011 gets you up close and personal with the ocean\'s most feared predator, Sharks-Perfect Predators features over a dozen species of sharks and interactive exhibits where you can even feel the force of a shark bite! Don\'t let your eyes fool you, another new exhibit for 2011 is Mermaids, a captivating show that will occur 3 times daily followed by meet and greets. If you\'re looking for family fun that is also educational, Ripley\'s Aquarium needs to be on your list!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/17337_470146280006_470128185006_10677882_3874238_n.jpg\"><img class=\"alignleft size-full wp-image-168\" title=\"Second Avenue Pier\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/17337_470146280006_470128185006_10677882_3874238_n.jpg\" alt=\"Second Avenue Pier\" width=\"130\" height=\"264\" /></a>Second Avenue Pier</h4>\r\nRecently renovated, Second Avenue Pier, which has been around since 1936, is located on the southern portion of the Myrtle Beach Boardwalk and just steps away from Oceans One Resort. The pier now features the Pier House Restaurant and Pier View Bar &amp; Lounge (open air bar) as well as what the pier has been famous for...fishing! During the summer season, Second Avenue Pier is home to an amazing fireworks display every Wednesday night as part of the Hot Summer Nights on the Boardwalk. Whether you want to relax with some fishing poles, eat breakfast, lunch or dinner, or simply enjoy a tasty beverage in the ocean breeze, Second Avenue Pier is the place to be!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/170744_140966505959886_129530977103439_243558_6670767_o.jpg\"><img class=\"alignleft size-full wp-image-169\" title=\"SkyWheel Myrtle Beach\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/170744_140966505959886_129530977103439_243558_6670767_o.jpg\" alt=\"SkyWheel Myrtle Beach\" width=\"130\" height=\"90\" /></a>SkyWheel Myrtle Beach</h4>\r\n<strong></strong>It\'s tall, it\'s round and it has a light show...yes, the SkyWheel Myrtle is hard to miss along the Myrtle Beach Boardwalk and for all the right reasons.  Standing 200 feet above sea level, you can enjoy a view rarely seen of the Grand Strand in one of 42 temperature controlled glass gondolas. At night a spectacular LED lightshow begins, giving that extra spark to downtown Myrtle Beach. Operating year round, your flight will consist of three rotations and ranges from 8-12 minutes in length and is the first observation wheel of its kind in the United States.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n25273984618_1008302_1057.jpg\"><img class=\"alignleft size-full wp-image-170\" title=\"Tanger Outlets\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n25273984618_1008302_1057.jpg\" alt=\"Tanger Outlets\" width=\"130\" height=\"87\" /></a>Tanger Outlets</h4>\r\n<strong></strong>Shop guilt free at either Tanger Outlets located in both Myrtle Beach on 501 or on Kings Highway near Myrtle Beach Mall. With stores such as Coach, kate spade, Old Navy, Gap, Levi\'s, Under Armour, Carter\'s, Disney Store and many, many more; you are sure to find something for the entire family, even Dad! Not only will you find the nation’s leading designer and brand name stores with the widest selection but the prices are also backed by the Best Price Guarantee. When you shop at Tanger Outlets, you can shop with confidence while on vacation.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/193863_159995370724615_152235458167273_330537_123776_o.jpg\"><img class=\"alignleft size-full wp-image-171\" title=\"WonderWorks\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/193863_159995370724615_152235458167273_330537_123776_o.jpg\" alt=\"WonderWorks\" width=\"130\" height=\"86\" /></a>WonderWorks</h4>\r\n<strong></strong>A new attraction at Broadway at the Beach in 2011 is WonderWorks, an indoor interactive amusement park for the mind. Whether you are driving by or walking around Broadway at the Beach, you can\'t help but be amazed at the building that appears to have fallen from the sky and landed upside down. WonderWorks features more than 100 exhibits that allow you to interact, discover and explore! Feel the 84 mph winds of a hurricane, build your own roller coaster or submarine adventure with WonderSimulators, pilot a fighter jet, manuever the controls of a NASA spacecraft or simply have fun with bubbles in the Bubble Lab. WonderWorks is open year round, seven days a week and they suggest you allow 3-4 hours to get the full experience.','Things to Do','','inherit','open','open','','61-revision-24','','','2011-06-06 19:59:48','2011-06-06 19:59:48','',61,'http://oor.wbtaylor.net/index.php/2011/06/61-revision-24/',0,'revision','',0),(179,1,'2011-06-06 19:59:59','2011-06-06 19:59:59','<h3><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\"><img class=\"alignleft size-full wp-image-145\" title=\"Alabama Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\" alt=\"Alabama Theatre\" width=\"130\" height=\"110\" /></a>Alabama Theatre</h3>\r\n<span style=\"color: #000000;\"><strong>4750 Hwy 17 South</strong>\r\n<strong> North Myrtle Beach, SC 29582</strong>\r\n</span>\r\n\r\nVoted the #1 Live Theatre Attraction by Myrtle Beach Visitors featuring the Best in Family Entertainment is located in Barefoot Landing in North Myrtle Beach. The Alabama Theatre long standing performance is \"one The Show\". It has become a go-to show every vacation as the show changes from year to year. one features musical genres such as Country, Gospel, Broadway, Pop and Rock and don\'t forget the comedy! one is family favorite and a show you will never regret. If you visit during the holiday season, you will want to catch the other staple at Alabama Theatre - The South\'s Grandest Christmas Show. This family friendly holiday show features musical performances, dance and plenty of laughter from resident comedian Ricky Mokel. In addition to the regular shows, you will also have the opportunity to see live concerts from chart topping artists such as Kenny Rogers, The Oak Ridge Boys, LeeAnn Rimes and more!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/25739_117188041629520_117187501629574_301191_2621350_n.jpg\"><img class=\"alignleft size-full wp-image-146\" title=\"Alligator Adventure\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/25739_117188041629520_117187501629574_301191_2621350_n.jpg\" alt=\"Alligator Adventure\" width=\"130\" height=\"59\" /></a>Alligator Adventure</h4>\r\nLocated adjacent to Barefoot Landing in North Myrtle Beach, Alligator Adventure puts you face to face with reptiles, alligators, crocodiles, lemurs, tropical birds, tigers, beavers and bats...oh my! Their live shows are a favorite among visitors and feature Alligator Live Feedings in the warmer months (Mid-April through Mid-October), Alligator Handling and Lecture in the cooler months and Snake Handling. Alligator Adventure is also home to UTAN - King of Crocs, the largest crocodile in the United States measuring over 20 feet long! Tickets can be purchased online or at the ticket counter and discounts are available including Active Military discounts and a Locals discount. You also receive a 2nd day free with any paid admission, you can\'t afford not to experience Alligator Adventure!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/185605_204035776273335_111374112206169_853743_1453142_n.jpg\"><img class=\"alignleft size-full wp-image-147\" title=\"Barefoot Landing\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/185605_204035776273335_111374112206169_853743_1453142_n.jpg\" alt=\"Barefoot Landing\" width=\"130\" height=\"93\" /></a>Barefoot Landing</h4>\r\nBarefoot Landing, sitting along the Intercoastal Waterway, in North Myrtle Beach  is home to the Alabama Theatre, House of Blues, multiple restaurants, more than 100 specialty and retail shops and entertainment! During the summer months you can sit back and enjoy fireworks over the lake and also get up close and personal with exotic animals at the TIGERS Exhibit. SummerFest brings excitement all over Barefoot Landing with parades, magicians, clowns, face painters, stilt walkers, jugglers and more 7 nights a week! Barefoot Landing is conveintently located to both Myrtle Beach and North Myrtle Beach travelers wanting to take it slow and easy....that\'s the beach way, that\'s the Barefoot Way.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/221105_10150598183460433_209961260432_18527166_4310333_o.jpg\"><img class=\"alignleft size-full wp-image-149\" title=\"Broadway at the Beach\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/221105_10150598183460433_209961260432_18527166_4310333_o.jpg\" alt=\"Broadway at the Beach\" width=\"130\" height=\"99\" /></a>Broadway at the Beach</h4>\r\nIf you\'re looking for one place to go that has everything, Broadway at the Beach is 350 acres of paradise and was voted #1 Attraction in Myrtle Beach according to Trip Advisor. Featuring shopping, dining, nightlife, and entertainment you simply can not go wrong. 2011 brings new excitement and merchants such as WonderWorks Myrtle Beach (an amusement park for your mind), Legends in Concert (Myrtle Beach favorite recently relocated from Surfside Beach) and Bodies Revealed (summer months only). New restaurants feature Carlos \'n Charlies (family friendly Mexican restuarant), Tilted Kilt Pub &amp; Eatery (Scottish themed pub and festive eatery) and Good Time Charley\'s (American featuring sandwiches, hamburgers and more). You can still enjoy your favorites such as IMAX 3D Theatre, MagiQuest, Senor Frogs, Ripley\'s Aquarium, Jimmy Buffet\'s Margaritaville just to name a few. For those who once loved the Myrtle Beach Pavilion be sure to visit the Pavilion Nostaglia Park featuring some of the Pavilion\'s most popular rides including the historical carousel. Year round events and parades are some of the most popular in the area while the Fireworks show over Lake Broadway is a must see during the summer months and on special occasions. Shop, Dine, Dance, Play...It’s Broadwayyy Fun in Myrtle Beach!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36803_426904242365_31054032365_4668034_4118876_n.jpg\"><img class=\"alignleft size-full wp-image-151\" title=\"The Carolina Opry\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36803_426904242365_31054032365_4668034_4118876_n.jpg\" alt=\"The Carolina Opry\" width=\"130\" height=\"130\" /></a>The Carolina Opry</h4>\r\nCalvin Gilmore presents four legendary shows all in one legendary theater, The Carolina Opry located at Broadway at the Beach. For 25 years The Carolina Opry has been entertaining everyone who has walked through the door with 2 hours of high-energy music, comedy and dance. Good Vibrations features the best music from the 60s, 70s and 80s in a fast-paced show that will bring you back to the best in American popular music. The Carolina Opry Christmas Special combines the best of the holiday spirit with beloved musical performances, fresh comedy and breathtaking dance. LIGHT See The Music offers a one of a kind view of music with a lazer light show set to a variety of muscial genres. New for 2011 is Beatlemania Now! as seen on Broadway and recaptures everything you loved about The Beatles. Beatlemania Now! will run from June 15-September 4 and showtimes are at 5pm Wed-Sun. If you only see one show...it should be at The Carolina Opry.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/165770_159098390807159_156683157715349_325517_5126739_n.jpg\"><img class=\"alignleft size-full wp-image-152\" title=\"Celebration Music Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/165770_159098390807159_156683157715349_325517_5126739_n.jpg\" alt=\"Celebration Music Theatre\" width=\"130\" height=\"118\" /></a>Celebration Music Theatre</h4>\r\nNew for 2011 and located in Surfside Beach, Celebration Music Theatre features the legendary tribute artist show SUPERSTARZ! Live and the Broadway Celebration Series. They also offer a \"just for kids\" production called \"the Rocktastics!\" that will be performing June 15 - August 6. Don\'t miss their Broadway line-up for 2011 with the Minnie Pearl Gospel Hour, All Shook Up, Hairspray, The Southern Bellers and A Christmas Carol.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n60005132046_1972058_8249708.jpg\"><img class=\"alignleft size-full wp-image-153\" title=\"Children\'s Museum of South Carolina\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n60005132046_1972058_8249708.jpg\" alt=\"Children\'s Museum of South Carolina\" width=\"130\" height=\"104\" /></a>Children\'s Museum of South Carolina</h4>\r\nCome \"Touch, Explore, and Play...\" while learning about your world through the interactive exhibits and programs at The Children\'s Museum of South Carolina. Located near the Myrtle Beach Convention Center, CMSC offers special programs, such as Tales for Tots and Digitalis Planetarium, are extremely popular with the adults and children who visit the Museum. With a wide variety of interactive exhibits kids of all ages are sure to have a fun learning experience.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/29330_127959170555007_127958977221693_331764_1537881_n.jpg\"><img class=\"alignleft size-full wp-image-154\" title=\"Coastal Grand Mall\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/29330_127959170555007_127958977221693_331764_1537881_n.jpg\" alt=\"Coastal Grand Mall\" width=\"130\" height=\"133\" /></a>Coastal Grand Mall</h4>\r\nFeaturing anchor stores Belk, Dillard\'s, JC Penney and Sears; Coastal Grand Mall has quickly become the #1 mall in Myrtle Beach. Featuring more than 100 stores and restaurants, you will find everything you were looking for...and then some! After you have shopped until you drop, sit down and relax in the state of the art 14 screen Cinemark Movie Theater or enjoy something to eat at Abuelo\'s, Texas Roadhouse, Red Robin and more. Treat everyone in the family to something unique from Coastal Grand Mall.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/20039_235537488958_94486398958_3067222_3404770_n.jpg\"><img class=\"alignleft size-full wp-image-155\" title=\"Family Kingdom Amusement Park\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/20039_235537488958_94486398958_3067222_3404770_n.jpg\" alt=\"Family Kingdom Amusement Park\" width=\"130\" height=\"65\" /></a>Family Kingdom Amusement Park</h4>\r\nJust one block from Oceans One Resort you will find Myrtle Beach\'s only Seaside Amusement Park and Oceanfront Water Park, Family Kingdom! Featuring Go Karts, Kiddie Rides, Family Rides, Water Rides and Thrill Rides the entire family can enjoy their time in the park. Best of all, there is NO ADMISSION FEE! New for 2011 is the Picnic Pavilion, a covered dining area that can accommodate up to 100 guests for birthday parties, family reunions or any other group outing.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/72254_10150319280965158_196453920157_15571741_4625780_n.jpg\"><img class=\"alignleft size-full wp-image-156\" title=\"House of Blues\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/72254_10150319280965158_196453920157_15571741_4625780_n.jpg\" alt=\"House of Blues\" width=\"130\" height=\"130\" /></a>House of Blues</h4>\r\nThe House of Blues Myrtle Beach, located in Barefoot Landing, offers live music on the Sugar Shack Deck and the Concert Hall and delta inspired cuisine in their world famous restuarant. With leading acts from country, rock, top 40 and more your vacation won\'t be complete without the intimate setting with your favorite artist. You can even \"Pass the Line\" and \"Crash the Barricade\" to gain entry first into the concerts. The Gospel Brunch in the restaurant is something that shouldn\'t missed with an amazing buffet and inspiring gospel performances. Where the heart meets the soul®. The ultimate live music and dining experience.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/15867_170700122851_45187567851_2960017_1281271_n.jpg\"><img class=\"alignleft size-full wp-image-157\" title=\"Legends in Concert\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/15867_170700122851_45187567851_2960017_1281271_n.jpg\" alt=\"Legends in Concert\" width=\"130\" height=\"77\" /></a>Legends in Concert</h4>\r\nThe World\'s Longest Running Live Tribute Show, Legends in Concert has been a favorite in Myrtle Beach for years and offering a variety of concerts and live shows and many other activities for all ages. Legends in Concert recently relocated a state-of-the-art theater in Broadway at the Beach next to Planet Hollywood!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n43711241696_2031957_4252189.jpg\"><img class=\"alignleft size-full wp-image-158\" title=\"The Market Common\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n43711241696_2031957_4252189.jpg\" alt=\"The Market Common\" width=\"130\" height=\"98\" /></a>The Market Common</h4>\r\nA place where you can experience exceptional shopping and dining in a beautifully-designed village setting. From the nation’s most celebrated names in retail to ice cream and pizza for the kids, and from one-of-a-kind restaurants to the most comfortable movie theater at the beach, The Market Common is always worth your time. The Market Common is also home to multiple festivals all year long, such as Sun Fun Festival, Beerfest, Myrtle Beach Wine Fest, Oktoberfest and more!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/12935_202879413428_31330523428_3156769_3542982_n.jpg\"><img class=\"alignleft size-full wp-image-159\" title=\"Medieval Times\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/12935_202879413428_31330523428_3156769_3542982_n.jpg\" alt=\"Medieval Times\" width=\"130\" height=\"130\" /></a>Medieval Times</h4>\r\nInside the stone walls of the 11th century-style castle, Medieval Spain comes to life as six knights, donning authentic armor, clash in a jousting tournament for the title of King\'s Champion. Let your imagination take you to Medieval Times.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/30659_128515707171283_113684151987772_212653_3752426_n.jpg\"><img class=\"alignleft size-full wp-image-160\" title=\"Myrtle Beach Boardwalk\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/30659_128515707171283_113684151987772_212653_3752426_n.jpg\" alt=\"Myrtle Beach Boardwalk\" width=\"130\" height=\"62\" /></a>Myrtle Beach Boardwalk</h4>\r\nThe Myrtle Beach Boardwalk opened in 2010 to rave reviews! The 1.2 mile boardwalk stretches from 14th Avenue North to 2nd Avenue North in the heart of Myrtle Beach. The Myrtle Beach Boardwalk is home to restaurants, shopping, arcades, ice cream shops and more. In the center of it all is the brand new SkyWheel Myrtle Beach and Landshark Bar &amp; Grill which opened to rave reviews in May 2011!  Check out our <a title=\"Boardwalk\" href=\"http://oor.wbtaylor.net/index.php/boardwalk/\">Myrtle Beach Boardwalk page</a> for more information.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36253_189678207725374_113346388691890_679290_4273636_n.jpg\"><img class=\"alignleft size-full wp-image-161\" title=\"Myrtle Beach Mall\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36253_189678207725374_113346388691890_679290_4273636_n.jpg\" alt=\"Myrtle Beach Mall\" width=\"130\" height=\"77\" /></a>Myrtle Beach Mall</h4>\r\nConveinently located at the corner of Highways 22 and 17, Myrtle Beach Mall continues to provide shoppers with unique stores and value not offered by other malls in the area. Two Belk stores, JCPenney are the long standing anchors and are now accompanied by the only Bass Pro Shops in South Carolina! The mall is also home to Uptown Theater, Home of the Carolina Improv, an improv comedy about living and playing Myrtle Beach. If you aren\'t sure what you need, shopping at Myrtle Beach Mall will help you figure it out.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n70793224673_1768505_6774025.jpg\"><img class=\"alignleft size-full wp-image-162\" title=\"Myrtle Beach Pelicans\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n70793224673_1768505_6774025.jpg\" alt=\"Myrtle Beach Pelicans\" width=\"130\" height=\"114\" /></a>Myrtle Beach Pelicans</h4>\r\nThe Myrtle Beach Pelicans have been bringing minor league baseball to the beach since 1999 and as of 2011 are the Advanced \'A\' Affiliate of the Texas Rangers. With various promotions and events, including multiple fireworks shows, the Myrtle Beach Pelicans are a family favorite stop on their vacation. Kids are allowed to run the bases following the game and play catch on the field prior to the start of the game.  To add to the fun you always have to be on the lookout for Splash, the official mascot who is usually up to no good; Rally Shark, who adds excitement late in the game and the always popular, Deuce - part bat boy, part ball caddy. As they say...Baseball\'s Even Better at the Beach!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5815_111476139824_111222624824_2032117_1940650_n.jpg\"><img class=\"alignleft size-full wp-image-163\" title=\"Myrtle Waves\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5815_111476139824_111222624824_2032117_1940650_n.jpg\" alt=\"Myrtle Waves\" width=\"130\" height=\"58\" /></a>Myrtle Waves</h4>\r\nVoted 1st Place in Best of the Beach in 2010, Myrtle Waves offers over 20 acres of swerves, curves, waves, and chutes and over 1 million gallons of water! Raft rides, Slides and Family Attractions make this a one-stop place for all around family fun in the sun. The younger kids will enjoy Bubble Bay and Saturation Station while the older kids (and adults) have a blast twisting and turning on Racin\' River, Turbo Twisters, Riptide Rockets Night Flight and more. Myrtle Waves is open seasonally (mid-May thru mid-September) and season passes are available.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/19174_252369281043_209993466043_3841063_2345964_n.jpg\"><img class=\"alignleft size-full wp-image-164\" title=\"NASCAR SpeedPark\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/19174_252369281043_209993466043_3841063_2345964_n.jpg\" alt=\"NASCAR SpeedPark\" width=\"130\" height=\"124\" /></a>NASCAR SpeedPark</h4>\r\nIf speed is your thing then the NASCAR SpeedPark is for you, boasting over 26 acres of the industries hottest go-kart tracks, family rides, mini-golf courses, midway games, in addition to family dining in a relaxed and fun environment. Challenge everyone in your family to a little race and a lot of fun. NASCAR SpeedPark is open year round and various tickets pacakages are available.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/6609_109386611532_107473016532_2615436_7261003_n.jpg\"><img class=\"alignleft size-full wp-image-165\" title=\"The Palace Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/6609_109386611532_107473016532_2615436_7261003_n.jpg\" alt=\"The Palace Theatre\" width=\"130\" height=\"90\" /></a>The Palace Theatre</h4>\r\nThe Palace Theatre is located at Broadway at the Beach and is home to the best in live entertainment. Their 2011 lineup includes Hooray for Hollywood which will take you back through 50 years of movie history inlcuding some of the most popular song and dance routines from movies such as Singing in the Rain and Disney\'s \"Jungle Book\". Back by popular demand is The Magical Spirit of Ireland, enjoy sounds from the Irish Tenors and the world renowned Spirit of the Dance dancers. Get your heart pumping and your pulse racing with Le Grand Cirque Adreneline, a 2 hour death defying performance filled with contortionists, tumblers, incredible aerial acts as well as the breathtaking Wheel of Death. Start your holiday season in style with Christmas on Ice, a a one-of-a-kind show that is sure to be an instant family hit as Santa and his helpers take you on a journey around a 40 foot ice skating rink. The Palace Theatre boasts an elegance and beauty unrivaled by any other Theatre in South Carolina.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/248098_168641923198993_103486043047915_488794_5571923_n.jpg\"><img class=\"alignleft size-full wp-image-166\" title=\"Pirate\'s Voyage\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/248098_168641923198993_103486043047915_488794_5571923_n.jpg\" alt=\"Pirate\'s Voyage\" width=\"130\" height=\"130\" /></a>Pirate\'s Voyage</h4>\r\nAll new for 2011, Pirate\'s Voyage is the latest live dinner show from Dolly Parton. After closing the doors on the long time running Dixie Stampede, Dolly Parton has revamped the venue into a pirates dream! Featuring 15 foot deep, 750 thousand gallon  lagoon, and 3 full-sized ships, complete with pirates, battling over who will take the treasure. Just revealed was the live animal show which will feature a sea lion who will perform and even \"arrrrrrrrgh\" multiple times during the show. The dinner menu has been updated as well but still continues with the ever popular soup from Dixie Stampede. Pirate\'s Voyage opens on June 3rd, 2011...it\'s time to get your tickets, matey!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n52724914645_1534472_5319779.jpg\"><img class=\"alignleft size-full wp-image-167\" title=\"Ripley\'s Aquarium\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n52724914645_1534472_5319779.jpg\" alt=\"Ripley\'s Aquarium\" width=\"130\" height=\"123\" /></a>Ripley\'s Aquarium</h4>\r\nRipley\'s Aquarium Myrtle Beach can be found at Broadway at the Beach. Sea life is abundant in the aquarium with more than 350 individual species featuring 10,000 exotic sea creatures. Get hands on in the Discovery Center by holding a horseshoe crab or head over to Ray Bay, where you can reach out and touch a stingray as they glide by. See some of the more exotic fish from the Amazon River at Rio Amazon or get a glimpse of color at Rainbow Rock where the brightly colored Indo-Pacific fish swim through a coral reef. A new exhibit for 2011 gets you up close and personal with the ocean\'s most feared predator, Sharks-Perfect Predators features over a dozen species of sharks and interactive exhibits where you can even feel the force of a shark bite! Don\'t let your eyes fool you, another new exhibit for 2011 is Mermaids, a captivating show that will occur 3 times daily followed by meet and greets. If you\'re looking for family fun that is also educational, Ripley\'s Aquarium needs to be on your list!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/17337_470146280006_470128185006_10677882_3874238_n.jpg\"><img class=\"alignleft size-full wp-image-168\" title=\"Second Avenue Pier\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/17337_470146280006_470128185006_10677882_3874238_n.jpg\" alt=\"Second Avenue Pier\" width=\"130\" height=\"264\" /></a>Second Avenue Pier</h4>\r\nRecently renovated, Second Avenue Pier, which has been around since 1936, is located on the southern portion of the Myrtle Beach Boardwalk and just steps away from Oceans One Resort. The pier now features the Pier House Restaurant and Pier View Bar &amp; Lounge (open air bar) as well as what the pier has been famous for...fishing! During the summer season, Second Avenue Pier is home to an amazing fireworks display every Wednesday night as part of the Hot Summer Nights on the Boardwalk. Whether you want to relax with some fishing poles, eat breakfast, lunch or dinner, or simply enjoy a tasty beverage in the ocean breeze, Second Avenue Pier is the place to be!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/170744_140966505959886_129530977103439_243558_6670767_o.jpg\"><img class=\"alignleft size-full wp-image-169\" title=\"SkyWheel Myrtle Beach\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/170744_140966505959886_129530977103439_243558_6670767_o.jpg\" alt=\"SkyWheel Myrtle Beach\" width=\"130\" height=\"90\" /></a>SkyWheel Myrtle Beach</h4>\r\n<strong></strong>It\'s tall, it\'s round and it has a light show...yes, the SkyWheel Myrtle is hard to miss along the Myrtle Beach Boardwalk and for all the right reasons.  Standing 200 feet above sea level, you can enjoy a view rarely seen of the Grand Strand in one of 42 temperature controlled glass gondolas. At night a spectacular LED lightshow begins, giving that extra spark to downtown Myrtle Beach. Operating year round, your flight will consist of three rotations and ranges from 8-12 minutes in length and is the first observation wheel of its kind in the United States.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n25273984618_1008302_1057.jpg\"><img class=\"alignleft size-full wp-image-170\" title=\"Tanger Outlets\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n25273984618_1008302_1057.jpg\" alt=\"Tanger Outlets\" width=\"130\" height=\"87\" /></a>Tanger Outlets</h4>\r\n<strong></strong>Shop guilt free at either Tanger Outlets located in both Myrtle Beach on 501 or on Kings Highway near Myrtle Beach Mall. With stores such as Coach, kate spade, Old Navy, Gap, Levi\'s, Under Armour, Carter\'s, Disney Store and many, many more; you are sure to find something for the entire family, even Dad! Not only will you find the nation’s leading designer and brand name stores with the widest selection but the prices are also backed by the Best Price Guarantee. When you shop at Tanger Outlets, you can shop with confidence while on vacation.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/193863_159995370724615_152235458167273_330537_123776_o.jpg\"><img class=\"alignleft size-full wp-image-171\" title=\"WonderWorks\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/193863_159995370724615_152235458167273_330537_123776_o.jpg\" alt=\"WonderWorks\" width=\"130\" height=\"86\" /></a>WonderWorks</h4>\r\n<strong></strong>A new attraction at Broadway at the Beach in 2011 is WonderWorks, an indoor interactive amusement park for the mind. Whether you are driving by or walking around Broadway at the Beach, you can\'t help but be amazed at the building that appears to have fallen from the sky and landed upside down. WonderWorks features more than 100 exhibits that allow you to interact, discover and explore! Feel the 84 mph winds of a hurricane, build your own roller coaster or submarine adventure with WonderSimulators, pilot a fighter jet, manuever the controls of a NASA spacecraft or simply have fun with bubbles in the Bubble Lab. WonderWorks is open year round, seven days a week and they suggest you allow 3-4 hours to get the full experience.','Things to Do','','inherit','open','open','','61-revision-25','','','2011-06-06 19:59:59','2011-06-06 19:59:59','',61,'http://oor.wbtaylor.net/index.php/2011/06/61-revision-25/',0,'revision','',0),(180,1,'2011-06-06 20:01:17','2011-06-06 20:01:17','<h3><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\"><img class=\"alignleft size-full wp-image-145\" title=\"Alabama Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\" alt=\"Alabama Theatre\" width=\"130\" height=\"110\" /></a>Alabama Theatre<strong>\r\n</h3>\r\n<strong>4750 Hwy 17 South</strong>\r\n<span style=\"color: #000000;\"> <strong> North Myrtle Beach, SC 29582</strong>\r\n</span>\r\n\r\nVoted the #1 Live Theatre Attraction by Myrtle Beach Visitors featuring the Best in Family Entertainment is located in Barefoot Landing in North Myrtle Beach. The Alabama Theatre long standing performance is \"one The Show\". It has become a go-to show every vacation as the show changes from year to year. one features musical genres such as Country, Gospel, Broadway, Pop and Rock and don\'t forget the comedy! one is family favorite and a show you will never regret. If you visit during the holiday season, you will want to catch the other staple at Alabama Theatre - The South\'s Grandest Christmas Show. This family friendly holiday show features musical performances, dance and plenty of laughter from resident comedian Ricky Mokel. In addition to the regular shows, you will also have the opportunity to see live concerts from chart topping artists such as Kenny Rogers, The Oak Ridge Boys, LeeAnn Rimes and more!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/25739_117188041629520_117187501629574_301191_2621350_n.jpg\"><img class=\"alignleft size-full wp-image-146\" title=\"Alligator Adventure\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/25739_117188041629520_117187501629574_301191_2621350_n.jpg\" alt=\"Alligator Adventure\" width=\"130\" height=\"59\" /></a>Alligator Adventure</h4>\r\nLocated adjacent to Barefoot Landing in North Myrtle Beach, Alligator Adventure puts you face to face with reptiles, alligators, crocodiles, lemurs, tropical birds, tigers, beavers and bats...oh my! Their live shows are a favorite among visitors and feature Alligator Live Feedings in the warmer months (Mid-April through Mid-October), Alligator Handling and Lecture in the cooler months and Snake Handling. Alligator Adventure is also home to UTAN - King of Crocs, the largest crocodile in the United States measuring over 20 feet long! Tickets can be purchased online or at the ticket counter and discounts are available including Active Military discounts and a Locals discount. You also receive a 2nd day free with any paid admission, you can\'t afford not to experience Alligator Adventure!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/185605_204035776273335_111374112206169_853743_1453142_n.jpg\"><img class=\"alignleft size-full wp-image-147\" title=\"Barefoot Landing\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/185605_204035776273335_111374112206169_853743_1453142_n.jpg\" alt=\"Barefoot Landing\" width=\"130\" height=\"93\" /></a>Barefoot Landing</h4>\r\nBarefoot Landing, sitting along the Intercoastal Waterway, in North Myrtle Beach  is home to the Alabama Theatre, House of Blues, multiple restaurants, more than 100 specialty and retail shops and entertainment! During the summer months you can sit back and enjoy fireworks over the lake and also get up close and personal with exotic animals at the TIGERS Exhibit. SummerFest brings excitement all over Barefoot Landing with parades, magicians, clowns, face painters, stilt walkers, jugglers and more 7 nights a week! Barefoot Landing is conveintently located to both Myrtle Beach and North Myrtle Beach travelers wanting to take it slow and easy....that\'s the beach way, that\'s the Barefoot Way.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/221105_10150598183460433_209961260432_18527166_4310333_o.jpg\"><img class=\"alignleft size-full wp-image-149\" title=\"Broadway at the Beach\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/221105_10150598183460433_209961260432_18527166_4310333_o.jpg\" alt=\"Broadway at the Beach\" width=\"130\" height=\"99\" /></a>Broadway at the Beach</h4>\r\nIf you\'re looking for one place to go that has everything, Broadway at the Beach is 350 acres of paradise and was voted #1 Attraction in Myrtle Beach according to Trip Advisor. Featuring shopping, dining, nightlife, and entertainment you simply can not go wrong. 2011 brings new excitement and merchants such as WonderWorks Myrtle Beach (an amusement park for your mind), Legends in Concert (Myrtle Beach favorite recently relocated from Surfside Beach) and Bodies Revealed (summer months only). New restaurants feature Carlos \'n Charlies (family friendly Mexican restuarant), Tilted Kilt Pub &amp; Eatery (Scottish themed pub and festive eatery) and Good Time Charley\'s (American featuring sandwiches, hamburgers and more). You can still enjoy your favorites such as IMAX 3D Theatre, MagiQuest, Senor Frogs, Ripley\'s Aquarium, Jimmy Buffet\'s Margaritaville just to name a few. For those who once loved the Myrtle Beach Pavilion be sure to visit the Pavilion Nostaglia Park featuring some of the Pavilion\'s most popular rides including the historical carousel. Year round events and parades are some of the most popular in the area while the Fireworks show over Lake Broadway is a must see during the summer months and on special occasions. Shop, Dine, Dance, Play...It’s Broadwayyy Fun in Myrtle Beach!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36803_426904242365_31054032365_4668034_4118876_n.jpg\"><img class=\"alignleft size-full wp-image-151\" title=\"The Carolina Opry\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36803_426904242365_31054032365_4668034_4118876_n.jpg\" alt=\"The Carolina Opry\" width=\"130\" height=\"130\" /></a>The Carolina Opry</h4>\r\nCalvin Gilmore presents four legendary shows all in one legendary theater, The Carolina Opry located at Broadway at the Beach. For 25 years The Carolina Opry has been entertaining everyone who has walked through the door with 2 hours of high-energy music, comedy and dance. Good Vibrations features the best music from the 60s, 70s and 80s in a fast-paced show that will bring you back to the best in American popular music. The Carolina Opry Christmas Special combines the best of the holiday spirit with beloved musical performances, fresh comedy and breathtaking dance. LIGHT See The Music offers a one of a kind view of music with a lazer light show set to a variety of muscial genres. New for 2011 is Beatlemania Now! as seen on Broadway and recaptures everything you loved about The Beatles. Beatlemania Now! will run from June 15-September 4 and showtimes are at 5pm Wed-Sun. If you only see one show...it should be at The Carolina Opry.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/165770_159098390807159_156683157715349_325517_5126739_n.jpg\"><img class=\"alignleft size-full wp-image-152\" title=\"Celebration Music Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/165770_159098390807159_156683157715349_325517_5126739_n.jpg\" alt=\"Celebration Music Theatre\" width=\"130\" height=\"118\" /></a>Celebration Music Theatre</h4>\r\nNew for 2011 and located in Surfside Beach, Celebration Music Theatre features the legendary tribute artist show SUPERSTARZ! Live and the Broadway Celebration Series. They also offer a \"just for kids\" production called \"the Rocktastics!\" that will be performing June 15 - August 6. Don\'t miss their Broadway line-up for 2011 with the Minnie Pearl Gospel Hour, All Shook Up, Hairspray, The Southern Bellers and A Christmas Carol.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n60005132046_1972058_8249708.jpg\"><img class=\"alignleft size-full wp-image-153\" title=\"Children\'s Museum of South Carolina\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n60005132046_1972058_8249708.jpg\" alt=\"Children\'s Museum of South Carolina\" width=\"130\" height=\"104\" /></a>Children\'s Museum of South Carolina</h4>\r\nCome \"Touch, Explore, and Play...\" while learning about your world through the interactive exhibits and programs at The Children\'s Museum of South Carolina. Located near the Myrtle Beach Convention Center, CMSC offers special programs, such as Tales for Tots and Digitalis Planetarium, are extremely popular with the adults and children who visit the Museum. With a wide variety of interactive exhibits kids of all ages are sure to have a fun learning experience.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/29330_127959170555007_127958977221693_331764_1537881_n.jpg\"><img class=\"alignleft size-full wp-image-154\" title=\"Coastal Grand Mall\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/29330_127959170555007_127958977221693_331764_1537881_n.jpg\" alt=\"Coastal Grand Mall\" width=\"130\" height=\"133\" /></a>Coastal Grand Mall</h4>\r\nFeaturing anchor stores Belk, Dillard\'s, JC Penney and Sears; Coastal Grand Mall has quickly become the #1 mall in Myrtle Beach. Featuring more than 100 stores and restaurants, you will find everything you were looking for...and then some! After you have shopped until you drop, sit down and relax in the state of the art 14 screen Cinemark Movie Theater or enjoy something to eat at Abuelo\'s, Texas Roadhouse, Red Robin and more. Treat everyone in the family to something unique from Coastal Grand Mall.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/20039_235537488958_94486398958_3067222_3404770_n.jpg\"><img class=\"alignleft size-full wp-image-155\" title=\"Family Kingdom Amusement Park\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/20039_235537488958_94486398958_3067222_3404770_n.jpg\" alt=\"Family Kingdom Amusement Park\" width=\"130\" height=\"65\" /></a>Family Kingdom Amusement Park</h4>\r\nJust one block from Oceans One Resort you will find Myrtle Beach\'s only Seaside Amusement Park and Oceanfront Water Park, Family Kingdom! Featuring Go Karts, Kiddie Rides, Family Rides, Water Rides and Thrill Rides the entire family can enjoy their time in the park. Best of all, there is NO ADMISSION FEE! New for 2011 is the Picnic Pavilion, a covered dining area that can accommodate up to 100 guests for birthday parties, family reunions or any other group outing.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/72254_10150319280965158_196453920157_15571741_4625780_n.jpg\"><img class=\"alignleft size-full wp-image-156\" title=\"House of Blues\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/72254_10150319280965158_196453920157_15571741_4625780_n.jpg\" alt=\"House of Blues\" width=\"130\" height=\"130\" /></a>House of Blues</h4>\r\nThe House of Blues Myrtle Beach, located in Barefoot Landing, offers live music on the Sugar Shack Deck and the Concert Hall and delta inspired cuisine in their world famous restuarant. With leading acts from country, rock, top 40 and more your vacation won\'t be complete without the intimate setting with your favorite artist. You can even \"Pass the Line\" and \"Crash the Barricade\" to gain entry first into the concerts. The Gospel Brunch in the restaurant is something that shouldn\'t missed with an amazing buffet and inspiring gospel performances. Where the heart meets the soul®. The ultimate live music and dining experience.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/15867_170700122851_45187567851_2960017_1281271_n.jpg\"><img class=\"alignleft size-full wp-image-157\" title=\"Legends in Concert\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/15867_170700122851_45187567851_2960017_1281271_n.jpg\" alt=\"Legends in Concert\" width=\"130\" height=\"77\" /></a>Legends in Concert</h4>\r\nThe World\'s Longest Running Live Tribute Show, Legends in Concert has been a favorite in Myrtle Beach for years and offering a variety of concerts and live shows and many other activities for all ages. Legends in Concert recently relocated a state-of-the-art theater in Broadway at the Beach next to Planet Hollywood!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n43711241696_2031957_4252189.jpg\"><img class=\"alignleft size-full wp-image-158\" title=\"The Market Common\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n43711241696_2031957_4252189.jpg\" alt=\"The Market Common\" width=\"130\" height=\"98\" /></a>The Market Common</h4>\r\nA place where you can experience exceptional shopping and dining in a beautifully-designed village setting. From the nation’s most celebrated names in retail to ice cream and pizza for the kids, and from one-of-a-kind restaurants to the most comfortable movie theater at the beach, The Market Common is always worth your time. The Market Common is also home to multiple festivals all year long, such as Sun Fun Festival, Beerfest, Myrtle Beach Wine Fest, Oktoberfest and more!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/12935_202879413428_31330523428_3156769_3542982_n.jpg\"><img class=\"alignleft size-full wp-image-159\" title=\"Medieval Times\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/12935_202879413428_31330523428_3156769_3542982_n.jpg\" alt=\"Medieval Times\" width=\"130\" height=\"130\" /></a>Medieval Times</h4>\r\nInside the stone walls of the 11th century-style castle, Medieval Spain comes to life as six knights, donning authentic armor, clash in a jousting tournament for the title of King\'s Champion. Let your imagination take you to Medieval Times.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/30659_128515707171283_113684151987772_212653_3752426_n.jpg\"><img class=\"alignleft size-full wp-image-160\" title=\"Myrtle Beach Boardwalk\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/30659_128515707171283_113684151987772_212653_3752426_n.jpg\" alt=\"Myrtle Beach Boardwalk\" width=\"130\" height=\"62\" /></a>Myrtle Beach Boardwalk</h4>\r\nThe Myrtle Beach Boardwalk opened in 2010 to rave reviews! The 1.2 mile boardwalk stretches from 14th Avenue North to 2nd Avenue North in the heart of Myrtle Beach. The Myrtle Beach Boardwalk is home to restaurants, shopping, arcades, ice cream shops and more. In the center of it all is the brand new SkyWheel Myrtle Beach and Landshark Bar &amp; Grill which opened to rave reviews in May 2011!  Check out our <a title=\"Boardwalk\" href=\"http://oor.wbtaylor.net/index.php/boardwalk/\">Myrtle Beach Boardwalk page</a> for more information.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36253_189678207725374_113346388691890_679290_4273636_n.jpg\"><img class=\"alignleft size-full wp-image-161\" title=\"Myrtle Beach Mall\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36253_189678207725374_113346388691890_679290_4273636_n.jpg\" alt=\"Myrtle Beach Mall\" width=\"130\" height=\"77\" /></a>Myrtle Beach Mall</h4>\r\nConveinently located at the corner of Highways 22 and 17, Myrtle Beach Mall continues to provide shoppers with unique stores and value not offered by other malls in the area. Two Belk stores, JCPenney are the long standing anchors and are now accompanied by the only Bass Pro Shops in South Carolina! The mall is also home to Uptown Theater, Home of the Carolina Improv, an improv comedy about living and playing Myrtle Beach. If you aren\'t sure what you need, shopping at Myrtle Beach Mall will help you figure it out.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n70793224673_1768505_6774025.jpg\"><img class=\"alignleft size-full wp-image-162\" title=\"Myrtle Beach Pelicans\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n70793224673_1768505_6774025.jpg\" alt=\"Myrtle Beach Pelicans\" width=\"130\" height=\"114\" /></a>Myrtle Beach Pelicans</h4>\r\nThe Myrtle Beach Pelicans have been bringing minor league baseball to the beach since 1999 and as of 2011 are the Advanced \'A\' Affiliate of the Texas Rangers. With various promotions and events, including multiple fireworks shows, the Myrtle Beach Pelicans are a family favorite stop on their vacation. Kids are allowed to run the bases following the game and play catch on the field prior to the start of the game.  To add to the fun you always have to be on the lookout for Splash, the official mascot who is usually up to no good; Rally Shark, who adds excitement late in the game and the always popular, Deuce - part bat boy, part ball caddy. As they say...Baseball\'s Even Better at the Beach!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5815_111476139824_111222624824_2032117_1940650_n.jpg\"><img class=\"alignleft size-full wp-image-163\" title=\"Myrtle Waves\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5815_111476139824_111222624824_2032117_1940650_n.jpg\" alt=\"Myrtle Waves\" width=\"130\" height=\"58\" /></a>Myrtle Waves</h4>\r\nVoted 1st Place in Best of the Beach in 2010, Myrtle Waves offers over 20 acres of swerves, curves, waves, and chutes and over 1 million gallons of water! Raft rides, Slides and Family Attractions make this a one-stop place for all around family fun in the sun. The younger kids will enjoy Bubble Bay and Saturation Station while the older kids (and adults) have a blast twisting and turning on Racin\' River, Turbo Twisters, Riptide Rockets Night Flight and more. Myrtle Waves is open seasonally (mid-May thru mid-September) and season passes are available.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/19174_252369281043_209993466043_3841063_2345964_n.jpg\"><img class=\"alignleft size-full wp-image-164\" title=\"NASCAR SpeedPark\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/19174_252369281043_209993466043_3841063_2345964_n.jpg\" alt=\"NASCAR SpeedPark\" width=\"130\" height=\"124\" /></a>NASCAR SpeedPark</h4>\r\nIf speed is your thing then the NASCAR SpeedPark is for you, boasting over 26 acres of the industries hottest go-kart tracks, family rides, mini-golf courses, midway games, in addition to family dining in a relaxed and fun environment. Challenge everyone in your family to a little race and a lot of fun. NASCAR SpeedPark is open year round and various tickets pacakages are available.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/6609_109386611532_107473016532_2615436_7261003_n.jpg\"><img class=\"alignleft size-full wp-image-165\" title=\"The Palace Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/6609_109386611532_107473016532_2615436_7261003_n.jpg\" alt=\"The Palace Theatre\" width=\"130\" height=\"90\" /></a>The Palace Theatre</h4>\r\nThe Palace Theatre is located at Broadway at the Beach and is home to the best in live entertainment. Their 2011 lineup includes Hooray for Hollywood which will take you back through 50 years of movie history inlcuding some of the most popular song and dance routines from movies such as Singing in the Rain and Disney\'s \"Jungle Book\". Back by popular demand is The Magical Spirit of Ireland, enjoy sounds from the Irish Tenors and the world renowned Spirit of the Dance dancers. Get your heart pumping and your pulse racing with Le Grand Cirque Adreneline, a 2 hour death defying performance filled with contortionists, tumblers, incredible aerial acts as well as the breathtaking Wheel of Death. Start your holiday season in style with Christmas on Ice, a a one-of-a-kind show that is sure to be an instant family hit as Santa and his helpers take you on a journey around a 40 foot ice skating rink. The Palace Theatre boasts an elegance and beauty unrivaled by any other Theatre in South Carolina.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/248098_168641923198993_103486043047915_488794_5571923_n.jpg\"><img class=\"alignleft size-full wp-image-166\" title=\"Pirate\'s Voyage\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/248098_168641923198993_103486043047915_488794_5571923_n.jpg\" alt=\"Pirate\'s Voyage\" width=\"130\" height=\"130\" /></a>Pirate\'s Voyage</h4>\r\nAll new for 2011, Pirate\'s Voyage is the latest live dinner show from Dolly Parton. After closing the doors on the long time running Dixie Stampede, Dolly Parton has revamped the venue into a pirates dream! Featuring 15 foot deep, 750 thousand gallon  lagoon, and 3 full-sized ships, complete with pirates, battling over who will take the treasure. Just revealed was the live animal show which will feature a sea lion who will perform and even \"arrrrrrrrgh\" multiple times during the show. The dinner menu has been updated as well but still continues with the ever popular soup from Dixie Stampede. Pirate\'s Voyage opens on June 3rd, 2011...it\'s time to get your tickets, matey!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n52724914645_1534472_5319779.jpg\"><img class=\"alignleft size-full wp-image-167\" title=\"Ripley\'s Aquarium\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n52724914645_1534472_5319779.jpg\" alt=\"Ripley\'s Aquarium\" width=\"130\" height=\"123\" /></a>Ripley\'s Aquarium</h4>\r\nRipley\'s Aquarium Myrtle Beach can be found at Broadway at the Beach. Sea life is abundant in the aquarium with more than 350 individual species featuring 10,000 exotic sea creatures. Get hands on in the Discovery Center by holding a horseshoe crab or head over to Ray Bay, where you can reach out and touch a stingray as they glide by. See some of the more exotic fish from the Amazon River at Rio Amazon or get a glimpse of color at Rainbow Rock where the brightly colored Indo-Pacific fish swim through a coral reef. A new exhibit for 2011 gets you up close and personal with the ocean\'s most feared predator, Sharks-Perfect Predators features over a dozen species of sharks and interactive exhibits where you can even feel the force of a shark bite! Don\'t let your eyes fool you, another new exhibit for 2011 is Mermaids, a captivating show that will occur 3 times daily followed by meet and greets. If you\'re looking for family fun that is also educational, Ripley\'s Aquarium needs to be on your list!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/17337_470146280006_470128185006_10677882_3874238_n.jpg\"><img class=\"alignleft size-full wp-image-168\" title=\"Second Avenue Pier\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/17337_470146280006_470128185006_10677882_3874238_n.jpg\" alt=\"Second Avenue Pier\" width=\"130\" height=\"264\" /></a>Second Avenue Pier</h4>\r\nRecently renovated, Second Avenue Pier, which has been around since 1936, is located on the southern portion of the Myrtle Beach Boardwalk and just steps away from Oceans One Resort. The pier now features the Pier House Restaurant and Pier View Bar &amp; Lounge (open air bar) as well as what the pier has been famous for...fishing! During the summer season, Second Avenue Pier is home to an amazing fireworks display every Wednesday night as part of the Hot Summer Nights on the Boardwalk. Whether you want to relax with some fishing poles, eat breakfast, lunch or dinner, or simply enjoy a tasty beverage in the ocean breeze, Second Avenue Pier is the place to be!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/170744_140966505959886_129530977103439_243558_6670767_o.jpg\"><img class=\"alignleft size-full wp-image-169\" title=\"SkyWheel Myrtle Beach\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/170744_140966505959886_129530977103439_243558_6670767_o.jpg\" alt=\"SkyWheel Myrtle Beach\" width=\"130\" height=\"90\" /></a>SkyWheel Myrtle Beach</h4>\r\n<strong></strong>It\'s tall, it\'s round and it has a light show...yes, the SkyWheel Myrtle is hard to miss along the Myrtle Beach Boardwalk and for all the right reasons.  Standing 200 feet above sea level, you can enjoy a view rarely seen of the Grand Strand in one of 42 temperature controlled glass gondolas. At night a spectacular LED lightshow begins, giving that extra spark to downtown Myrtle Beach. Operating year round, your flight will consist of three rotations and ranges from 8-12 minutes in length and is the first observation wheel of its kind in the United States.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n25273984618_1008302_1057.jpg\"><img class=\"alignleft size-full wp-image-170\" title=\"Tanger Outlets\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n25273984618_1008302_1057.jpg\" alt=\"Tanger Outlets\" width=\"130\" height=\"87\" /></a>Tanger Outlets</h4>\r\n<strong></strong>Shop guilt free at either Tanger Outlets located in both Myrtle Beach on 501 or on Kings Highway near Myrtle Beach Mall. With stores such as Coach, kate spade, Old Navy, Gap, Levi\'s, Under Armour, Carter\'s, Disney Store and many, many more; you are sure to find something for the entire family, even Dad! Not only will you find the nation’s leading designer and brand name stores with the widest selection but the prices are also backed by the Best Price Guarantee. When you shop at Tanger Outlets, you can shop with confidence while on vacation.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/193863_159995370724615_152235458167273_330537_123776_o.jpg\"><img class=\"alignleft size-full wp-image-171\" title=\"WonderWorks\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/193863_159995370724615_152235458167273_330537_123776_o.jpg\" alt=\"WonderWorks\" width=\"130\" height=\"86\" /></a>WonderWorks</h4>\r\n<strong></strong>A new attraction at Broadway at the Beach in 2011 is WonderWorks, an indoor interactive amusement park for the mind. Whether you are driving by or walking around Broadway at the Beach, you can\'t help but be amazed at the building that appears to have fallen from the sky and landed upside down. WonderWorks features more than 100 exhibits that allow you to interact, discover and explore! Feel the 84 mph winds of a hurricane, build your own roller coaster or submarine adventure with WonderSimulators, pilot a fighter jet, manuever the controls of a NASA spacecraft or simply have fun with bubbles in the Bubble Lab. WonderWorks is open year round, seven days a week and they suggest you allow 3-4 hours to get the full experience.','Things to Do','','inherit','open','open','','61-revision-26','','','2011-06-06 20:01:17','2011-06-06 20:01:17','',61,'http://oor.wbtaylor.net/index.php/2011/06/61-revision-26/',0,'revision','',0),(181,1,'2011-06-06 20:01:51','2011-06-06 20:01:51','<h3><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\"><img class=\"alignleft size-full wp-image-145\" title=\"Alabama Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\" alt=\"Alabama Theatre\" width=\"130\" height=\"110\" /></a>Alabama Theatre</h3>\r\n<span style=\"color: #000000;\"><strong>4750 Hwy 17 South</strong>\r\n<strong> North Myrtle Beach, SC 29582</strong>\r\n</span>\r\n\r\nVoted the #1 Live Theatre Attraction by Myrtle Beach Visitors featuring the Best in Family Entertainment is located in Barefoot Landing in North Myrtle Beach. The Alabama Theatre long standing performance is \"one The Show\". It has become a go-to show every vacation as the show changes from year to year. one features musical genres such as Country, Gospel, Broadway, Pop and Rock and don\'t forget the comedy! one is family favorite and a show you will never regret. If you visit during the holiday season, you will want to catch the other staple at Alabama Theatre - The South\'s Grandest Christmas Show. This family friendly holiday show features musical performances, dance and plenty of laughter from resident comedian Ricky Mokel. In addition to the regular shows, you will also have the opportunity to see live concerts from chart topping artists such as Kenny Rogers, The Oak Ridge Boys, LeeAnn Rimes and more!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/25739_117188041629520_117187501629574_301191_2621350_n.jpg\"><img class=\"alignleft size-full wp-image-146\" title=\"Alligator Adventure\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/25739_117188041629520_117187501629574_301191_2621350_n.jpg\" alt=\"Alligator Adventure\" width=\"130\" height=\"59\" /></a>Alligator Adventure</h4>\r\nLocated adjacent to Barefoot Landing in North Myrtle Beach, Alligator Adventure puts you face to face with reptiles, alligators, crocodiles, lemurs, tropical birds, tigers, beavers and bats...oh my! Their live shows are a favorite among visitors and feature Alligator Live Feedings in the warmer months (Mid-April through Mid-October), Alligator Handling and Lecture in the cooler months and Snake Handling. Alligator Adventure is also home to UTAN - King of Crocs, the largest crocodile in the United States measuring over 20 feet long! Tickets can be purchased online or at the ticket counter and discounts are available including Active Military discounts and a Locals discount. You also receive a 2nd day free with any paid admission, you can\'t afford not to experience Alligator Adventure!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/185605_204035776273335_111374112206169_853743_1453142_n.jpg\"><img class=\"alignleft size-full wp-image-147\" title=\"Barefoot Landing\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/185605_204035776273335_111374112206169_853743_1453142_n.jpg\" alt=\"Barefoot Landing\" width=\"130\" height=\"93\" /></a>Barefoot Landing</h4>\r\nBarefoot Landing, sitting along the Intercoastal Waterway, in North Myrtle Beach  is home to the Alabama Theatre, House of Blues, multiple restaurants, more than 100 specialty and retail shops and entertainment! During the summer months you can sit back and enjoy fireworks over the lake and also get up close and personal with exotic animals at the TIGERS Exhibit. SummerFest brings excitement all over Barefoot Landing with parades, magicians, clowns, face painters, stilt walkers, jugglers and more 7 nights a week! Barefoot Landing is conveintently located to both Myrtle Beach and North Myrtle Beach travelers wanting to take it slow and easy....that\'s the beach way, that\'s the Barefoot Way.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/221105_10150598183460433_209961260432_18527166_4310333_o.jpg\"><img class=\"alignleft size-full wp-image-149\" title=\"Broadway at the Beach\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/221105_10150598183460433_209961260432_18527166_4310333_o.jpg\" alt=\"Broadway at the Beach\" width=\"130\" height=\"99\" /></a>Broadway at the Beach</h4>\r\nIf you\'re looking for one place to go that has everything, Broadway at the Beach is 350 acres of paradise and was voted #1 Attraction in Myrtle Beach according to Trip Advisor. Featuring shopping, dining, nightlife, and entertainment you simply can not go wrong. 2011 brings new excitement and merchants such as WonderWorks Myrtle Beach (an amusement park for your mind), Legends in Concert (Myrtle Beach favorite recently relocated from Surfside Beach) and Bodies Revealed (summer months only). New restaurants feature Carlos \'n Charlies (family friendly Mexican restuarant), Tilted Kilt Pub &amp; Eatery (Scottish themed pub and festive eatery) and Good Time Charley\'s (American featuring sandwiches, hamburgers and more). You can still enjoy your favorites such as IMAX 3D Theatre, MagiQuest, Senor Frogs, Ripley\'s Aquarium, Jimmy Buffet\'s Margaritaville just to name a few. For those who once loved the Myrtle Beach Pavilion be sure to visit the Pavilion Nostaglia Park featuring some of the Pavilion\'s most popular rides including the historical carousel. Year round events and parades are some of the most popular in the area while the Fireworks show over Lake Broadway is a must see during the summer months and on special occasions. Shop, Dine, Dance, Play...It’s Broadwayyy Fun in Myrtle Beach!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36803_426904242365_31054032365_4668034_4118876_n.jpg\"><img class=\"alignleft size-full wp-image-151\" title=\"The Carolina Opry\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36803_426904242365_31054032365_4668034_4118876_n.jpg\" alt=\"The Carolina Opry\" width=\"130\" height=\"130\" /></a>The Carolina Opry</h4>\r\nCalvin Gilmore presents four legendary shows all in one legendary theater, The Carolina Opry located at Broadway at the Beach. For 25 years The Carolina Opry has been entertaining everyone who has walked through the door with 2 hours of high-energy music, comedy and dance. Good Vibrations features the best music from the 60s, 70s and 80s in a fast-paced show that will bring you back to the best in American popular music. The Carolina Opry Christmas Special combines the best of the holiday spirit with beloved musical performances, fresh comedy and breathtaking dance. LIGHT See The Music offers a one of a kind view of music with a lazer light show set to a variety of muscial genres. New for 2011 is Beatlemania Now! as seen on Broadway and recaptures everything you loved about The Beatles. Beatlemania Now! will run from June 15-September 4 and showtimes are at 5pm Wed-Sun. If you only see one show...it should be at The Carolina Opry.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/165770_159098390807159_156683157715349_325517_5126739_n.jpg\"><img class=\"alignleft size-full wp-image-152\" title=\"Celebration Music Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/165770_159098390807159_156683157715349_325517_5126739_n.jpg\" alt=\"Celebration Music Theatre\" width=\"130\" height=\"118\" /></a>Celebration Music Theatre</h4>\r\nNew for 2011 and located in Surfside Beach, Celebration Music Theatre features the legendary tribute artist show SUPERSTARZ! Live and the Broadway Celebration Series. They also offer a \"just for kids\" production called \"the Rocktastics!\" that will be performing June 15 - August 6. Don\'t miss their Broadway line-up for 2011 with the Minnie Pearl Gospel Hour, All Shook Up, Hairspray, The Southern Bellers and A Christmas Carol.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n60005132046_1972058_8249708.jpg\"><img class=\"alignleft size-full wp-image-153\" title=\"Children\'s Museum of South Carolina\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n60005132046_1972058_8249708.jpg\" alt=\"Children\'s Museum of South Carolina\" width=\"130\" height=\"104\" /></a>Children\'s Museum of South Carolina</h4>\r\nCome \"Touch, Explore, and Play...\" while learning about your world through the interactive exhibits and programs at The Children\'s Museum of South Carolina. Located near the Myrtle Beach Convention Center, CMSC offers special programs, such as Tales for Tots and Digitalis Planetarium, are extremely popular with the adults and children who visit the Museum. With a wide variety of interactive exhibits kids of all ages are sure to have a fun learning experience.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/29330_127959170555007_127958977221693_331764_1537881_n.jpg\"><img class=\"alignleft size-full wp-image-154\" title=\"Coastal Grand Mall\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/29330_127959170555007_127958977221693_331764_1537881_n.jpg\" alt=\"Coastal Grand Mall\" width=\"130\" height=\"133\" /></a>Coastal Grand Mall</h4>\r\nFeaturing anchor stores Belk, Dillard\'s, JC Penney and Sears; Coastal Grand Mall has quickly become the #1 mall in Myrtle Beach. Featuring more than 100 stores and restaurants, you will find everything you were looking for...and then some! After you have shopped until you drop, sit down and relax in the state of the art 14 screen Cinemark Movie Theater or enjoy something to eat at Abuelo\'s, Texas Roadhouse, Red Robin and more. Treat everyone in the family to something unique from Coastal Grand Mall.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/20039_235537488958_94486398958_3067222_3404770_n.jpg\"><img class=\"alignleft size-full wp-image-155\" title=\"Family Kingdom Amusement Park\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/20039_235537488958_94486398958_3067222_3404770_n.jpg\" alt=\"Family Kingdom Amusement Park\" width=\"130\" height=\"65\" /></a>Family Kingdom Amusement Park</h4>\r\nJust one block from Oceans One Resort you will find Myrtle Beach\'s only Seaside Amusement Park and Oceanfront Water Park, Family Kingdom! Featuring Go Karts, Kiddie Rides, Family Rides, Water Rides and Thrill Rides the entire family can enjoy their time in the park. Best of all, there is NO ADMISSION FEE! New for 2011 is the Picnic Pavilion, a covered dining area that can accommodate up to 100 guests for birthday parties, family reunions or any other group outing.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/72254_10150319280965158_196453920157_15571741_4625780_n.jpg\"><img class=\"alignleft size-full wp-image-156\" title=\"House of Blues\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/72254_10150319280965158_196453920157_15571741_4625780_n.jpg\" alt=\"House of Blues\" width=\"130\" height=\"130\" /></a>House of Blues</h4>\r\nThe House of Blues Myrtle Beach, located in Barefoot Landing, offers live music on the Sugar Shack Deck and the Concert Hall and delta inspired cuisine in their world famous restuarant. With leading acts from country, rock, top 40 and more your vacation won\'t be complete without the intimate setting with your favorite artist. You can even \"Pass the Line\" and \"Crash the Barricade\" to gain entry first into the concerts. The Gospel Brunch in the restaurant is something that shouldn\'t missed with an amazing buffet and inspiring gospel performances. Where the heart meets the soul®. The ultimate live music and dining experience.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/15867_170700122851_45187567851_2960017_1281271_n.jpg\"><img class=\"alignleft size-full wp-image-157\" title=\"Legends in Concert\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/15867_170700122851_45187567851_2960017_1281271_n.jpg\" alt=\"Legends in Concert\" width=\"130\" height=\"77\" /></a>Legends in Concert</h4>\r\nThe World\'s Longest Running Live Tribute Show, Legends in Concert has been a favorite in Myrtle Beach for years and offering a variety of concerts and live shows and many other activities for all ages. Legends in Concert recently relocated a state-of-the-art theater in Broadway at the Beach next to Planet Hollywood!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n43711241696_2031957_4252189.jpg\"><img class=\"alignleft size-full wp-image-158\" title=\"The Market Common\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n43711241696_2031957_4252189.jpg\" alt=\"The Market Common\" width=\"130\" height=\"98\" /></a>The Market Common</h4>\r\nA place where you can experience exceptional shopping and dining in a beautifully-designed village setting. From the nation’s most celebrated names in retail to ice cream and pizza for the kids, and from one-of-a-kind restaurants to the most comfortable movie theater at the beach, The Market Common is always worth your time. The Market Common is also home to multiple festivals all year long, such as Sun Fun Festival, Beerfest, Myrtle Beach Wine Fest, Oktoberfest and more!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/12935_202879413428_31330523428_3156769_3542982_n.jpg\"><img class=\"alignleft size-full wp-image-159\" title=\"Medieval Times\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/12935_202879413428_31330523428_3156769_3542982_n.jpg\" alt=\"Medieval Times\" width=\"130\" height=\"130\" /></a>Medieval Times</h4>\r\nInside the stone walls of the 11th century-style castle, Medieval Spain comes to life as six knights, donning authentic armor, clash in a jousting tournament for the title of King\'s Champion. Let your imagination take you to Medieval Times.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/30659_128515707171283_113684151987772_212653_3752426_n.jpg\"><img class=\"alignleft size-full wp-image-160\" title=\"Myrtle Beach Boardwalk\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/30659_128515707171283_113684151987772_212653_3752426_n.jpg\" alt=\"Myrtle Beach Boardwalk\" width=\"130\" height=\"62\" /></a>Myrtle Beach Boardwalk</h4>\r\nThe Myrtle Beach Boardwalk opened in 2010 to rave reviews! The 1.2 mile boardwalk stretches from 14th Avenue North to 2nd Avenue North in the heart of Myrtle Beach. The Myrtle Beach Boardwalk is home to restaurants, shopping, arcades, ice cream shops and more. In the center of it all is the brand new SkyWheel Myrtle Beach and Landshark Bar &amp; Grill which opened to rave reviews in May 2011!  Check out our <a title=\"Boardwalk\" href=\"http://oor.wbtaylor.net/index.php/boardwalk/\">Myrtle Beach Boardwalk page</a> for more information.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36253_189678207725374_113346388691890_679290_4273636_n.jpg\"><img class=\"alignleft size-full wp-image-161\" title=\"Myrtle Beach Mall\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36253_189678207725374_113346388691890_679290_4273636_n.jpg\" alt=\"Myrtle Beach Mall\" width=\"130\" height=\"77\" /></a>Myrtle Beach Mall</h4>\r\nConveinently located at the corner of Highways 22 and 17, Myrtle Beach Mall continues to provide shoppers with unique stores and value not offered by other malls in the area. Two Belk stores, JCPenney are the long standing anchors and are now accompanied by the only Bass Pro Shops in South Carolina! The mall is also home to Uptown Theater, Home of the Carolina Improv, an improv comedy about living and playing Myrtle Beach. If you aren\'t sure what you need, shopping at Myrtle Beach Mall will help you figure it out.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n70793224673_1768505_6774025.jpg\"><img class=\"alignleft size-full wp-image-162\" title=\"Myrtle Beach Pelicans\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n70793224673_1768505_6774025.jpg\" alt=\"Myrtle Beach Pelicans\" width=\"130\" height=\"114\" /></a>Myrtle Beach Pelicans</h4>\r\nThe Myrtle Beach Pelicans have been bringing minor league baseball to the beach since 1999 and as of 2011 are the Advanced \'A\' Affiliate of the Texas Rangers. With various promotions and events, including multiple fireworks shows, the Myrtle Beach Pelicans are a family favorite stop on their vacation. Kids are allowed to run the bases following the game and play catch on the field prior to the start of the game.  To add to the fun you always have to be on the lookout for Splash, the official mascot who is usually up to no good; Rally Shark, who adds excitement late in the game and the always popular, Deuce - part bat boy, part ball caddy. As they say...Baseball\'s Even Better at the Beach!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5815_111476139824_111222624824_2032117_1940650_n.jpg\"><img class=\"alignleft size-full wp-image-163\" title=\"Myrtle Waves\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5815_111476139824_111222624824_2032117_1940650_n.jpg\" alt=\"Myrtle Waves\" width=\"130\" height=\"58\" /></a>Myrtle Waves</h4>\r\nVoted 1st Place in Best of the Beach in 2010, Myrtle Waves offers over 20 acres of swerves, curves, waves, and chutes and over 1 million gallons of water! Raft rides, Slides and Family Attractions make this a one-stop place for all around family fun in the sun. The younger kids will enjoy Bubble Bay and Saturation Station while the older kids (and adults) have a blast twisting and turning on Racin\' River, Turbo Twisters, Riptide Rockets Night Flight and more. Myrtle Waves is open seasonally (mid-May thru mid-September) and season passes are available.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/19174_252369281043_209993466043_3841063_2345964_n.jpg\"><img class=\"alignleft size-full wp-image-164\" title=\"NASCAR SpeedPark\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/19174_252369281043_209993466043_3841063_2345964_n.jpg\" alt=\"NASCAR SpeedPark\" width=\"130\" height=\"124\" /></a>NASCAR SpeedPark</h4>\r\nIf speed is your thing then the NASCAR SpeedPark is for you, boasting over 26 acres of the industries hottest go-kart tracks, family rides, mini-golf courses, midway games, in addition to family dining in a relaxed and fun environment. Challenge everyone in your family to a little race and a lot of fun. NASCAR SpeedPark is open year round and various tickets pacakages are available.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/6609_109386611532_107473016532_2615436_7261003_n.jpg\"><img class=\"alignleft size-full wp-image-165\" title=\"The Palace Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/6609_109386611532_107473016532_2615436_7261003_n.jpg\" alt=\"The Palace Theatre\" width=\"130\" height=\"90\" /></a>The Palace Theatre</h4>\r\nThe Palace Theatre is located at Broadway at the Beach and is home to the best in live entertainment. Their 2011 lineup includes Hooray for Hollywood which will take you back through 50 years of movie history inlcuding some of the most popular song and dance routines from movies such as Singing in the Rain and Disney\'s \"Jungle Book\". Back by popular demand is The Magical Spirit of Ireland, enjoy sounds from the Irish Tenors and the world renowned Spirit of the Dance dancers. Get your heart pumping and your pulse racing with Le Grand Cirque Adreneline, a 2 hour death defying performance filled with contortionists, tumblers, incredible aerial acts as well as the breathtaking Wheel of Death. Start your holiday season in style with Christmas on Ice, a a one-of-a-kind show that is sure to be an instant family hit as Santa and his helpers take you on a journey around a 40 foot ice skating rink. The Palace Theatre boasts an elegance and beauty unrivaled by any other Theatre in South Carolina.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/248098_168641923198993_103486043047915_488794_5571923_n.jpg\"><img class=\"alignleft size-full wp-image-166\" title=\"Pirate\'s Voyage\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/248098_168641923198993_103486043047915_488794_5571923_n.jpg\" alt=\"Pirate\'s Voyage\" width=\"130\" height=\"130\" /></a>Pirate\'s Voyage</h4>\r\nAll new for 2011, Pirate\'s Voyage is the latest live dinner show from Dolly Parton. After closing the doors on the long time running Dixie Stampede, Dolly Parton has revamped the venue into a pirates dream! Featuring 15 foot deep, 750 thousand gallon  lagoon, and 3 full-sized ships, complete with pirates, battling over who will take the treasure. Just revealed was the live animal show which will feature a sea lion who will perform and even \"arrrrrrrrgh\" multiple times during the show. The dinner menu has been updated as well but still continues with the ever popular soup from Dixie Stampede. Pirate\'s Voyage opens on June 3rd, 2011...it\'s time to get your tickets, matey!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n52724914645_1534472_5319779.jpg\"><img class=\"alignleft size-full wp-image-167\" title=\"Ripley\'s Aquarium\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n52724914645_1534472_5319779.jpg\" alt=\"Ripley\'s Aquarium\" width=\"130\" height=\"123\" /></a>Ripley\'s Aquarium</h4>\r\nRipley\'s Aquarium Myrtle Beach can be found at Broadway at the Beach. Sea life is abundant in the aquarium with more than 350 individual species featuring 10,000 exotic sea creatures. Get hands on in the Discovery Center by holding a horseshoe crab or head over to Ray Bay, where you can reach out and touch a stingray as they glide by. See some of the more exotic fish from the Amazon River at Rio Amazon or get a glimpse of color at Rainbow Rock where the brightly colored Indo-Pacific fish swim through a coral reef. A new exhibit for 2011 gets you up close and personal with the ocean\'s most feared predator, Sharks-Perfect Predators features over a dozen species of sharks and interactive exhibits where you can even feel the force of a shark bite! Don\'t let your eyes fool you, another new exhibit for 2011 is Mermaids, a captivating show that will occur 3 times daily followed by meet and greets. If you\'re looking for family fun that is also educational, Ripley\'s Aquarium needs to be on your list!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/17337_470146280006_470128185006_10677882_3874238_n.jpg\"><img class=\"alignleft size-full wp-image-168\" title=\"Second Avenue Pier\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/17337_470146280006_470128185006_10677882_3874238_n.jpg\" alt=\"Second Avenue Pier\" width=\"130\" height=\"264\" /></a>Second Avenue Pier</h4>\r\nRecently renovated, Second Avenue Pier, which has been around since 1936, is located on the southern portion of the Myrtle Beach Boardwalk and just steps away from Oceans One Resort. The pier now features the Pier House Restaurant and Pier View Bar &amp; Lounge (open air bar) as well as what the pier has been famous for...fishing! During the summer season, Second Avenue Pier is home to an amazing fireworks display every Wednesday night as part of the Hot Summer Nights on the Boardwalk. Whether you want to relax with some fishing poles, eat breakfast, lunch or dinner, or simply enjoy a tasty beverage in the ocean breeze, Second Avenue Pier is the place to be!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/170744_140966505959886_129530977103439_243558_6670767_o.jpg\"><img class=\"alignleft size-full wp-image-169\" title=\"SkyWheel Myrtle Beach\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/170744_140966505959886_129530977103439_243558_6670767_o.jpg\" alt=\"SkyWheel Myrtle Beach\" width=\"130\" height=\"90\" /></a>SkyWheel Myrtle Beach</h4>\r\n<strong></strong>It\'s tall, it\'s round and it has a light show...yes, the SkyWheel Myrtle is hard to miss along the Myrtle Beach Boardwalk and for all the right reasons.  Standing 200 feet above sea level, you can enjoy a view rarely seen of the Grand Strand in one of 42 temperature controlled glass gondolas. At night a spectacular LED lightshow begins, giving that extra spark to downtown Myrtle Beach. Operating year round, your flight will consist of three rotations and ranges from 8-12 minutes in length and is the first observation wheel of its kind in the United States.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n25273984618_1008302_1057.jpg\"><img class=\"alignleft size-full wp-image-170\" title=\"Tanger Outlets\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n25273984618_1008302_1057.jpg\" alt=\"Tanger Outlets\" width=\"130\" height=\"87\" /></a>Tanger Outlets</h4>\r\n<strong></strong>Shop guilt free at either Tanger Outlets located in both Myrtle Beach on 501 or on Kings Highway near Myrtle Beach Mall. With stores such as Coach, kate spade, Old Navy, Gap, Levi\'s, Under Armour, Carter\'s, Disney Store and many, many more; you are sure to find something for the entire family, even Dad! Not only will you find the nation’s leading designer and brand name stores with the widest selection but the prices are also backed by the Best Price Guarantee. When you shop at Tanger Outlets, you can shop with confidence while on vacation.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/193863_159995370724615_152235458167273_330537_123776_o.jpg\"><img class=\"alignleft size-full wp-image-171\" title=\"WonderWorks\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/193863_159995370724615_152235458167273_330537_123776_o.jpg\" alt=\"WonderWorks\" width=\"130\" height=\"86\" /></a>WonderWorks</h4>\r\n<strong></strong>A new attraction at Broadway at the Beach in 2011 is WonderWorks, an indoor interactive amusement park for the mind. Whether you are driving by or walking around Broadway at the Beach, you can\'t help but be amazed at the building that appears to have fallen from the sky and landed upside down. WonderWorks features more than 100 exhibits that allow you to interact, discover and explore! Feel the 84 mph winds of a hurricane, build your own roller coaster or submarine adventure with WonderSimulators, pilot a fighter jet, manuever the controls of a NASA spacecraft or simply have fun with bubbles in the Bubble Lab. WonderWorks is open year round, seven days a week and they suggest you allow 3-4 hours to get the full experience.','Things to Do','','inherit','open','open','','61-revision-27','','','2011-06-06 20:01:51','2011-06-06 20:01:51','',61,'http://oor.wbtaylor.net/index.php/2011/06/61-revision-27/',0,'revision','',0),(182,1,'2011-06-06 20:02:37','2011-06-06 20:02:37','<h3><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\"><img class=\"alignleft size-full wp-image-145\" title=\"Alabama Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/5371_105115298393_72471983393_2109766_614980_n.jpg\" alt=\"Alabama Theatre\" width=\"130\" height=\"110\" /></a>Alabama Theatre</h3>\r\n<h4><strong>4750 Hwy 17 South</strong>\r\n<strong> North Myrtle Beach, SC 29582</strong><span style=\"color: #000000;\">\r\n</span></h4>\r\nVoted the #1 Live Theatre Attraction by Myrtle Beach Visitors featuring the Best in Family Entertainment is located in Barefoot Landing in North Myrtle Beach. The Alabama Theatre long standing performance is \"one The Show\". It has become a go-to show every vacation as the show changes from year to year. one features musical genres such as Country, Gospel, Broadway, Pop and Rock and don\'t forget the comedy! one is family favorite and a show you will never regret. If you visit during the holiday season, you will want to catch the other staple at Alabama Theatre - The South\'s Grandest Christmas Show. This family friendly holiday show features musical performances, dance and plenty of laughter from resident comedian Ricky Mokel. In addition to the regular shows, you will also have the opportunity to see live concerts from chart topping artists such as Kenny Rogers, The Oak Ridge Boys, LeeAnn Rimes and more!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/25739_117188041629520_117187501629574_301191_2621350_n.jpg\"><img class=\"alignleft size-full wp-image-146\" title=\"Alligator Adventure\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/25739_117188041629520_117187501629574_301191_2621350_n.jpg\" alt=\"Alligator Adventure\" width=\"130\" height=\"59\" /></a>Alligator Adventure</h4>\r\nLocated adjacent to Barefoot Landing in North Myrtle Beach, Alligator Adventure puts you face to face with reptiles, alligators, crocodiles, lemurs, tropical birds, tigers, beavers and bats...oh my! Their live shows are a favorite among visitors and feature Alligator Live Feedings in the warmer months (Mid-April through Mid-October), Alligator Handling and Lecture in the cooler months and Snake Handling. Alligator Adventure is also home to UTAN - King of Crocs, the largest crocodile in the United States measuring over 20 feet long! Tickets can be purchased online or at the ticket counter and discounts are available including Active Military discounts and a Locals discount. You also receive a 2nd day free with any paid admission, you can\'t afford not to experience Alligator Adventure!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/185605_204035776273335_111374112206169_853743_1453142_n.jpg\"><img class=\"alignleft size-full wp-image-147\" title=\"Barefoot Landing\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/185605_204035776273335_111374112206169_853743_1453142_n.jpg\" alt=\"Barefoot Landing\" width=\"130\" height=\"93\" /></a>Barefoot Landing</h4>\r\nBarefoot Landing, sitting along the Intercoastal Waterway, in North Myrtle Beach  is home to the Alabama Theatre, House of Blues, multiple restaurants, more than 100 specialty and retail shops and entertainment! During the summer months you can sit back and enjoy fireworks over the lake and also get up close and personal with exotic animals at the TIGERS Exhibit. SummerFest brings excitement all over Barefoot Landing with parades, magicians, clowns, face painters, stilt walkers, jugglers and more 7 nights a week! Barefoot Landing is conveintently located to both Myrtle Beach and North Myrtle Beach travelers wanting to take it slow and easy....that\'s the beach way, that\'s the Barefoot Way.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/221105_10150598183460433_209961260432_18527166_4310333_o.jpg\"><img class=\"alignleft size-full wp-image-149\" title=\"Broadway at the Beach\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/221105_10150598183460433_209961260432_18527166_4310333_o.jpg\" alt=\"Broadway at the Beach\" width=\"130\" height=\"99\" /></a>Broadway at the Beach</h4>\r\nIf you\'re looking for one place to go that has everything, Broadway at the Beach is 350 acres of paradise and was voted #1 Attraction in Myrtle Beach according to Trip Advisor. Featuring shopping, dining, nightlife, and entertainment you simply can not go wrong. 2011 brings new excitement and merchants such as WonderWorks Myrtle Beach (an amusement park for your mind), Legends in Concert (Myrtle Beach favorite recently relocated from Surfside Beach) and Bodies Revealed (summer months only). New restaurants feature Carlos \'n Charlies (family friendly Mexican restuarant), Tilted Kilt Pub &amp; Eatery (Scottish themed pub and festive eatery) and Good Time Charley\'s (American featuring sandwiches, hamburgers and more). You can still enjoy your favorites such as IMAX 3D Theatre, MagiQuest, Senor Frogs, Ripley\'s Aquarium, Jimmy Buffet\'s Margaritaville just to name a few. For those who once loved the Myrtle Beach Pavilion be sure to visit the Pavilion Nostaglia Park featuring some of the Pavilion\'s most popular rides including the historical carousel. Year round events and parades are some of the most popular in the area while the Fireworks show over Lake Broadway is a must see during the summer months and on special occasions. Shop, Dine, Dance, Play...It’s Broadwayyy Fun in Myrtle Beach!\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36803_426904242365_31054032365_4668034_4118876_n.jpg\"><img class=\"alignleft size-full wp-image-151\" title=\"The Carolina Opry\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/36803_426904242365_31054032365_4668034_4118876_n.jpg\" alt=\"The Carolina Opry\" width=\"130\" height=\"130\" /></a>The Carolina Opry</h4>\r\nCalvin Gilmore presents four legendary shows all in one legendary theater, The Carolina Opry located at Broadway at the Beach. For 25 years The Carolina Opry has been entertaining everyone who has walked through the door with 2 hours of high-energy music, comedy and dance. Good Vibrations features the best music from the 60s, 70s and 80s in a fast-paced show that will bring you back to the best in American popular music. The Carolina Opry Christmas Special combines the best of the holiday spirit with beloved musical performances, fresh comedy and breathtaking dance. LIGHT See The Music offers a one of a kind view of music with a lazer light show set to a variety of muscial genres. New for 2011 is Beatlemania Now! as seen on Broadway and recaptures everything you loved about The Beatles. Beatlemania Now! will run from June 15-September 4 and showtimes are at 5pm Wed-Sun. If you only see one show...it should be at The Carolina Opry.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/165770_159098390807159_156683157715349_325517_5126739_n.jpg\"><img class=\"alignleft size-full wp-image-152\" title=\"Celebration Music Theatre\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/165770_159098390807159_156683157715349_325517_5126739_n.jpg\" alt=\"Celebration Music Theatre\" width=\"130\" height=\"118\" /></a>Celebration Music Theatre</h4>\r\nNew for 2011 and located in Surfside Beach, Celebration Music Theatre features the legendary tribute artist show SUPERSTARZ! Live and the Broadway Celebration Series. They also offer a \"just for kids\" production called \"the Rocktastics!\" that will be performing June 15 - August 6. Don\'t miss their Broadway line-up for 2011 with the Minnie Pearl Gospel Hour, All Shook Up, Hairspray, The Southern Bellers and A Christmas Carol.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n60005132046_1972058_8249708.jpg\"><img class=\"alignleft size-full wp-image-153\" title=\"Children\'s Museum of South Carolina\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/n60005132046_1972058_8249708.jpg\" alt=\"Children\'s Museum of South Carolina\" width=\"130\" height=\"104\" /></a>Children\'s Museum of South Carolina</h4>\r\nCome \"Touch, Explore, and Play...\" while learning about your world through the interactive exhibits and programs at The Children\'s Museum of South Carolina. Located near the Myrtle Beach Convention Center, CMSC offers special programs, such as Tales for Tots and Digitalis Planetarium, are extremely popular with the adults and children who visit the Museum. With a wide variety of interactive exhibits kids of all ages are sure to have a fun learning experience.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/29330_127959170555007_127958977221693_331764_1537881_n.jpg\"><img class=\"alignleft size-full wp-image-154\" title=\"Coastal Grand Mall\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/29330_127959170555007_127958977221693_331764_1537881_n.jpg\" alt=\"Coastal Grand Mall\" width=\"130\" height=\"133\" /></a>Coastal Grand Mall</h4>\r\nFeaturing anchor stores Belk, Dillard\'s, JC Penney and Sears; Coastal Grand Mall has quickly become the #1 mall in Myrtle Beach. Featuring more than 100 stores and restaurants, you will find everything you were looking for...and then some! After you have shopped until you drop, sit down and relax in the state of the art 14 screen Cinemark Movie Theater or enjoy something to eat at Abuelo\'s, Texas Roadhouse, Red Robin and more. Treat everyone in the family to something unique from Coastal Grand Mall.\r\n<h4><a href=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/20039_235537488958_94486398958_3067222_3404770_n.jpg\"><img class=\"alignleft size-full wp-image-155\" title=\"Family Kingdom Amusement Park\" src=\"http://oor.wbtaylor.net/wp-content/uploads/2011/05/20039_235537488958_94486398958_3067222_3404770_n.jpg\" alt=\"Family Kingdom Amusement Park\" width=\"130\" height=\"65\" /></a>Family Kingdom Amusement Park</h4>\r\nJust one block from Oceans One Resort you will find Myrtle Beach\'s only Seaside Amusement Park and Oceanfront Water Park, Family Kingdom! Featuring Go Karts, Kiddie Rides, Family Rides, Water Rides and Thrill Rides the entire family can enjoy their time in the park. Best of all, there is NO ADMISSION FEE! New for 2011 is the Picnic Pavilion, a covered dining area that can accommodate up to 100 guests for birthday parties, f