-- MySQL dump 10.13  Distrib 8.0.37, for Linux (x86_64)
--
-- Host: localhost    Database: divya_wp242
-- ------------------------------------------------------
-- Server version	8.0.37-cll-lve

/*!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 */;
/*!50503 SET NAMES utf8mb4 */;
/*!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 */;

--
-- Current Database: `divya_wp242`
--


--
-- Table structure for table `wp_calendar`
--

DROP TABLE IF EXISTS `wp_calendar`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_calendar` (
  `event_id` int NOT NULL AUTO_INCREMENT,
  `event_begin` date NOT NULL,
  `event_end` date NOT NULL,
  `event_title` varchar(30) NOT NULL,
  `event_desc` text NOT NULL,
  `event_time` time DEFAULT NULL,
  `event_recur` char(1) DEFAULT NULL,
  `event_repeats` int DEFAULT NULL,
  `event_author` bigint unsigned DEFAULT NULL,
  `event_category` bigint unsigned NOT NULL DEFAULT '1',
  `event_link` text,
  PRIMARY KEY (`event_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_calendar`
--

LOCK TABLES `wp_calendar` WRITE;
/*!40000 ALTER TABLE `wp_calendar` DISABLE KEYS */;
INSERT INTO `wp_calendar` (`event_id`, `event_begin`, `event_end`, `event_title`, `event_desc`, `event_time`, `event_recur`, `event_repeats`, `event_author`, `event_category`, `event_link`) VALUES (1,'2013-08-14','2013-08-14','Divya Yoga','','14:08:00','S',0,1,1,'');
/*!40000 ALTER TABLE `wp_calendar` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_calendar_categories`
--

DROP TABLE IF EXISTS `wp_calendar_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_calendar_categories` (
  `category_id` int NOT NULL AUTO_INCREMENT,
  `category_name` varchar(30) NOT NULL,
  `category_colour` varchar(30) NOT NULL,
  PRIMARY KEY (`category_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_calendar_categories`
--

LOCK TABLES `wp_calendar_categories` WRITE;
/*!40000 ALTER TABLE `wp_calendar_categories` DISABLE KEYS */;
INSERT INTO `wp_calendar_categories` (`category_id`, `category_name`, `category_colour`) VALUES (1,'General','#F6F79B');
/*!40000 ALTER TABLE `wp_calendar_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_calendar_config`
--

DROP TABLE IF EXISTS `wp_calendar_config`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_calendar_config` (
  `config_item` varchar(30) NOT NULL,
  `config_value` text NOT NULL,
  PRIMARY KEY (`config_item`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_calendar_config`
--

LOCK TABLES `wp_calendar_config` WRITE;
/*!40000 ALTER TABLE `wp_calendar_config` DISABLE KEYS */;
INSERT INTO `wp_calendar_config` (`config_item`, `config_value`) VALUES ('can_manage_events','edit_posts'),('calendar_style','    .calnk a:hover {\n        background-position:0 0;\n        text-decoration:none;  \n        color:#000000;\n        border-bottom:1px dotted #000000;\n     }\n    .calnk a:visited {\n        text-decoration:none;\n        color:#000000;\n        border-bottom:1px dotted #000000;\n    }\n    .calnk a {\n        text-decoration:none; \n        color:#000000; \n        border-bottom:1px dotted #000000;\n    }\n    .calnk a span { \n        display:none; \n    }\n    .calnk a:hover span {\n        color:#333333; \n        background:#F6F79B; \n        display:block;\n        position:absolute; \n        margin-top:1px; \n        padding:5px; \n        width:150px; \n        z-index:100;\n        line-height:1.2em;\n    }\n    .calendar-table {\n        border:0 !important;\n        width:100% !important;\n        border-collapse:separate !important;\n        border-spacing:2px !important;\n    }\n    .calendar-heading {\n        height:25px;\n        text-align:center;\n        border:1px solid #D6DED5;\n        background-color:#E4EBE3;\n    }\n    .calendar-next {\n        width:25%;\n        text-align:center;\n    }\n    .calendar-prev {\n        width:25%;\n        text-align:center;\n    }\n    .calendar-month {\n        width:50%;\n        text-align:center;\n        font-weight:bold;\n    }\n    .normal-day-heading {\n        text-align:center;\n        width:25px;\n        height:25px;\n        font-size:0.8em;\n        border:1px solid #DFE6DE;\n        background-color:#EBF2EA;\n    }\n    .weekend-heading {\n        text-align:center;\n        width:25px;\n        height:25px;\n        font-size:0.8em;\n        border:1px solid #DFE6DE;\n        background-color:#EBF2EA;\n        color:#FF0000;\n    }\n    .day-with-date {\n        vertical-align:text-top;\n        text-align:left;\n        width:60px;\n        height:60px;\n        border:1px solid #DFE6DE;\n    }\n    .no-events {\n\n    }\n    .day-without-date {\n        width:60px;\n        height:60px;\n        border:1px solid #E9F0E8;\n    }\n    span.weekend {\n        color:#FF0000;\n    }\n    .current-day {\n        vertical-align:text-top;\n        text-align:left;\n        width:60px;\n        height:60px;\n        border:1px solid #BFBFBF;\n        background-color:#E4EBE3;\n    }\n    span.event {\n        font-size:0.75em;\n    }\n    .kjo-link {\n        font-size:0.75em;\n        text-align:center;\n    }\n    .calendar-date-switcher {\n        height:25px;\n        text-align:center;\n        border:1px solid #D6DED5;\n        background-color:#E4EBE3;\n    }\n    .calendar-date-switcher form {\n        margin:2px;\n    }\n    .calendar-date-switcher input {\n        border:1px #D6DED5 solid;\n        margin:0;\n    }\n    .calendar-date-switcher select {\n        border:1px #D6DED5 solid;\n        margin:0;\n    }\n    .calnk a:hover span span.event-title {\n        padding:0;\n        text-align:center;\n        font-weight:bold;\n        font-size:1.2em;\n        margin-left:0px;\n    }\n    .calnk a:hover span span.event-title-break {\n        width:96%;\n        text-align:center;\n        height:1px;\n        margin-top:5px;\n        margin-right:2%;\n        padding:0;\n        background-color:#000000;\n        margin-left:0px;\n    }\n    .calnk a:hover span span.event-content-break {\n        width:96%;\n        text-align:center;\n        height:1px;\n        margin-top:5px;\n        margin-right:2%;\n        padding:0;\n        background-color:#000000;\n        margin-left:0px;\n    }\n    .page-upcoming-events {\n        font-size:80%;\n    }\n    .page-todays-events {\n        font-size:80%;\n    }\n    .calendar-table table,tbody,tr,td {\n        margin:0 !important;\n        padding:0 !important;\n    }\n    table.calendar-table {\n        margin-bottom:5px !important;\n    }\n    .cat-key {\n        width:100%;\n        margin-top:30px;\n        padding:5px;\n        border:0 !important;\n    }\n    .cal-separate {\n       border:0 !important;\n       margin-top:10px;\n    }\n    table.cat-key {\n       margin-top:5px !important;\n       border:1px solid #DFE6DE !important;\n       border-collapse:separate !important;\n       border-spacing:4px !important;\n       margin-left:2px !important;\n       width:99.5% !important;\n       margin-bottom:5px !important;\n    }\n    .cat-key td {\n       border:0 !important;\n    }'),('display_author','false'),('display_jump','false'),('display_todays','true'),('display_upcoming','true'),('display_upcoming_days','7'),('calendar_version','1.2'),('enable_categories','false');
/*!40000 ALTER TABLE `wp_calendar_config` ENABLE KEYS */;
UNLOCK TABLES;

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

DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_commentmeta` (
  `meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=85 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_comments` (
  `comment_ID` bigint unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint unsigned NOT NULL DEFAULT '0',
  `comment_author` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_author_email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci 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` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_karma` int NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'comment',
  `comment_parent` bigint unsigned NOT NULL DEFAULT '0',
  `user_id` bigint unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`comment_ID`),
  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`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=MyISAM AUTO_INCREMENT=61 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_links` (
  `link_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y',
  `link_owner` bigint unsigned NOT NULL DEFAULT '1',
  `link_rating` int NOT NULL DEFAULT '0',
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_notes` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `link_rss` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!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 */;
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_options` (
  `option_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `option_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `autoload` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`),
  KEY `autoload` (`autoload`)
) ENGINE=MyISAM AUTO_INCREMENT=68607 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!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` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','http://divyayogamonteregie.org/web','yes'),(2,'blogname','Divya Yoga Monteregie','yes'),(3,'blogdescription','Your Yoga Website','yes'),(4,'users_can_register','0','yes'),(5,'admin_email','webmaster@divyayogamonteregie.org','yes'),(6,'start_of_week','1','yes'),(7,'use_balanceTags','1','yes'),(8,'use_smilies','1','yes'),(9,'require_name_email','1','yes'),(10,'comments_notify','','yes'),(11,'posts_per_rss','15','yes'),(12,'rss_use_excerpt','0','yes'),(13,'mailserver_url','mail.example.com','yes'),(14,'mailserver_login','login@example.com','yes'),(15,'mailserver_pass','password','yes'),(16,'mailserver_port','110','yes'),(17,'default_category','1','yes'),(18,'default_comment_status','closed','yes'),(19,'default_ping_status','closed','yes'),(20,'default_pingback_flag','','yes'),(21,'posts_per_page','15','yes'),(22,'date_format','F j, Y','yes'),(23,'time_format','g:i a','yes'),(24,'links_updated_date_format','F j, Y g:i a','yes'),(28,'comment_moderation','1','yes'),(29,'moderation_notify','1','yes'),(30,'permalink_structure','','yes'),(32,'hack_file','0','yes'),(33,'blog_charset','UTF-8','yes'),(34,'moderation_keys','','no'),(35,'active_plugins','a:5:{i:0;s:43:\"codepeople-post-map/codepeople-post-map.php\";i:1;s:41:\"easy-media-gallery/easy-media-gallery.php\";i:2;s:34:\"spider-event-calendar/calendar.php\";i:3;s:30:\"wp-better-categories/image.php\";i:4;s:21:\"backuply/backuply.php\";}','yes'),(36,'home','http://divyayogamonteregie.org/web','yes'),(37,'category_base','','yes'),(38,'ping_sites','http://rpc.pingomatic.com/','yes'),(40,'comment_max_links','1','yes'),(41,'gmt_offset','','yes'),(42,'default_email_category','1','yes'),(43,'recently_edited','a:5:{i:0;s:68:\"/div/homeya/public_html/web/wp-content/themes/twentyeleven/style.css\";i:2;s:90:\"/home/center/divyayogamonteregie.orgweb/wp-content/plugins/codepeople-post-map/codepeople-post-map.php\";i:3;s:64:\"/home/center/divyayogamonteregie.orgweb/wp-content/themes/pinboard/style.css\";i:4;s:62:\"/home/center/divyayogamonteregie.orgweb/wp-content/themes/pinboard/404.php\";i:5;s:66:\"/home/center/divyayogamonteregie.orgweb/wp-content/plugins/akismet/akismet.php\";}','no'),(44,'template','twentyeleven','yes'),(45,'stylesheet','twentyeleven','yes'),(47471,'finished_updating_comment_type','1','yes'),(48,'comment_registration','1','yes'),(49,'html_type','text/html','yes'),(50,'use_trackback','0','yes'),(51,'default_role','subscriber','yes'),(52,'db_version','53496','yes'),(53,'uploads_use_yearmonth_folders','1','yes'),(54,'upload_path','','yes'),(55,'blog_public','1','yes'),(56,'default_link_category','0','yes'),(57,'show_on_front','posts','yes'),(58,'tag_base','','yes'),(59,'show_avatars','1','yes'),(60,'avatar_rating','G','yes'),(61,'upload_url_path','','yes'),(62,'thumbnail_size_w','150','yes'),(63,'thumbnail_size_h','150','yes'),(64,'thumbnail_crop','1','yes'),(65,'medium_size_w','300','yes'),(66,'medium_size_h','300','yes'),(67,'avatar_default','mystery','yes'),(68,'large_size_w','1024','yes'),(69,'large_size_h','1024','yes'),(70,'image_default_link_type','file','yes'),(71,'image_default_size','','yes'),(72,'image_default_align','','yes'),(73,'close_comments_for_old_posts','','yes'),(74,'close_comments_days_old','14','yes'),(75,'thread_comments','','yes'),(76,'thread_comments_depth','5','yes'),(77,'page_comments','','yes'),(78,'comments_per_page','50','yes'),(79,'default_comments_page','newest','yes'),(80,'comment_order','asc','yes'),(81,'sticky_posts','a:0:{}','yes'),(82,'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'),(83,'widget_text','a:0:{}','yes'),(84,'widget_rss','a:0:{}','yes'),(85,'uninstall_plugins','a:1:{s:21:\"backuply/backuply.php\";s:21:\"backuply_deactivation\";}','no'),(86,'timezone_string','America/Montreal','yes'),(87,'page_for_posts','0','yes'),(88,'page_on_front','0','yes'),(89,'default_post_format','0','yes'),(90,'link_manager_enabled','0','yes'),(91,'initial_db_version','22441','yes'),(92,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{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: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'),(93,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(94,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(95,'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'),(96,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(98,'sidebars_widgets','a:7:{s:19:\"wp_inactive_widgets\";a:2:{i:0;s:12:\"categories-2\";i:1;s:17:\"recent-comments-2\";}s:9:\"sidebar-1\";a:2:{i:0;s:8:\"search-2\";i:1;s:7:\"pages-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:9:\"sidebar-4\";a:0:{}s:9:\"sidebar-5\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(99,'cron','a:10:{i:1732312576;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1732318512;a:1:{s:24:\"akismet_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;}}}i:1732323376;a:2:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1732323544;a:2:{s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1732338734;a:2:{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:1732341924;a:1:{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;}}}i:1732382020;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;}}}i:1732396673;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1732496176;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(47472,'user_count','3','no'),(1224,'db_upgraded','','yes'),(110,'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:34:\"http://divyayogamonteregie.org/web\";s:4:\"link\";s:110:\"http://blogsearch.google.com/blogsearch?scoring=d&partner=wordpress&q=link:http://divyayogamonteregie.org/web/\";s:3:\"url\";s:143:\"http://blogsearch.google.com/blogsearch_feeds?scoring=d&ie=utf-8&num=10&output=rss&partner=wordpress&q=link:http://divyayogamonteregie.org/web/\";s:5:\"items\";i:10;s:9:\"show_date\";b:0;}s:17:\"dashboard_primary\";a:8:{s:5:\"title\";s:14:\"WordPress Blog\";s:3:\"url\";s:31:\"http://wordpress.org/news/feed/\";s:4:\"link\";s:25:\"http://wordpress.org/news\";s:5:\"items\";i:2;s:5:\"error\";b:0;s:12:\"show_summary\";i:0;s:11:\"show_author\";i:0;s:9:\"show_date\";i:0;}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'),(429,'theme_mods_twentyeleven','a:10:{i:0;b:0;s:12:\"header_image\";s:21:\"random-uploaded-image\";s:16:\"header_textcolor\";s:3:\"000\";s:16:\"background_color\";s:6:\"0c4fd6\";s:16:\"background_image\";s:79:\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/08/site_cloud_bg.jpg\";s:17:\"background_repeat\";s:6:\"repeat\";s:21:\"background_position_x\";s:4:\"left\";s:21:\"background_attachment\";s:5:\"fixed\";s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:2;}s:18:\"custom_css_post_id\";i:-1;}','yes'),(432,'twentyeleven_theme_options','a:3:{s:12:\"color_scheme\";s:5:\"light\";s:10:\"link_color\";s:7:\"#1be539\";s:12:\"theme_layout\";s:15:\"content-sidebar\";}','yes'),(1435,'simplevisitorcounter_display_footer','1','yes'),(1436,'simplevisitorcounter_display_credit','0','yes'),(1437,'simplevisitorcounter_count_only_unique','0','yes'),(1438,'simplevisitorcounter_check_update','1','yes'),(1439,'simplevisitorcounter_exclude_ips','1','yes'),(1440,'simplevisitorcounter_align','center','yes'),(1441,'simplevisitorcounter_count_admin','0','yes'),(1442,'simplevisitorcounter_count_404','0','yes'),(1443,'simplevisitorcounter_pad_zeros','0','yes'),(1728,'al2fb_siteurl','1','yes'),(1729,'al2fb_css','.al2fb_widget_comments { }\n.al2fb_widget_comments li { }\n.al2fb_widget_picture { width: 32px; height: 32px; }\n.al2fb_widget_name { }\n.al2fb_widget_comment { }\n.al2fb_widget_date { font-size: smaller; }\n','yes'),(1730,'al2fb_noshortcode','1','yes'),(1731,'al2fb_nofilter','1','yes'),(1732,'al2fb_nofilter_comments','1','yes'),(1733,'al2fb_version','13','yes'),(1734,'al2fb_exclude_custom','1','yes'),(1735,'al2fb_min_cap','edit_posts','yes'),(2332,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:1:{i:0;i:2;}}','yes'),(495,'widget_pages','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:6:\"sortby\";s:10:\"post_title\";s:7:\"exclude\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(414,'emediagallery_children','a:0:{}','yes'),(438,'akismet_available_servers','a:4:{s:12:\"66.135.58.62\";b:1;s:12:\"72.233.69.88\";b:1;s:12:\"72.233.69.89\";b:1;s:12:\"66.135.58.61\";b:1;}','yes'),(425,'_transient_plugins_delete_result_1','1','yes'),(439,'akismet_connectivity_time','1368929484','yes'),(448,'cpm_config','a:17:{s:4:\"zoom\";s:2:\"10\";s:5:\"width\";s:3:\"450\";s:6:\"height\";s:3:\"450\";s:6:\"margin\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:8:\"language\";s:2:\"en\";s:5:\"icons\";a:0:{}s:12:\"default_icon\";s:97:\"http://divyayogamonteregie.org/web/wp-content/plugins/codepeople-post-map/images/icons/marker.png\";s:4:\"type\";s:7:\"ROADMAP\";s:6:\"points\";i:3;s:7:\"display\";s:3:\"map\";s:10:\"mousewheel\";b:1;s:14:\"zoompancontrol\";b:1;s:11:\"typecontrol\";b:1;s:9:\"highlight\";b:1;s:15:\"highlight_class\";s:13:\"cpm_highlight\";s:10:\"windowhtml\";s:777:\"<div class=\'cpm-infowindow\'>\r\n                                                <div class=\'cpm-content\'>\r\n                                                    <a title=\'%link%\' href=\'%link%\'>%thumbnail%</a>\r\n                                                    <a class=\'title\' href=\'%link%\'>%title%</a>\r\n                                                    <div class=\'address\'>%address%</div>\r\n                                                    <div class=\'description\'>%description%</div>\r\n                                                    <a href=\'%link%\' class=\'more\'>more &raquo;</a>\r\n                                                </div>\r\n                                                <div style=\'clear:both;\'></div>\r\n                                            </div>\";}','yes'),(1433,'simplevisitorcounter_data','124616','yes'),(1434,'simplevisitorcounter_style','Basic/5','yes'),(143,'theme_mods_twentytwelve','a:7:{s:16:\"header_textcolor\";s:6:\"1e73be\";s:16:\"background_color\";s:6:\"e6e6e6\";s:16:\"background_image\";s:0:\"\";s:17:\"background_repeat\";s:6:\"repeat\";s:21:\"background_position_x\";s:4:\"left\";s:21:\"background_attachment\";s:5:\"fixed\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1368042176;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";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:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}','yes'),(149,'current_theme','Twenty Eleven','yes'),(150,'theme_mods_pinboard','a:9:{i:0;b:0;s:16:\"header_textcolor\";s:6:\"102ca0\";s:16:\"background_color\";s:6:\"1802e2\";s:16:\"background_image\";s:0:\"\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:21:\"background_position_x\";s:4:\"left\";s:21:\"background_attachment\";s:5:\"fixed\";s:12:\"header_image\";s:13:\"remove-header\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1371866012;s:4:\"data\";a:11:{s:19:\"wp_inactive_widgets\";a:1:{i:0;s:7:\"pages-2\";}s:9:\"sidebar-1\";a:3:{i:0;s:8:\"search-2\";i:1;s:17:\"recent-comments-2\";i:2;s:12:\"categories-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:9:\"sidebar-4\";a:0:{}s:9:\"sidebar-5\";a:0:{}s:9:\"sidebar-6\";a:0:{}s:9:\"sidebar-7\";a:0:{}s:9:\"sidebar-8\";a:0:{}s:9:\"sidebar-9\";a:0:{}s:10:\"sidebar-10\";a:0:{}}}}','yes'),(151,'theme_switched','','yes'),(152,'category_children','a:0:{}','yes'),(156,'recently_activated','a:0:{}','yes'),(165,'pinboard_theme_options','a:105:{s:18:\"home_page_excerpts\";i:2;s:6:\"slider\";b:0;s:8:\"location\";b:0;s:13:\"retina_header\";b:1;s:15:\"crop_thumbnails\";b:0;s:8:\"lightbox\";b:1;s:13:\"facebook_link\";s:0:\"\";s:12:\"twitter_link\";s:0:\"\";s:14:\"pinterest_link\";s:0:\"\";s:11:\"flickr_link\";s:0:\"\";s:12:\"youtube_link\";s:0:\"\";s:10:\"vimeo_link\";s:0:\"\";s:15:\"googleplus_link\";s:0:\"\";s:12:\"dribble_link\";s:0:\"\";s:13:\"linkedin_link\";s:0:\"\";s:13:\"portfolio_cat\";s:2:\"-1\";s:16:\"portfolio_filter\";b:1;s:18:\"portfolio_excerpts\";i:0;s:26:\"portfolio_archive_excerpts\";i:0;s:17:\"portfolio_columns\";i:3;s:14:\"portfolio_meta\";b:1;s:22:\"blog_exclude_portfolio\";b:0;s:16:\"archive_excerpts\";i:0;s:9:\"posts_nav\";s:8:\"infinite\";s:16:\"posts_nav_labels\";s:9:\"next/prev\";s:15:\"fancy_dropdowns\";b:1;s:8:\"facebook\";b:1;s:7:\"twitter\";b:1;s:6:\"google\";b:1;s:9:\"pinterest\";b:1;s:10:\"author_box\";b:1;s:16:\"copyright_notice\";s:20:\"© %year% %blogname%\";s:17:\"theme_credit_link\";b:0;s:18:\"author_credit_link\";b:0;s:21:\"wordpress_credit_link\";b:1;s:15:\"page_background\";s:7:\"#f8f8f8\";s:15:\"menu_background\";s:4:\"#111\";s:18:\"submenu_background\";s:4:\"#333\";s:23:\"sidebar_wide_background\";s:4:\"#eee\";s:18:\"content_background\";s:4:\"#fff\";s:20:\"post_meta_background\";s:7:\"#fcfcfc\";s:22:\"footer_area_background\";s:4:\"#222\";s:17:\"footer_background\";s:4:\"#111\";s:6:\"layout\";s:10:\"full-width\";s:14:\"layout_columns\";i:3;s:13:\"boxes_columns\";s:1:\"3\";s:14:\"footer_columns\";s:1:\"3\";s:12:\"hide_sidebar\";b:0;s:16:\"hide_footer_area\";b:0;s:8:\"user_css\";s:0:\"\";s:9:\"body_font\";s:9:\"open-sans\";s:13:\"headings_font\";s:6:\"oswald\";s:12:\"content_font\";s:9:\"open-sans\";s:14:\"body_font_size\";s:2:\"13\";s:19:\"body_font_size_unit\";s:2:\"px\";s:16:\"body_line_height\";s:4:\"1.62\";s:21:\"body_line_height_unit\";s:2:\"em\";s:12:\"h1_font_size\";s:2:\"36\";s:17:\"h1_font_size_unit\";s:2:\"px\";s:12:\"h2_font_size\";s:2:\"32\";s:17:\"h2_font_size_unit\";s:2:\"px\";s:12:\"h3_font_size\";s:2:\"24\";s:17:\"h3_font_size_unit\";s:2:\"px\";s:12:\"h4_font_size\";s:2:\"18\";s:17:\"h4_font_size_unit\";s:2:\"px\";s:20:\"headings_line_height\";s:4:\"1.62\";s:25:\"headings_line_height_unit\";s:2:\"em\";s:17:\"content_font_size\";s:2:\"15\";s:22:\"content_font_size_unit\";s:2:\"px\";s:19:\"content_line_height\";s:4:\"1.62\";s:24:\"content_line_height_unit\";s:2:\"em\";s:16:\"mobile_font_size\";s:2:\"17\";s:21:\"mobile_font_size_unit\";s:2:\"px\";s:18:\"mobile_line_height\";s:4:\"1.62\";s:23:\"mobile_line_height_unit\";s:2:\"em\";s:10:\"body_color\";s:4:\"#333\";s:14:\"headings_color\";s:4:\"#333\";s:13:\"content_color\";s:4:\"#333\";s:11:\"links_color\";s:7:\"#21759b\";s:17:\"links_hover_color\";s:7:\"#d54e21\";s:10:\"menu_color\";s:7:\"#f0f0f0\";s:16:\"menu_hover_color\";s:4:\"#fff\";s:13:\"sidebar_color\";s:4:\"#ccc\";s:19:\"sidebar_title_color\";s:4:\"#ccc\";s:19:\"sidebar_links_color\";s:7:\"#7597B9\";s:12:\"footer_color\";s:4:\"#ccc\";s:18:\"footer_title_color\";s:7:\"#e0e0e0\";s:15:\"copyright_color\";s:4:\"#ccc\";s:21:\"copyright_links_color\";s:7:\"#7597B9\";s:19:\"home_site_title_tag\";s:2:\"h1\";s:19:\"home_desc_title_tag\";s:3:\"div\";s:19:\"home_post_title_tag\";s:2:\"h2\";s:22:\"archive_site_title_tag\";s:3:\"div\";s:22:\"archive_desc_title_tag\";s:3:\"div\";s:26:\"archive_location_title_tag\";s:2:\"h1\";s:22:\"archive_post_title_tag\";s:2:\"h2\";s:21:\"single_site_title_tag\";s:3:\"div\";s:21:\"single_desc_title_tag\";s:3:\"div\";s:21:\"single_post_title_tag\";s:2:\"h1\";s:25:\"single_comments_title_tag\";s:2:\"h2\";s:24:\"single_respond_title_tag\";s:2:\"h2\";s:16:\"widget_title_tag\";s:2:\"h3\";s:14:\"submit-general\";s:13:\"Save Settings\";s:10:\"submit-seo\";N;s:13:\"submit-layout\";s:13:\"Save Settings\";}','yes'),(211,'_transient_random_seed','376651919801187dce0eceb79167934e','yes'),(223,'easy_media_opt','a:37:{s:19:\"easymedia_deff_init\";s:1:\"1\";s:17:\"easymedia_frm_col\";s:7:\"#FFFFFF\";s:17:\"easymedia_ttl_col\";s:7:\"#C7C7C7\";s:18:\"easymedia_shdw_col\";s:7:\"#4A4A4A\";s:18:\"easymedia_icon_col\";s:7:\"#474747\";s:19:\"easymedia_box_style\";s:5:\"Light\";s:21:\"easymedia_overlay_col\";s:7:\"#F7F0D7\";s:19:\"easymedia_thumb_col\";s:7:\"#000000\";s:21:\"easymedia_hover_style\";s:4:\"Dark\";s:21:\"easymedia_plugin_core\";s:14:\"core-1.4.5-min\";s:21:\"easymedia_hover_opcty\";s:2:\"40\";s:23:\"easymedia_overlay_opcty\";s:2:\"80\";s:28:\"easymedia_thumb_border_opcty\";s:3:\"100\";s:24:\"easymedia_img_size_limit\";s:3:\"940\";s:17:\"easymedia_columns\";s:1:\"3\";s:20:\"easymedia_margin_box\";s:2:\"12\";s:19:\"easymedia_audio_vol\";s:2:\"75\";s:26:\"easymedia_disen_audio_loop\";s:1:\"1\";s:20:\"easymedia_frm_border\";s:1:\"5\";s:19:\"easymedia_cur_style\";s:7:\"Pointer\";s:20:\"easymedia_alignstyle\";s:6:\"Center\";s:18:\"easymedia_brdr_rds\";s:1:\"3\";s:19:\"easymedia_disen_bor\";s:1:\"1\";s:19:\"easymedia_disen_sdw\";s:1:\"1\";s:23:\"easymedia_style_pattern\";s:14:\"pattern-01.png\";s:21:\"easymedia_disen_ticon\";s:1:\"1\";s:22:\"easymedia_disen_icocol\";s:1:\"1\";s:22:\"easymedia_disen_databk\";s:1:\"1\";s:25:\"easymedia_disen_style_man\";s:1:\"1\";s:21:\"easymedia_disen_upchk\";s:1:\"0\";s:24:\"easymedia_disen_hovstyle\";s:1:\"1\";s:20:\"easymedia_disen_plug\";s:1:\"1\";s:22:\"easymedia_disen_autopl\";s:1:\"1\";s:23:\"easymedia_disen_autoplv\";s:1:\"1\";s:25:\"easymedia_disen_admnotify\";s:1:\"1\";s:18:\"easymedia_frm_size\";a:2:{s:5:\"width\";s:3:\"160\";s:6:\"height\";s:3:\"160\";}s:18:\"easymedia_vid_size\";a:2:{s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"400\";}}','yes'),(47535,'_transient_health-check-site-status-result','{\"good\":15,\"recommended\":6,\"critical\":0}','yes'),(47479,'https_detection_errors','a:0:{}','yes'),(9138,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(9139,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(9140,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(9136,'sc_admin_notice','a:3:{s:17:\"sc_new_year_promo\";a:2:{s:5:\"start\";s:10:\"12/31/2015\";s:3:\"int\";i:0;}s:15:\"two_week_review\";a:3:{s:5:\"start\";s:8:\"1/9/2016\";s:3:\"int\";i:14;s:9:\"dismissed\";i:0;}s:16:\"one_week_support\";a:2:{s:5:\"start\";s:8:\"1/8/1970\";s:3:\"int\";i:7;}}','yes'),(9145,'WPLANG','','yes'),(9141,'finished_splitting_shared_terms','1','yes'),(9142,'site_icon','0','yes'),(9143,'medium_large_size_w','768','yes'),(9144,'medium_large_size_h','0','yes'),(9146,'widget_emg-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(9147,'widget_spider_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(9148,'widget_upcoming_events','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(9149,'widget_wvisitorcounter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(68602,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1732299214;s:7:\"checked\";a:9:{s:8:\"pinboard\";s:6:\"1.1.12\";s:12:\"twentyeleven\";s:3:\"4.1\";s:14:\"twentynineteen\";s:3:\"2.3\";s:15:\"twentyseventeen\";s:3:\"3.0\";s:14:\"twentythirteen\";s:3:\"3.6\";s:12:\"twentytwelve\";s:3:\"3.7\";s:12:\"twentytwenty\";s:3:\"2.0\";s:15:\"twentytwentyone\";s:3:\"1.8\";s:15:\"twentytwentytwo\";s:3:\"1.4\";}s:8:\"response\";a:8:{s:12:\"twentyeleven\";a:6:{s:5:\"theme\";s:12:\"twentyeleven\";s:11:\"new_version\";s:3:\"4.8\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentyeleven/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentyeleven.4.8.zip\";s:8:\"requires\";s:3:\"3.2\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"3.0\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.3.0.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentyseventeen\";a:6:{s:5:\"theme\";s:15:\"twentyseventeen\";s:11:\"new_version\";s:3:\"3.8\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentyseventeen/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentyseventeen.3.8.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:14:\"twentythirteen\";a:6:{s:5:\"theme\";s:14:\"twentythirteen\";s:11:\"new_version\";s:3:\"4.3\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentythirteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentythirteen.4.3.zip\";s:8:\"requires\";s:3:\"3.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwelve\";a:6:{s:5:\"theme\";s:12:\"twentytwelve\";s:11:\"new_version\";s:3:\"4.4\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwelve/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwelve.4.4.zip\";s:8:\"requires\";s:3:\"3.5\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"2.8\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.2.8.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"2.4\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.2.4.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.9\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.9.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:1:{s:8:\"pinboard\";a:6:{s:5:\"theme\";s:8:\"pinboard\";s:11:\"new_version\";s:6:\"1.1.12\";s:3:\"url\";s:38:\"https://wordpress.org/themes/pinboard/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/theme/pinboard.1.1.12.zip\";s:8:\"requires\";s:3:\"3.9\";s:12:\"requires_php\";b:0;}}s:12:\"translations\";a:0:{}}','no'),(63970,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:6:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.7.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.7.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.7.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.7.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.7.1\";s:7:\"version\";s:5:\"6.7.1\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.7.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.7.1.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.7.1-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.7.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.7.1\";s:7:\"version\";s:5:\"6.7.1\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.6.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.6.2.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.6.2-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.6.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.6.2\";s:7:\"version\";s:5:\"6.6.2\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.5.5.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.5.5.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.5.5-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.5.5-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.5.5\";s:7:\"version\";s:5:\"6.5.5\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:4;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.4.5.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.4.5.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.4.5-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.4.5-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.4.5\";s:7:\"version\";s:5:\"6.4.5\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:5;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.3.5.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.3.5.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.3.5-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.3.5-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.3.5\";s:7:\"version\";s:5:\"6.3.5\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}}s:12:\"last_checked\";i:1732299214;s:15:\"version_checked\";s:5:\"6.2.6\";s:12:\"translations\";a:0:{}}','no'),(47478,'backuply_promo_time','1682816176','yes'),(47487,'can_compress_scripts','0','no'),(47454,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(47455,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(47456,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(47457,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(47458,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(47459,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(9370,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:33:\"webmaster@divyayogamonteregie.org\";s:7:\"version\";s:5:\"6.2.6\";s:9:\"timestamp\";i:1719296876;}','no'),(47473,'widget_widget_twentyeleven_ephemera','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(47475,'recovery_keys','a:0:{}','yes'),(47476,'backuply_version','1.2.2','yes'),(47477,'backuply_hide_holiday','1728430541','yes'),(43348,'installed_codepeople-post-map','1664125709','yes'),(48555,'emg_block_notify','done','yes'),(59359,'backuply_config_keys','a:2:{s:12:\"BACKUPLY_KEY\";s:64:\"69a81147f1b3a3d64cf4ca5abfb8a3a808be9a45bde8b2539dcbaa6a66fa1096\";s:11:\"RESTORE_KEY\";s:64:\"b50318106d7f1f90b7a33ed47251c3272cf08e6ee5df72a09699cfefe434c420\";}','yes'),(59360,'backuply_backup_nag','1702718539','yes'),(47460,'rewrite_rules','','yes'),(47461,'wp_page_for_privacy_policy','0','yes'),(47462,'show_comments_cookies_opt_in','1','yes'),(47463,'admin_email_lifespan','1700407484','yes'),(47464,'disallowed_keys','','no'),(47465,'comment_previously_approved','1','yes'),(47466,'auto_plugin_theme_update_emails','a:0:{}','no'),(47467,'auto_update_core_dev','enabled','yes'),(47468,'auto_update_core_minor','enabled','yes'),(47469,'auto_update_core_major','unset','yes'),(47470,'wp_force_deactivated_plugins','a:0:{}','yes'),(68600,'_site_transient_timeout_theme_roots','1732301014','no'),(68601,'_site_transient_theme_roots','a:9:{s:8:\"pinboard\";s:7:\"/themes\";s:12:\"twentyeleven\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:14:\"twentythirteen\";s:7:\"/themes\";s:12:\"twentytwelve\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(68603,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1732299214;s:8:\"response\";a:3:{s:21:\"backuply/backuply.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:22:\"w.org/plugins/backuply\";s:4:\"slug\";s:8:\"backuply\";s:6:\"plugin\";s:21:\"backuply/backuply.php\";s:11:\"new_version\";s:5:\"1.4.0\";s:3:\"url\";s:39:\"https://wordpress.org/plugins/backuply/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/backuply.1.4.0.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/backuply/assets/icon-128x128.png?rev=2760139\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/backuply/assets/banner-1544x500.png?rev=2760332\";s:2:\"1x\";s:63:\"https://ps.w.org/backuply/assets/banner-772x250.png?rev=2760332\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.7\";s:6:\"tested\";s:5:\"6.7.1\";s:12:\"requires_php\";s:3:\"5.5\";s:16:\"requires_plugins\";a:0:{}}s:41:\"easy-media-gallery/easy-media-gallery.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:32:\"w.org/plugins/easy-media-gallery\";s:4:\"slug\";s:18:\"easy-media-gallery\";s:6:\"plugin\";s:41:\"easy-media-gallery/easy-media-gallery.php\";s:11:\"new_version\";s:7:\"1.3.170\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/easy-media-gallery/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/easy-media-gallery.1.3.170.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/easy-media-gallery/assets/icon-256x256.png?rev=1119960\";s:2:\"1x\";s:71:\"https://ps.w.org/easy-media-gallery/assets/icon-128x128.png?rev=1119050\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/easy-media-gallery/assets/banner-1544x500.png?rev=1673295\";s:2:\"1x\";s:73:\"https://ps.w.org/easy-media-gallery/assets/banner-772x250.png?rev=1690938\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.4\";s:6:\"tested\";s:5:\"6.6.2\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}s:14:\"upgrade_notice\";s:55:\"<p>IMPORTANT! SECURITY BUGS FIX, PLEASE UPDATE NOW!</p>\";}s:43:\"codepeople-post-map/codepeople-post-map.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:33:\"w.org/plugins/codepeople-post-map\";s:4:\"slug\";s:19:\"codepeople-post-map\";s:6:\"plugin\";s:43:\"codepeople-post-map/codepeople-post-map.php\";s:11:\"new_version\";s:5:\"1.1.8\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/codepeople-post-map/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/codepeople-post-map.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/codepeople-post-map/assets/icon-256x256.jpg?rev=980165\";s:2:\"1x\";s:71:\"https://ps.w.org/codepeople-post-map/assets/icon-128x128.jpg?rev=980165\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/codepeople-post-map/assets/banner-1544x500.png?rev=1624847\";s:2:\"1x\";s:74:\"https://ps.w.org/codepeople-post-map/assets/banner-772x250.png?rev=1624847\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.0.5\";s:6:\"tested\";s:5:\"6.7.1\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:0:{}}','no'),(67338,'backuply_hide_trial','1728430541','yes'),(67339,'backuply_offer_time','1728430541','yes'),(67361,'_transient_is_multi_author','0','yes'),(68503,'_site_transient_timeout_php_check_990bfacb848fa087bcfc06850f5e4447','1732504213','no'),(68504,'_site_transient_php_check_990bfacb848fa087bcfc06850f5e4447','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"7.2.24\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no');
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_postmeta` (
  `meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=1030 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!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` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (1,2,'_wp_page_template','showcase.php'),(2,2,'_edit_lock','1684871426:3'),(3,2,'_edit_last','1'),(4,6,'_edit_last','1'),(5,6,'_edit_lock','1684871027:3'),(6,6,'_wp_page_template','default'),(7,9,'_edit_last','1'),(8,9,'_edit_lock','1684897817:3'),(9,9,'_wp_page_template','default'),(10,12,'_edit_last','1'),(11,12,'_edit_lock','1373415366:1'),(12,12,'_wp_page_template','default'),(13,1,'_edit_lock','1375035407:1'),(14,1,'_edit_last','1'),(19,25,'_edit_last','1'),(20,25,'_edit_lock','1684871079:3'),(21,25,'_wp_page_template','default'),(22,31,'_edit_last','1'),(23,31,'_edit_lock','1373415761:1'),(24,31,'_wp_page_template','default'),(25,33,'_edit_last','1'),(26,33,'_edit_lock','1684871205:3'),(27,33,'_wp_page_template','default'),(28,35,'_edit_last','1'),(29,35,'_edit_lock','1684871327:3'),(30,35,'_wp_page_template','default'),(380,379,'_wp_attached_file','2013/08/site_cloud_bg.jpg'),(34,39,'_edit_last','1'),(35,39,'_edit_lock','1373414914:1'),(36,39,'_wp_page_template','default'),(37,42,'_edit_last','1'),(38,42,'_edit_lock','1684887510:3'),(39,42,'_wp_page_template','default'),(40,45,'_edit_last','1'),(41,45,'_edit_lock','1684887824:3'),(42,45,'_wp_page_template','template-landing-page.php'),(43,48,'_edit_last','1'),(44,48,'_edit_lock','1684887013:3'),(45,48,'_wp_page_template','default'),(46,53,'_edit_last','1'),(47,53,'_edit_lock','1684871926:3'),(48,53,'_wp_page_template','default'),(49,55,'_edit_last','1'),(50,55,'_edit_lock','1684872443:3'),(51,55,'_wp_page_template','default'),(52,57,'_edit_last','1'),(53,57,'_edit_lock','1684872571:3'),(54,57,'_wp_page_template','default'),(55,59,'_edit_last','1'),(56,59,'_edit_lock','1684872136:3'),(57,59,'_wp_page_template','default'),(58,61,'_edit_last','1'),(59,61,'_edit_lock','1684892095:3'),(60,61,'_wp_page_template','default'),(61,63,'_edit_last','1'),(62,63,'_edit_lock','1684888735:3'),(63,63,'_wp_page_template','default'),(64,65,'_edit_last','1'),(65,65,'_edit_lock','1684887205:3'),(66,65,'_wp_page_template','default'),(67,67,'_edit_last','1'),(68,67,'_edit_lock','1684892422:3'),(69,67,'_wp_page_template','default'),(70,70,'_edit_last','1'),(71,70,'_edit_lock','1684888528:3'),(72,70,'_wp_page_template','default'),(73,72,'_edit_last','1'),(74,72,'_edit_lock','1684887962:3'),(75,72,'_wp_page_template','default'),(76,74,'_edit_last','1'),(77,74,'_edit_lock','1684887492:3'),(78,74,'_wp_page_template','default'),(79,76,'_edit_last','1'),(80,76,'_edit_lock','1684888189:3'),(81,76,'_wp_page_template','default'),(82,79,'_edit_last','1'),(83,79,'_edit_lock','1373415230:1'),(84,79,'_wp_page_template','default'),(85,89,'_edit_last','1'),(86,89,'_edit_lock','1684932163:3'),(87,90,'_wp_attached_file','2013/05/giraffle.png'),(88,90,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:256;s:6:\"height\";i:265;s:4:\"file\";s:20:\"2013/05/giraffle.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"giraffle-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"gallery-3-thumb\";a:4:{s:4:\"file\";s:20:\"giraffle-256x164.png\";s:5:\"width\";i:256;s:6:\"height\";i:164;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(89,91,'_wp_attached_file','2013/05/butterfly.png'),(90,91,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:225;s:4:\"file\";s:21:\"2013/05/butterfly.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"butterfly-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"gallery-2-thumb\";a:4:{s:4:\"file\";s:21:\"butterfly-268x225.png\";s:5:\"width\";i:268;s:6:\"height\";i:225;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"gallery-3-thumb\";a:4:{s:4:\"file\";s:21:\"butterfly-268x164.png\";s:5:\"width\";i:268;s:6:\"height\";i:164;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(91,89,'_wp_page_template','default'),(92,108,'_wp_attached_file','2013/05/banner1.jpg'),(93,108,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:573;s:6:\"height\";i:120;s:4:\"file\";s:19:\"2013/05/banner1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"banner1-150x120.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"banner1-300x62.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:62;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"teaser-thumb\";a:4:{s:4:\"file\";s:18:\"banner1-332x69.jpg\";s:5:\"width\";i:332;s:6:\"height\";i:69;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"gallery-1-thumb\";a:4:{s:4:\"file\";s:19:\"banner1-432x120.jpg\";s:5:\"width\";i:432;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"gallery-2-thumb\";a:4:{s:4:\"file\";s:19:\"banner1-268x120.jpg\";s:5:\"width\";i:268;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"gallery-3-thumb\";a:4:{s:4:\"file\";s:19:\"banner1-268x120.jpg\";s:5:\"width\";i:268;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(94,111,'_wp_attached_file','2013/05/cropped-banner11.jpg'),(95,111,'_wp_attachment_context','custom-header'),(96,111,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:392;s:6:\"height\";i:96;s:4:\"file\";s:28:\"2013/05/cropped-banner11.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"cropped-banner11-150x96.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"cropped-banner11-300x73.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:73;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"teaser-thumb\";a:4:{s:4:\"file\";s:27:\"cropped-banner11-332x81.jpg\";s:5:\"width\";i:332;s:6:\"height\";i:81;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"gallery-2-thumb\";a:4:{s:4:\"file\";s:27:\"cropped-banner11-268x96.jpg\";s:5:\"width\";i:268;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"gallery-3-thumb\";a:4:{s:4:\"file\";s:27:\"cropped-banner11-268x96.jpg\";s:5:\"width\";i:268;s:6:\"height\";i:96;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(97,111,'_wp_attachment_is_custom_header','pinboard'),(279,262,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:562;s:6:\"height\";i:530;s:4:\"file\";s:37:\"2013/06/Dill-fenugreek-tofu-rice..jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Dill-fenugreek-tofu-rice.-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Dill-fenugreek-tofu-rice.-300x282.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:37:\"Dill-fenugreek-tofu-rice.-562x288.jpg\";s:5:\"width\";i:562;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:37:\"Dill-fenugreek-tofu-rice.-562x288.jpg\";s:5:\"width\";i:562;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:37:\"Dill-fenugreek-tofu-rice.-318x300.jpg\";s:5:\"width\";i:318;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(278,262,'_wp_attached_file','2013/06/Dill-fenugreek-tofu-rice..jpg'),(103,114,'_wp_attached_file','2013/05/cropped-banner111.jpg'),(104,114,'_wp_attachment_context','custom-header'),(105,114,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:288;s:4:\"file\";s:29:\"2013/05/cropped-banner111.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"cropped-banner111-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"cropped-banner111-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:30:\"cropped-banner111-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:30:\"cropped-banner111-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:29:\"cropped-banner111-500x144.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(106,114,'_wp_attachment_is_custom_header','twentyeleven'),(107,115,'_wp_attached_file','2013/05/cropped-banner2.jpg'),(108,115,'_wp_attachment_context','custom-header'),(109,115,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:288;s:4:\"file\";s:27:\"2013/05/cropped-banner2.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"cropped-banner2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"cropped-banner2-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"cropped-banner2-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:28:\"cropped-banner2-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:27:\"cropped-banner2-500x144.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(110,115,'_wp_attachment_is_custom_header','twentyeleven'),(111,116,'_wp_attached_file','2013/05/cropped-banner3.jpg'),(112,116,'_wp_attachment_context','custom-header'),(113,116,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:288;s:4:\"file\";s:27:\"2013/05/cropped-banner3.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"cropped-banner3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"cropped-banner3-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"cropped-banner3-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:28:\"cropped-banner3-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:27:\"cropped-banner3-500x144.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(114,116,'_wp_attachment_is_custom_header','twentyeleven'),(115,117,'_wp_attached_file','2013/05/cropped-banner4.jpg'),(116,117,'_wp_attachment_context','custom-header'),(117,117,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:288;s:4:\"file\";s:27:\"2013/05/cropped-banner4.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"cropped-banner4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"cropped-banner4-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"cropped-banner4-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:28:\"cropped-banner4-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:27:\"cropped-banner4-500x144.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(118,117,'_wp_attachment_is_custom_header','twentyeleven'),(119,118,'_wp_attached_file','2013/05/cropped-banner5.jpg'),(120,118,'_wp_attachment_context','custom-header'),(121,118,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:288;s:4:\"file\";s:27:\"2013/05/cropped-banner5.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"cropped-banner5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"cropped-banner5-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"cropped-banner5-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:28:\"cropped-banner5-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:27:\"cropped-banner5-500x144.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(122,118,'_wp_attachment_is_custom_header','twentyeleven'),(123,119,'_wp_attached_file','2013/05/cropped-banner7.jpg'),(124,119,'_wp_attachment_context','custom-header'),(125,119,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:288;s:4:\"file\";s:27:\"2013/05/cropped-banner7.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"cropped-banner7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"cropped-banner7-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:28:\"cropped-banner7-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:28:\"cropped-banner7-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:27:\"cropped-banner7-500x144.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(126,119,'_wp_attachment_is_custom_header','twentyeleven'),(128,121,'_wp_attached_file','2013/05/IMG_2734.jpg'),(129,121,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2048;s:6:\"height\";i:1536;s:4:\"file\";s:20:\"2013/05/IMG_2734.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_2734-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_2734-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_2734-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"IMG_2734-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:21:\"IMG_2734-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:20:\"IMG_2734-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1298633847;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";}}'),(130,122,'_wp_attached_file','2013/05/divya_yoga.jpg'),(131,122,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1800;s:4:\"file\";s:22:\"2013/05/divya_yoga.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"divya_yoga-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"divya_yoga-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"divya_yoga-682x1024.jpg\";s:5:\"width\";i:682;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"divya_yoga-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:23:\"divya_yoga-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:22:\"divya_yoga-200x300.jpg\";s:5:\"width\";i:200;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1020,9,'cpm_point','a:7:{s:4:\"name\";s:10:\"Divya Yoga\";s:11:\"description\";s:13:\"Saint-Lambert\";s:9:\"thumbnail\";s:76:\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/05/divya_yoga.jpg\";s:7:\"address\";s:48:\"675 Rue Green, Saint-Lambert, QC J4P 1V9, Canada\";s:8:\"latitude\";s:17:\"45.50991639999999\";s:9:\"longitude\";s:18:\"-73.50477610000002\";s:4:\"icon\";s:24:\"/images/icons/marker.png\";}'),(1019,9,'cpm_map','a:20:{s:6:\"single\";b:1;s:4:\"zoom\";s:2:\"60\";s:5:\"width\";s:3:\"450\";s:6:\"height\";s:3:\"450\";s:6:\"margin\";s:2:\"10\";s:5:\"align\";s:6:\"center\";s:4:\"type\";s:7:\"ROADMAP\";s:8:\"language\";s:2:\"en\";s:8:\"drag_map\";b:1;s:7:\"display\";s:3:\"map\";s:10:\"mousewheel\";b:1;s:14:\"zoompancontrol\";b:1;s:11:\"typecontrol\";b:1;s:6:\"points\";s:1:\"3\";s:17:\"fullscreencontrol\";b:0;s:17:\"streetviewcontrol\";b:0;s:12:\"trafficlayer\";b:0;s:12:\"dynamic_zoom\";b:0;s:12:\"show_default\";b:0;s:11:\"show_window\";b:0;}'),(134,133,'_edit_last','1'),(135,133,'_edit_lock','1684933557:3'),(136,133,'_wp_page_template','default'),(137,135,'_edit_last','1'),(138,135,'_edit_lock','1684933391:3'),(139,135,'_wp_page_template','default'),(140,137,'_edit_last','1'),(141,137,'_edit_lock','1684932283:3'),(142,137,'_wp_page_template','default'),(143,139,'_edit_last','1'),(144,139,'_edit_lock','1684933079:3'),(145,139,'_wp_page_template','default'),(146,141,'_wp_attached_file','2013/06/hospital_window.png'),(147,141,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:200;s:4:\"file\";s:27:\"2013/06/hospital_window.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"hospital_window-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(148,145,'_edit_last','1'),(149,145,'_edit_lock','1684933862:3'),(150,145,'_wp_page_template','default'),(151,147,'_edit_last','1'),(152,147,'_edit_lock','1684933019:3'),(153,147,'_wp_page_template','default'),(154,150,'_edit_last','1'),(155,150,'_edit_lock','1684932405:3'),(156,150,'_wp_page_template','default'),(157,152,'_edit_last','1'),(158,152,'_edit_lock','1684933392:3'),(159,152,'_wp_page_template','default'),(160,154,'_edit_last','1'),(161,154,'_edit_lock','1684932708:3'),(162,154,'_wp_page_template','default'),(175,164,'_wp_attached_file','2013/06/image014.jpg'),(176,164,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:623;s:6:\"height\";i:350;s:4:\"file\";s:20:\"2013/06/image014.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"image014-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"image014-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"image014-623x288.jpg\";s:5:\"width\";i:623;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:20:\"image014-623x288.jpg\";s:5:\"width\";i:623;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:20:\"image014-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(170,160,'_edit_last','1'),(171,160,'_edit_lock','1684932987:3'),(172,160,'_wp_page_template','default'),(173,163,'_wp_attached_file','2013/06/image008.jpg'),(174,163,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:623;s:6:\"height\";i:350;s:4:\"file\";s:20:\"2013/06/image008.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"image008-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"image008-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"image008-623x288.jpg\";s:5:\"width\";i:623;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:20:\"image008-623x288.jpg\";s:5:\"width\";i:623;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:20:\"image008-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(167,156,'_edit_last','1'),(168,156,'_edit_lock','1684899222:3'),(169,156,'_wp_page_template','default'),(177,165,'_wp_attached_file','2013/06/image002.jpg'),(178,165,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:623;s:6:\"height\";i:350;s:4:\"file\";s:20:\"2013/06/image002.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"image002-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"image002-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"image002-623x288.jpg\";s:5:\"width\";i:623;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:20:\"image002-623x288.jpg\";s:5:\"width\";i:623;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:20:\"image002-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(179,166,'_wp_attached_file','2013/06/image004.jpg'),(180,166,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:624;s:6:\"height\";i:351;s:4:\"file\";s:20:\"2013/06/image004.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"image004-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"image004-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"image004-624x288.jpg\";s:5:\"width\";i:624;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:20:\"image004-624x288.jpg\";s:5:\"width\";i:624;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:20:\"image004-500x281.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:281;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(181,167,'_wp_attached_file','2013/06/image006.jpg'),(182,167,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:623;s:6:\"height\";i:350;s:4:\"file\";s:20:\"2013/06/image006.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"image006-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"image006-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"image006-623x288.jpg\";s:5:\"width\";i:623;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:20:\"image006-623x288.jpg\";s:5:\"width\";i:623;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:20:\"image006-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(183,168,'_wp_attached_file','2013/06/image010.jpg'),(184,168,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:623;s:6:\"height\";i:350;s:4:\"file\";s:20:\"2013/06/image010.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"image010-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"image010-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"image010-623x288.jpg\";s:5:\"width\";i:623;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:20:\"image010-623x288.jpg\";s:5:\"width\";i:623;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:20:\"image010-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(185,169,'_wp_attached_file','2013/06/image012.jpg'),(186,169,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:623;s:6:\"height\";i:350;s:4:\"file\";s:20:\"2013/06/image012.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"image012-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"image012-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"image012-623x288.jpg\";s:5:\"width\";i:623;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:20:\"image012-623x288.jpg\";s:5:\"width\";i:623;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:20:\"image012-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(187,162,'_edit_last','1'),(188,162,'_edit_lock','1684933631:3'),(189,162,'_wp_page_template','default'),(190,171,'_edit_last','1'),(191,171,'_edit_lock','1684933638:3'),(192,171,'_wp_page_template','default'),(193,173,'_edit_last','1'),(194,173,'_edit_lock','1684933811:3'),(195,173,'_wp_page_template','default'),(196,175,'_edit_last','1'),(197,175,'_edit_lock','1684932704:3'),(198,175,'_wp_page_template','default'),(199,177,'_edit_last','1'),(200,177,'_edit_lock','1684898949:3'),(201,177,'_wp_page_template','default'),(202,179,'_edit_last','1'),(203,179,'_edit_lock','1684899269:3'),(204,179,'_wp_page_template','default'),(382,379,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1980;s:6:\"height\";i:976;s:4:\"file\";s:25:\"2013/08/site_cloud_bg.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"site_cloud_bg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"site_cloud_bg-300x147.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:147;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"site_cloud_bg-1024x504.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:504;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"site_cloud_bg-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:26:\"site_cloud_bg-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:25:\"site_cloud_bg-500x246.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:246;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(209,183,'_edit_last','1'),(210,183,'_edit_lock','1684932482:3'),(211,183,'_wp_page_template','default'),(212,185,'_edit_last','1'),(213,185,'_edit_lock','1684899418:3'),(214,185,'_wp_page_template','default'),(215,187,'_edit_last','1'),(216,187,'_edit_lock','1684933310:3'),(217,187,'_wp_page_template','default'),(218,190,'_edit_last','1'),(219,190,'_edit_lock','1422838594:1'),(220,190,'_wp_page_template','default'),(221,192,'_edit_last','1'),(222,192,'_edit_lock','1371349086:1'),(223,192,'_wp_page_template','default'),(224,194,'_edit_last','1'),(225,194,'_edit_lock','1371348568:1'),(226,194,'_wp_page_template','default'),(381,379,'_wp_attachment_context','custom-background'),(229,199,'_wp_attached_file','2013/06/image001.jpg'),(230,199,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:304;s:6:\"height\";i:377;s:4:\"file\";s:20:\"2013/06/image001.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"image001-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"image001-241x300.jpg\";s:5:\"width\";i:241;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"image001-304x288.jpg\";s:5:\"width\";i:304;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:20:\"image001-304x288.jpg\";s:5:\"width\";i:304;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:20:\"image001-241x300.jpg\";s:5:\"width\";i:241;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(231,200,'_edit_last','1'),(232,200,'_edit_lock','1371348766:1'),(233,200,'_wp_page_template','default'),(234,202,'_edit_last','1'),(235,202,'_edit_lock','1371347782:1'),(236,202,'_wp_page_template','default'),(237,204,'_edit_last','1'),(238,204,'_edit_lock','1371351339:1'),(239,204,'_wp_page_template','default'),(240,209,'_edit_last','1'),(241,209,'_edit_lock','1371358864:1'),(242,209,'_wp_page_template','default'),(243,211,'_edit_last','1'),(244,211,'_edit_lock','1370996017:1'),(245,211,'_wp_page_template','default'),(246,213,'_edit_last','1'),(247,213,'_edit_lock','1372281789:1'),(248,213,'_wp_page_template','default'),(249,199,'_edit_lock','1371345480:1'),(250,199,'_edit_lock','1371345480:1'),(259,225,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:575;s:6:\"height\";i:323;s:4:\"file\";s:21:\"2013/06/image0022.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"image0022-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"image0022-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"image0022-575x288.jpg\";s:5:\"width\";i:575;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:21:\"image0022-575x288.jpg\";s:5:\"width\";i:575;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:21:\"image0022-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(258,225,'_wp_attached_file','2013/06/image0022.jpg'),(256,218,'_wp_attached_file','2013/06/image0021.jpg'),(257,218,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:575;s:6:\"height\";i:272;s:4:\"file\";s:21:\"2013/06/image0021.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"image0021-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"image0021-300x141.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:141;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:21:\"image0021-500x236.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(260,253,'_wp_attached_file','2013/06/image003.jpg'),(261,253,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:628;s:6:\"height\";i:428;s:4:\"file\";s:20:\"2013/06/image003.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"image003-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"image003-300x204.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:204;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:20:\"image003-628x288.jpg\";s:5:\"width\";i:628;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:20:\"image003-628x288.jpg\";s:5:\"width\";i:628;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:20:\"image003-440x300.jpg\";s:5:\"width\";i:440;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(348,121,'_edit_lock','1371681190:1'),(349,108,'_edit_lock','1371681062:1'),(350,291,'_wp_attached_file','2013/06/banner_aum.jpg'),(351,291,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:288;s:4:\"file\";s:22:\"2013/06/banner_aum.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"banner_aum-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"banner_aum-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:23:\"banner_aum-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:23:\"banner_aum-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:22:\"banner_aum-500x144.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(352,292,'_wp_attached_file','2013/06/cropped-banner_aum1.jpg'),(353,292,'_wp_attachment_context','custom-header'),(354,292,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:288;s:4:\"file\";s:31:\"2013/06/cropped-banner_aum1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"cropped-banner_aum1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"cropped-banner_aum1-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:32:\"cropped-banner_aum1-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:32:\"cropped-banner_aum1-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:31:\"cropped-banner_aum1-500x144.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(355,292,'_wp_attachment_is_custom_header','twentyeleven'),(356,293,'_wp_attached_file','2013/06/20130315_99_2.jpg'),(357,293,'_wp_attachment_context','custom-background'),(358,293,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:25:\"2013/06/20130315_99_2.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"20130315_99_2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"20130315_99_2-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"20130315_99_2-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"20130315_99_2-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:26:\"20130315_99_2-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:25:\"20130315_99_2-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1363381652;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";}}'),(359,293,'_wp_attachment_is_custom_background','twentyeleven'),(360,294,'_wp_attached_file','2013/06/20130601_99_1.jpg'),(361,294,'_wp_attachment_context','custom-background'),(362,294,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:25:\"2013/06/20130601_99_1.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"20130601_99_1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"20130601_99_1-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"20130601_99_1-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"20130601_99_1-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:26:\"20130601_99_1-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:25:\"20130601_99_1-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:5.5;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1370111308;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"23.2\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";}}'),(363,294,'_wp_attachment_is_custom_background','twentyeleven'),(364,295,'_wp_attached_file','2013/06/Meeras-kitchen.jpg'),(365,295,'_wp_attachment_context','custom-background'),(366,295,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:771;s:6:\"height\";i:544;s:4:\"file\";s:26:\"2013/06/Meeras-kitchen.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Meeras-kitchen-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Meeras-kitchen-300x211.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:211;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Meeras-kitchen-771x288.jpg\";s:5:\"width\";i:771;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:26:\"Meeras-kitchen-771x288.jpg\";s:5:\"width\";i:771;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:26:\"Meeras-kitchen-425x300.jpg\";s:5:\"width\";i:425;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(280,263,'_wp_attached_file','2013/06/Lima-beans.jpg'),(281,263,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:511;s:6:\"height\";i:438;s:4:\"file\";s:22:\"2013/06/Lima-beans.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Lima-beans-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Lima-beans-300x257.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:22:\"Lima-beans-511x288.jpg\";s:5:\"width\";i:511;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:22:\"Lima-beans-511x288.jpg\";s:5:\"width\";i:511;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:22:\"Lima-beans-350x300.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(282,264,'_wp_attached_file','2013/06/Pumkin.jpg'),(283,264,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:719;s:6:\"height\";i:539;s:4:\"file\";s:18:\"2013/06/Pumkin.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Pumkin-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"Pumkin-300x224.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:224;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"Pumkin-719x288.jpg\";s:5:\"width\";i:719;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:18:\"Pumkin-719x288.jpg\";s:5:\"width\";i:719;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:18:\"Pumkin-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(284,265,'_wp_attached_file','2013/06/Rhubarb-Sauce..jpg'),(285,265,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:960;s:6:\"height\";i:720;s:4:\"file\";s:26:\"2013/06/Rhubarb-Sauce..jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Rhubarb-Sauce.-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Rhubarb-Sauce.-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:26:\"Rhubarb-Sauce.-960x288.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:26:\"Rhubarb-Sauce.-960x288.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:26:\"Rhubarb-Sauce.-400x300.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(286,266,'_wp_attached_file','2013/06/20121123_48.jpg'),(287,266,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:23:\"2013/06/20121123_48.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"20121123_48-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"20121123_48-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"20121123_48-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"20121123_48-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:24:\"20121123_48-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:23:\"20121123_48-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1353671613;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";}}'),(288,267,'_wp_attached_file','2013/06/20121123_50.jpg'),(289,267,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:23:\"2013/06/20121123_50.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"20121123_50-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"20121123_50-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"20121123_50-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"20121123_50-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:24:\"20121123_50-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:23:\"20121123_50-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1353671633;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";}}'),(290,268,'_wp_attached_file','2013/06/20121123_49.jpg'),(291,268,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:23:\"2013/06/20121123_49.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"20121123_49-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"20121123_49-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"20121123_49-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"20121123_49-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:24:\"20121123_49-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:23:\"20121123_49-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1353671624;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";}}'),(292,269,'_wp_attached_file','2013/06/20121123_51.jpg'),(293,269,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:23:\"2013/06/20121123_51.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"20121123_51-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"20121123_51-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"20121123_51-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"20121123_51-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:24:\"20121123_51-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:23:\"20121123_51-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1353671648;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";}}'),(294,270,'_wp_attached_file','2013/06/20121123_46.jpg'),(295,270,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:23:\"2013/06/20121123_46.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"20121123_46-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"20121123_46-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"20121123_46-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"20121123_46-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:24:\"20121123_46-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:23:\"20121123_46-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1353671601;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";}}'),(296,271,'_wp_attached_file','2013/06/20121123_44.jpg'),(297,271,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:23:\"2013/06/20121123_44.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"20121123_44-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"20121123_44-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"20121123_44-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"20121123_44-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:24:\"20121123_44-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:23:\"20121123_44-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1353671583;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";}}'),(298,272,'_wp_attached_file','2013/06/20121123_40.jpg'),(299,272,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:23:\"2013/06/20121123_40.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"20121123_40-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"20121123_40-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"20121123_40-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"20121123_40-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:24:\"20121123_40-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:23:\"20121123_40-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1353671528;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";}}'),(300,273,'_wp_attached_file','2013/06/20121123_39.jpg'),(301,273,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:23:\"2013/06/20121123_39.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"20121123_39-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"20121123_39-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"20121123_39-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"20121123_39-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:24:\"20121123_39-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:23:\"20121123_39-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1353671518;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";}}'),(302,274,'_wp_attached_file','2013/06/20121123_41.jpg'),(303,274,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:23:\"2013/06/20121123_41.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"20121123_41-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"20121123_41-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"20121123_41-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"20121123_41-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:24:\"20121123_41-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:23:\"20121123_41-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1353671537;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";}}'),(304,275,'_wp_attached_file','2013/06/20121123_43.jpg'),(305,275,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:23:\"2013/06/20121123_43.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"20121123_43-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"20121123_43-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"20121123_43-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"20121123_43-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:24:\"20121123_43-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:23:\"20121123_43-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1353671570;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";}}'),(306,276,'_wp_attached_file','2013/06/20121123_36.jpg'),(307,276,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:23:\"2013/06/20121123_36.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"20121123_36-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"20121123_36-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"20121123_36-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"20121123_36-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:24:\"20121123_36-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:23:\"20121123_36-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1353671495;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";}}'),(308,277,'_wp_attached_file','2013/06/20121123_33.jpg'),(309,277,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:23:\"2013/06/20121123_33.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"20121123_33-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"20121123_33-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"20121123_33-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"20121123_33-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:24:\"20121123_33-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:23:\"20121123_33-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1353671469;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";}}'),(310,278,'_wp_attached_file','2013/06/20121123_34.jpg'),(311,278,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:23:\"2013/06/20121123_34.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"20121123_34-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"20121123_34-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"20121123_34-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"20121123_34-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:24:\"20121123_34-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:23:\"20121123_34-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1353671475;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";}}'),(312,279,'_wp_attached_file','2013/06/20121123_31.jpg'),(313,279,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:23:\"2013/06/20121123_31.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"20121123_31-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"20121123_31-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"20121123_31-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"20121123_31-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:24:\"20121123_31-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:23:\"20121123_31-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1353671445;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";}}'),(314,280,'_wp_attached_file','2013/06/20121123_32.jpg'),(315,280,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:23:\"2013/06/20121123_32.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"20121123_32-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"20121123_32-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"20121123_32-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"20121123_32-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:24:\"20121123_32-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:23:\"20121123_32-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:5.5999999999999996447286321199499070644378662109375;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1353671455;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";}}'),(316,281,'_wp_attached_file','2013/06/20121123_30.jpg'),(317,281,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:23:\"2013/06/20121123_30.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"20121123_30-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"20121123_30-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"20121123_30-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"20121123_30-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:24:\"20121123_30-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:23:\"20121123_30-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1353671435;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";}}'),(318,282,'_wp_attached_file','2013/06/20121123_25.jpg'),(319,282,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:23:\"2013/06/20121123_25.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"20121123_25-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"20121123_25-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"20121123_25-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"20121123_25-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:24:\"20121123_25-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:23:\"20121123_25-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1353671624;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:15:\"0.0166666666667\";s:5:\"title\";s:0:\"\";}}'),(320,283,'_wp_attached_file','2013/06/20121123_24.jpg'),(321,283,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:23:\"2013/06/20121123_24.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"20121123_24-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"20121123_24-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"20121123_24-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"20121123_24-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:24:\"20121123_24-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:23:\"20121123_24-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1353671613;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";}}'),(322,267,'_edit_lock','1371678235:1'),(323,282,'_edit_lock','1371678288:1'),(324,281,'_edit_lock','1371678306:1'),(325,280,'_edit_lock','1371678318:1'),(326,271,'_edit_lock','1371678335:1'),(327,284,'_wp_attached_file','2013/06/20121123_241.jpg'),(328,284,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:24:\"2013/06/20121123_241.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"20121123_241-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"20121123_241-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"20121123_241-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:25:\"20121123_241-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:25:\"20121123_241-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:24:\"20121123_241-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1353671613;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";}}'),(329,284,'_edit_lock','1371678803:1'),(330,285,'_wp_attached_file','2013/06/20121123_18.jpg'),(331,285,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:23:\"2013/06/20121123_18.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"20121123_18-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"20121123_18-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"20121123_18-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"20121123_18-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:24:\"20121123_18-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:23:\"20121123_18-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1353671554;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:4:\"0.02\";s:5:\"title\";s:0:\"\";}}'),(332,285,'_edit_lock','1371678811:1'),(333,286,'_wp_attached_file','2013/06/food1.jpg'),(334,286,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:288;s:4:\"file\";s:17:\"2013/06/food1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"food1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"food1-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"food1-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:18:\"food1-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:17:\"food1-500x144.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(335,287,'_wp_attached_file','2013/06/food7.jpg'),(336,287,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:288;s:4:\"file\";s:17:\"2013/06/food7.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"food7-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"food7-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:18:\"food7-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:18:\"food7-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:17:\"food7-500x144.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:144;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(383,379,'_wp_attachment_is_custom_background','twentyeleven'),(398,397,'_menu_item_url',''),(391,397,'_menu_item_type','post_type'),(392,397,'_menu_item_menu_item_parent','0'),(393,397,'_menu_item_object_id','2'),(394,397,'_menu_item_object','page'),(395,397,'_menu_item_target',''),(396,397,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(397,397,'_menu_item_xfn',''),(369,346,'_edit_lock','1684933327:3'),(370,346,'_wp_page_template','default'),(371,352,'_edit_last','1'),(372,352,'_edit_lock','1684934330:3'),(373,352,'_wp_page_template','default'),(374,356,'_edit_last','1'),(375,356,'_edit_lock','1684932934:3'),(376,356,'_wp_page_template','default'),(368,346,'_edit_last','1'),(345,290,'_wp_attached_file','2013/06/IMG_4135.jpg'),(346,290,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2592;s:6:\"height\";i:1456;s:4:\"file\";s:20:\"2013/06/IMG_4135.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_4135-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_4135-300x168.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_4135-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:21:\"IMG_4135-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:21:\"IMG_4135-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:20:\"IMG_4135-500x280.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:280;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";d:2.600000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon PowerShot A530\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1371577679;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"5.8\";s:3:\"iso\";i:0;s:13:\"shutter_speed\";s:4:\"0.05\";s:5:\"title\";s:0:\"\";}}'),(347,290,'_edit_lock','1371680900:1'),(367,295,'_wp_attachment_is_custom_background','twentyeleven'),(409,399,'_menu_item_type','post_type'),(410,399,'_menu_item_menu_item_parent','0'),(411,399,'_menu_item_object_id','6'),(412,399,'_menu_item_object','page'),(413,399,'_menu_item_target',''),(414,399,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(415,399,'_menu_item_xfn',''),(416,399,'_menu_item_url',''),(418,400,'_menu_item_type','post_type'),(419,400,'_menu_item_menu_item_parent','0'),(420,400,'_menu_item_object_id','33'),(421,400,'_menu_item_object','page'),(422,400,'_menu_item_target',''),(423,400,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(424,400,'_menu_item_xfn',''),(425,400,'_menu_item_url',''),(427,401,'_menu_item_type','post_type'),(428,401,'_menu_item_menu_item_parent','0'),(429,401,'_menu_item_object_id','25'),(430,401,'_menu_item_object','page'),(431,401,'_menu_item_target',''),(432,401,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(433,401,'_menu_item_xfn',''),(434,401,'_menu_item_url',''),(436,402,'_menu_item_type','post_type'),(437,402,'_menu_item_menu_item_parent','0'),(438,402,'_menu_item_object_id','35'),(439,402,'_menu_item_object','page'),(440,402,'_menu_item_target',''),(441,402,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(442,402,'_menu_item_xfn',''),(443,402,'_menu_item_url',''),(445,403,'_menu_item_type','post_type'),(446,403,'_menu_item_menu_item_parent','0'),(447,403,'_menu_item_object_id','39'),(448,403,'_menu_item_object','page'),(449,403,'_menu_item_target',''),(450,403,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(451,403,'_menu_item_xfn',''),(452,403,'_menu_item_url',''),(454,404,'_menu_item_type','post_type'),(455,404,'_menu_item_menu_item_parent','0'),(456,404,'_menu_item_object_id','9'),(457,404,'_menu_item_object','page'),(458,404,'_menu_item_target',''),(459,404,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(460,404,'_menu_item_xfn',''),(461,404,'_menu_item_url',''),(463,405,'_menu_item_type','post_type'),(464,405,'_menu_item_menu_item_parent','0'),(465,405,'_menu_item_object_id','190'),(466,405,'_menu_item_object','page'),(467,405,'_menu_item_target',''),(468,405,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(469,405,'_menu_item_xfn',''),(470,405,'_menu_item_url',''),(472,406,'_menu_item_type','post_type'),(473,406,'_menu_item_menu_item_parent','0'),(474,406,'_menu_item_object_id','12'),(475,406,'_menu_item_object','page'),(476,406,'_menu_item_target',''),(477,406,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(478,406,'_menu_item_xfn',''),(479,406,'_menu_item_url',''),(481,407,'_menu_item_type','post_type'),(482,407,'_menu_item_menu_item_parent','0'),(483,407,'_menu_item_object_id','31'),(484,407,'_menu_item_object','page'),(485,407,'_menu_item_target',''),(486,407,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(487,407,'_menu_item_xfn',''),(488,407,'_menu_item_url',''),(490,408,'_menu_item_type','post_type'),(491,408,'_menu_item_menu_item_parent','0'),(492,408,'_menu_item_object_id','79'),(493,408,'_menu_item_object','page'),(494,408,'_menu_item_target',''),(495,408,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(496,408,'_menu_item_xfn',''),(497,408,'_menu_item_url',''),(1001,491,'_wp_page_template','default'),(1000,491,'_edit_lock','1422839122:1'),(999,491,'_edit_last','1'),(998,489,'_wp_page_template','default'),(996,489,'_edit_last','1'),(997,489,'_edit_lock','1684897290:3'),(520,413,'_menu_item_type','post_type'),(521,413,'_menu_item_menu_item_parent','405'),(522,413,'_menu_item_object_id','213'),(523,413,'_menu_item_object','page'),(524,413,'_menu_item_target',''),(525,413,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(526,413,'_menu_item_xfn',''),(527,413,'_menu_item_url',''),(529,414,'_menu_item_type','post_type'),(530,414,'_menu_item_menu_item_parent','405'),(531,414,'_menu_item_object_id','211'),(532,414,'_menu_item_object','page'),(533,414,'_menu_item_target',''),(534,414,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(535,414,'_menu_item_xfn',''),(536,414,'_menu_item_url',''),(598,421,'_menu_item_xfn',''),(538,415,'_menu_item_type','post_type'),(539,415,'_menu_item_menu_item_parent','405'),(540,415,'_menu_item_object_id','209'),(541,415,'_menu_item_object','page'),(542,415,'_menu_item_target',''),(543,415,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(544,415,'_menu_item_xfn',''),(545,415,'_menu_item_url',''),(597,421,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(547,416,'_menu_item_type','post_type'),(548,416,'_menu_item_menu_item_parent','405'),(549,416,'_menu_item_object_id','204'),(550,416,'_menu_item_object','page'),(551,416,'_menu_item_target',''),(552,416,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(553,416,'_menu_item_xfn',''),(554,416,'_menu_item_url',''),(595,421,'_menu_item_object','page'),(556,417,'_menu_item_type','post_type'),(557,417,'_menu_item_menu_item_parent','405'),(558,417,'_menu_item_object_id','202'),(559,417,'_menu_item_object','page'),(560,417,'_menu_item_target',''),(561,417,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(562,417,'_menu_item_xfn',''),(563,417,'_menu_item_url',''),(596,421,'_menu_item_target',''),(565,418,'_menu_item_type','post_type'),(566,418,'_menu_item_menu_item_parent','405'),(567,418,'_menu_item_object_id','200'),(568,418,'_menu_item_object','page'),(569,418,'_menu_item_target',''),(570,418,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(571,418,'_menu_item_xfn',''),(572,418,'_menu_item_url',''),(594,421,'_menu_item_object_id','53'),(574,419,'_menu_item_type','post_type'),(575,419,'_menu_item_menu_item_parent','405'),(576,419,'_menu_item_object_id','194'),(577,419,'_menu_item_object','page'),(578,419,'_menu_item_target',''),(579,419,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(580,419,'_menu_item_xfn',''),(581,419,'_menu_item_url',''),(593,421,'_menu_item_menu_item_parent','403'),(583,420,'_menu_item_type','post_type'),(584,420,'_menu_item_menu_item_parent','405'),(585,420,'_menu_item_object_id','192'),(586,420,'_menu_item_object','page'),(587,420,'_menu_item_target',''),(588,420,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(589,420,'_menu_item_xfn',''),(590,420,'_menu_item_url',''),(592,421,'_menu_item_type','post_type'),(599,421,'_menu_item_url',''),(918,460,'_menu_item_object_id','61'),(601,422,'_menu_item_type','post_type'),(602,422,'_menu_item_menu_item_parent','403'),(603,422,'_menu_item_object_id','59'),(604,422,'_menu_item_object','page'),(605,422,'_menu_item_target',''),(606,422,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(607,422,'_menu_item_xfn',''),(608,422,'_menu_item_url',''),(887,456,'_menu_item_url',''),(610,423,'_menu_item_type','post_type'),(611,423,'_menu_item_menu_item_parent','403'),(612,423,'_menu_item_object_id','55'),(613,423,'_menu_item_object','page'),(614,423,'_menu_item_target',''),(615,423,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(616,423,'_menu_item_xfn',''),(617,423,'_menu_item_url',''),(886,456,'_menu_item_xfn',''),(619,424,'_menu_item_type','post_type'),(620,424,'_menu_item_menu_item_parent','403'),(621,424,'_menu_item_object_id','57'),(622,424,'_menu_item_object','page'),(623,424,'_menu_item_target',''),(624,424,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(625,424,'_menu_item_xfn',''),(626,424,'_menu_item_url',''),(628,425,'_menu_item_type','post_type'),(629,425,'_menu_item_menu_item_parent','403'),(630,425,'_menu_item_object_id','48'),(631,425,'_menu_item_object','page'),(632,425,'_menu_item_target',''),(633,425,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(634,425,'_menu_item_xfn',''),(635,425,'_menu_item_url',''),(885,456,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(637,426,'_menu_item_type','post_type'),(638,426,'_menu_item_menu_item_parent','403'),(639,426,'_menu_item_object_id','65'),(640,426,'_menu_item_object','page'),(641,426,'_menu_item_target',''),(642,426,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(643,426,'_menu_item_xfn',''),(644,426,'_menu_item_url',''),(884,456,'_menu_item_target',''),(646,427,'_menu_item_type','post_type'),(647,427,'_menu_item_menu_item_parent','403'),(648,427,'_menu_item_object_id','74'),(649,427,'_menu_item_object','page'),(650,427,'_menu_item_target',''),(651,427,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(652,427,'_menu_item_xfn',''),(653,427,'_menu_item_url',''),(883,456,'_menu_item_object','page'),(655,428,'_menu_item_type','post_type'),(656,428,'_menu_item_menu_item_parent','403'),(657,428,'_menu_item_object_id','42'),(658,428,'_menu_item_object','page'),(659,428,'_menu_item_target',''),(660,428,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(661,428,'_menu_item_xfn',''),(662,428,'_menu_item_url',''),(882,456,'_menu_item_object_id','352'),(664,429,'_menu_item_type','post_type'),(665,429,'_menu_item_menu_item_parent','403'),(666,429,'_menu_item_object_id','45'),(667,429,'_menu_item_object','page'),(668,429,'_menu_item_target',''),(669,429,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(670,429,'_menu_item_xfn',''),(671,429,'_menu_item_url',''),(881,456,'_menu_item_menu_item_parent','408'),(673,430,'_menu_item_type','post_type'),(674,430,'_menu_item_menu_item_parent','403'),(675,430,'_menu_item_object_id','72'),(676,430,'_menu_item_object','page'),(677,430,'_menu_item_target',''),(678,430,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(679,430,'_menu_item_xfn',''),(680,430,'_menu_item_url',''),(880,456,'_menu_item_type','post_type'),(682,431,'_menu_item_type','post_type'),(683,431,'_menu_item_menu_item_parent','403'),(684,431,'_menu_item_object_id','76'),(685,431,'_menu_item_object','page'),(686,431,'_menu_item_target',''),(687,431,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(688,431,'_menu_item_xfn',''),(689,431,'_menu_item_url',''),(919,460,'_menu_item_object','page'),(691,432,'_menu_item_type','post_type'),(692,432,'_menu_item_menu_item_parent','408'),(693,432,'_menu_item_object_id','177'),(694,432,'_menu_item_object','page'),(695,432,'_menu_item_target',''),(696,432,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(697,432,'_menu_item_xfn',''),(698,432,'_menu_item_url',''),(878,455,'_menu_item_url',''),(700,433,'_menu_item_type','post_type'),(701,433,'_menu_item_menu_item_parent','408'),(702,433,'_menu_item_object_id','179'),(703,433,'_menu_item_object','page'),(704,433,'_menu_item_target',''),(705,433,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(706,433,'_menu_item_xfn',''),(707,433,'_menu_item_url',''),(877,455,'_menu_item_xfn',''),(709,434,'_menu_item_type','post_type'),(710,434,'_menu_item_menu_item_parent','408'),(711,434,'_menu_item_object_id','156'),(712,434,'_menu_item_object','page'),(713,434,'_menu_item_target',''),(714,434,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(715,434,'_menu_item_xfn',''),(716,434,'_menu_item_url',''),(718,435,'_menu_item_type','post_type'),(719,435,'_menu_item_menu_item_parent','408'),(720,435,'_menu_item_object_id','185'),(721,435,'_menu_item_object','page'),(722,435,'_menu_item_target',''),(723,435,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(724,435,'_menu_item_xfn',''),(725,435,'_menu_item_url',''),(876,455,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(727,436,'_menu_item_type','post_type'),(728,436,'_menu_item_menu_item_parent','408'),(729,436,'_menu_item_object_id','89'),(730,436,'_menu_item_object','page'),(731,436,'_menu_item_target',''),(732,436,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(733,436,'_menu_item_xfn',''),(734,436,'_menu_item_url',''),(875,455,'_menu_item_target',''),(736,437,'_menu_item_type','post_type'),(737,437,'_menu_item_menu_item_parent','408'),(738,437,'_menu_item_object_id','137'),(739,437,'_menu_item_object','page'),(740,437,'_menu_item_target',''),(741,437,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(742,437,'_menu_item_xfn',''),(743,437,'_menu_item_url',''),(874,455,'_menu_item_object','page'),(745,438,'_menu_item_type','post_type'),(746,438,'_menu_item_menu_item_parent','408'),(747,438,'_menu_item_object_id','150'),(748,438,'_menu_item_object','page'),(749,438,'_menu_item_target',''),(750,438,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(751,438,'_menu_item_xfn',''),(752,438,'_menu_item_url',''),(873,455,'_menu_item_object_id','145'),(754,439,'_menu_item_type','post_type'),(755,439,'_menu_item_menu_item_parent','408'),(756,439,'_menu_item_object_id','183'),(757,439,'_menu_item_object','page'),(758,439,'_menu_item_target',''),(759,439,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(760,439,'_menu_item_xfn',''),(761,439,'_menu_item_url',''),(872,455,'_menu_item_menu_item_parent','408'),(763,440,'_menu_item_type','post_type'),(764,440,'_menu_item_menu_item_parent','408'),(765,440,'_menu_item_object_id','154'),(766,440,'_menu_item_object','page'),(767,440,'_menu_item_target',''),(768,440,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(769,440,'_menu_item_xfn',''),(770,440,'_menu_item_url',''),(871,455,'_menu_item_type','post_type'),(772,441,'_menu_item_type','post_type'),(773,441,'_menu_item_menu_item_parent','408'),(774,441,'_menu_item_object_id','175'),(775,441,'_menu_item_object','page'),(776,441,'_menu_item_target',''),(777,441,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(778,441,'_menu_item_xfn',''),(779,441,'_menu_item_url',''),(920,460,'_menu_item_target',''),(781,442,'_menu_item_type','post_type'),(782,442,'_menu_item_menu_item_parent','408'),(783,442,'_menu_item_object_id','356'),(784,442,'_menu_item_object','page'),(785,442,'_menu_item_target',''),(786,442,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(787,442,'_menu_item_xfn',''),(788,442,'_menu_item_url',''),(869,454,'_menu_item_url',''),(790,443,'_menu_item_type','post_type'),(791,443,'_menu_item_menu_item_parent','408'),(792,443,'_menu_item_object_id','147'),(793,443,'_menu_item_object','page'),(794,443,'_menu_item_target',''),(795,443,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(796,443,'_menu_item_xfn',''),(797,443,'_menu_item_url',''),(868,454,'_menu_item_xfn',''),(799,444,'_menu_item_type','post_type'),(800,444,'_menu_item_menu_item_parent','408'),(801,444,'_menu_item_object_id','160'),(802,444,'_menu_item_object','page'),(803,444,'_menu_item_target',''),(804,444,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(805,444,'_menu_item_xfn',''),(806,444,'_menu_item_url',''),(808,445,'_menu_item_type','post_type'),(809,445,'_menu_item_menu_item_parent','408'),(810,445,'_menu_item_object_id','139'),(811,445,'_menu_item_object','page'),(812,445,'_menu_item_target',''),(813,445,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(814,445,'_menu_item_xfn',''),(815,445,'_menu_item_url',''),(867,454,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(817,446,'_menu_item_type','post_type'),(818,446,'_menu_item_menu_item_parent','408'),(819,446,'_menu_item_object_id','187'),(820,446,'_menu_item_object','page'),(821,446,'_menu_item_target',''),(822,446,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(823,446,'_menu_item_xfn',''),(824,446,'_menu_item_url',''),(866,454,'_menu_item_target',''),(826,447,'_menu_item_type','post_type'),(827,447,'_menu_item_menu_item_parent','408'),(828,447,'_menu_item_object_id','152'),(829,447,'_menu_item_object','page'),(830,447,'_menu_item_target',''),(831,447,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(832,447,'_menu_item_xfn',''),(833,447,'_menu_item_url',''),(865,454,'_menu_item_object','page'),(835,448,'_menu_item_type','post_type'),(836,448,'_menu_item_menu_item_parent','408'),(837,448,'_menu_item_object_id','346'),(838,448,'_menu_item_object','page'),(839,448,'_menu_item_target',''),(840,448,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(841,448,'_menu_item_xfn',''),(842,448,'_menu_item_url',''),(864,454,'_menu_item_object_id','133'),(844,449,'_menu_item_type','post_type'),(845,449,'_menu_item_menu_item_parent','408'),(846,449,'_menu_item_object_id','135'),(847,449,'_menu_item_object','page'),(848,449,'_menu_item_target',''),(849,449,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(850,449,'_menu_item_xfn',''),(851,449,'_menu_item_url',''),(863,454,'_menu_item_menu_item_parent','408'),(853,450,'_menu_item_type','post_type'),(854,450,'_menu_item_menu_item_parent','408'),(855,450,'_menu_item_object_id','162'),(856,450,'_menu_item_object','page'),(857,450,'_menu_item_target',''),(858,450,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(859,450,'_menu_item_xfn',''),(860,450,'_menu_item_url',''),(862,454,'_menu_item_type','post_type'),(898,458,'_menu_item_type','post_type'),(899,458,'_menu_item_menu_item_parent','408'),(900,458,'_menu_item_object_id','171'),(901,458,'_menu_item_object','page'),(902,458,'_menu_item_target',''),(903,458,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(904,458,'_menu_item_xfn',''),(905,458,'_menu_item_url',''),(917,460,'_menu_item_menu_item_parent','403'),(907,459,'_menu_item_type','post_type'),(908,459,'_menu_item_menu_item_parent','408'),(909,459,'_menu_item_object_id','173'),(910,459,'_menu_item_object','page'),(911,459,'_menu_item_target',''),(912,459,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(913,459,'_menu_item_xfn',''),(914,459,'_menu_item_url',''),(916,460,'_menu_item_type','post_type'),(921,460,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(922,460,'_menu_item_xfn',''),(923,460,'_menu_item_url',''),(952,464,'_edit_last','1'),(925,461,'_menu_item_type','post_type'),(926,461,'_menu_item_menu_item_parent','403'),(927,461,'_menu_item_object_id','63'),(928,461,'_menu_item_object','page'),(929,461,'_menu_item_target',''),(930,461,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(931,461,'_menu_item_xfn',''),(932,461,'_menu_item_url',''),(953,464,'_edit_lock','1684899326:3'),(934,462,'_menu_item_type','post_type'),(935,462,'_menu_item_menu_item_parent','403'),(936,462,'_menu_item_object_id','67'),(937,462,'_menu_item_object','page'),(938,462,'_menu_item_target',''),(939,462,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(940,462,'_menu_item_xfn',''),(941,462,'_menu_item_url',''),(954,464,'_wp_page_template','default'),(943,463,'_menu_item_type','post_type'),(944,463,'_menu_item_menu_item_parent','403'),(945,463,'_menu_item_object_id','70'),(946,463,'_menu_item_object','page'),(947,463,'_menu_item_target',''),(948,463,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(949,463,'_menu_item_xfn',''),(950,463,'_menu_item_url',''),(955,466,'_edit_last','1'),(956,466,'_edit_lock','1684933890:3'),(957,466,'_wp_page_template','default'),(958,469,'_menu_item_type','post_type'),(959,469,'_menu_item_menu_item_parent','408'),(960,469,'_menu_item_object_id','464'),(961,469,'_menu_item_object','page'),(962,469,'_menu_item_target',''),(963,469,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(964,469,'_menu_item_xfn',''),(965,469,'_menu_item_url',''),(967,470,'_menu_item_type','post_type'),(968,470,'_menu_item_menu_item_parent','408'),(969,470,'_menu_item_object_id','466'),(970,470,'_menu_item_object','page'),(971,470,'_menu_item_target',''),(972,470,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(973,470,'_menu_item_xfn',''),(974,470,'_menu_item_url',''),(1002,493,'_edit_last','1'),(1003,493,'_edit_lock','1684870607:3'),(1004,493,'_wp_page_template','default'),(1005,508,'_wp_attached_file','2014/10/Patanjali-yoga-welcomes-you.jpg'),(1006,508,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:781;s:6:\"height\";i:703;s:4:\"file\";s:39:\"2014/10/Patanjali-yoga-welcomes-you.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"Patanjali-yoga-welcomes-you-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"Patanjali-yoga-welcomes-you-300x270.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:39:\"Patanjali-yoga-welcomes-you-781x288.jpg\";s:5:\"width\";i:781;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:39:\"Patanjali-yoga-welcomes-you-781x288.jpg\";s:5:\"width\";i:781;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:39:\"Patanjali-yoga-welcomes-you-333x300.jpg\";s:5:\"width\";i:333;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1007,509,'_wp_attached_file','2014/10/Patanjali-yoga-welcomes-you1.jpg'),(1008,509,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:781;s:6:\"height\";i:703;s:4:\"file\";s:40:\"2014/10/Patanjali-yoga-welcomes-you1.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Patanjali-yoga-welcomes-you1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Patanjali-yoga-welcomes-you1-300x270.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:40:\"Patanjali-yoga-welcomes-you1-781x288.jpg\";s:5:\"width\";i:781;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:40:\"Patanjali-yoga-welcomes-you1-781x288.jpg\";s:5:\"width\";i:781;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:40:\"Patanjali-yoga-welcomes-you1-333x300.jpg\";s:5:\"width\";i:333;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:10:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";}}'),(1009,522,'_wp_attached_file','2013/05/map.png'),(1010,522,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1597;s:6:\"height\";i:862;s:4:\"file\";s:15:\"2013/05/map.png\";s:5:\"sizes\";a:7:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"map-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"map-300x162.png\";s:5:\"width\";i:300;s:6:\"height\";i:162;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:15:\"map-768x415.png\";s:5:\"width\";i:768;s:6:\"height\";i:415;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"map-1024x553.png\";s:5:\"width\";i:1024;s:6:\"height\";i:553;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:16:\"map-1000x288.png\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:16:\"map-1000x288.png\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:15:\"map-500x270.png\";s:5:\"width\";i:500;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{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:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a: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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_posts` (
  `ID` bigint unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint 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 CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_title` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_excerpt` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `to_ping` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `pinged` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci 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` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_parent` bigint unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `menu_order` int NOT NULL DEFAULT '0',
  `post_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_count` bigint NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`),
  KEY `post_name` (`post_name`(191))
) ENGINE=MyISAM AUTO_INCREMENT=536 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!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` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES (1,1,'2013-05-08 17:12:14','2013-05-08 17:12:14','Welcome to <strong>Divya Yoga</strong> Monteregie.\r\n\r\nContact us\r\n\r\nPhone # 450-468-7539\r\nFax # 450-468-5724\r\nEmail : founder@vsffoundation.ca','Welcome to Divya Yoga','','publish','open','open','','hello-world','','','2013-07-28 14:18:32','2013-07-28 18:18:32','',0,'http://divyayogamonteregie.org/web/?p=1',0,'post','',0),(2,1,'2013-05-08 17:12:14','2013-05-08 17:12:14','<p style=\"text-align: justify;\">To make basic yoga practice easily accessible to everyone without charge.</p>\r\n<p style=\"text-align: justify;\">Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p>\r\n<p style=\"text-align: justify;\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p>\r\n<p style=\"text-align: justify;\">After yoga super food i. e. grapes and banana are available for Yogies.</p>\r\n<p style=\"text-align: justify;\">Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>','Our mission','','publish','open','open','','sample-page','','','2013-07-28 14:17:12','2013-07-28 18:17:12','',0,'http://divyayogamonteregie.org/web/?page_id=2',0,'page','',0),(5,1,'2013-05-08 17:12:14','2013-05-08 17:12:14','This is an example page. It\'s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:\n\n<blockquote>Hi there! I\'m a bike messenger by day, aspiring actor by night, and this is my blog. I live in Los Angeles, have a great dog named Jack, and I like pi&#241;a coladas. (And gettin\' caught in the rain.)</blockquote>\n\n...or something like this:\n\n<blockquote>The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.</blockquote>\n\nAs a new WordPress user, you should go to <a href=\"http://divyayogamonteregie.org/web/wp-admin/\">your dashboard</a> to delete this page and create new pages for your content. Have fun!','Sample Page','','inherit','closed','closed','','2-revision-v1','','','2013-05-08 17:12:14','2013-05-08 17:12:14','',2,'http://divyayogamonteregie.org/web/?p=5',0,'revision','',0),(6,1,'2013-05-08 21:19:24','2013-05-08 21:19:24','<p style=\"text-align: justify;\"><strong>Vinesh Saxena</strong> is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p>\r\n<p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p>\r\n<p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p>\r\n<p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>\r\n<p style=\"text-align: justify;\"><strong>Meera Trivedi</strong> is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p>\r\n<p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>','Instructors','','publish','closed','closed','','instructors','','','2013-11-02 19:05:11','2013-11-02 23:05:11','',0,'http://divyayogamonteregie.org/web/?page_id=6',0,'page','',0),(7,1,'2013-05-08 21:18:54','2013-05-08 21:18:54','<strong>Vinesh Saxena</strong> is yoga instructor trained by Patanjali yoga peeth. He has been practicing yoga since his childhood. Mr. Saxena is “self made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarship while he was student. He holds a Masters degree in Engineering and Masters in business administration along with an Accounting designation. He has worked a long time in engineering and has taught on part time basis in Concordia and McGill universities.\n\nHe retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his web site of foundation he also describes “Seven simple principals of life” if people follow these principals they can gain control of their life, be happy and self sufficient beings.\n\nAs a second objective of the foundation he also challenges to find answers to unanswered questions. i.e. “is there a soul” “Is there life after death”  “Does God exist”\n\nWith continuing theme of “help the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people.\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\nMeera Trivedi is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for ChamblyAcademy.\n\nShe believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.\n\n&nbsp;','Instructors','','inherit','closed','closed','','6-revision-v1','','','2013-05-08 21:18:54','2013-05-08 21:18:54','',6,'http://divyayogamonteregie.org/web/?p=7',0,'revision','',0),(533,3,'2023-05-24 09:01:51','2023-05-24 13:01:51','Once upon a time there was a rich king who had four wives. He loved the fourth wife the most and adorned her with rich robes and treated her to the finest delicacies. He gave her nothing but the best.\n\nHe also loved the third wife very much and showed her off to neighboring kingdoms. However, he feared that one day she would leave him for another.\n\nHe also loved his second wife. She was his confidante and she was always kind, considerate and patient with him. Whenever the king faced a problem, he could confide in her to help him get through the difficult times.\n\nThe king\'s first wife was a very loyal partner and had made great contributions in maintaining his wealth and kingdom. However, he did not love the first wife but although she loved him deeply, he hardly took notice of her.\n\nOne day, the King fell ill and he knew that his time was short. Thus, he asked the 4th wife, \"I have loved you the most endowed you with the finest clothing and showered great care over you. Now that I\'m dying, will you follow me and keep me company?\"\n\n\"No way!\" replied the 4th wife and she walked away without another word.\n\nHer answer cut like a sharp knife right into his heart.\n\nThe sad king asked the third wife, \"I have loved you all my life. Now that I\'m dying, will you follow me and keep me company?\"\n\n\"No!\" replied the 3rd wife. \"Life is too good! When you die, I am going to remarry!\"\n\nHis heart sank and turned cold.\n\nHe then asked the 2nd wife, \"I have always turned to you for help and you\'ve always been there for me. When I die, will you follow me and keep me company?\"\n\n\"I\'m sorry, I can\'t help you out of this time!\" replied the 2nd wife. \"The very most, I can only send you to your grave.\"\n\nHer answer came like a bolt of thunder and the King was devastated.\n\nThen a voice called out: \"I\'ll leave with you and follow you no matter where you go.\"\n\nThe king looked up and there was his first wife. She was so skinny, because she suffered from malnutrition. Greatly grieved the King said, \"I should have taken better care of you when I had a chance!\"\n\nOur 4th wife is our BODY. No matter how much time and effort we lavish in making it look great, it\'ll leave us when we die.\n\nOur 3rd wife is our POSSESSIONS, STATUS and WEALTH. When we die, it will all go to others.\n\nOur 2nd wife is our FAMILY and friends. No matter how much they have been there for us, the furthest they can stay by us is up to the grave.\n\nOur 1st wife is our SOUL, often neglected in pursuit of wealth, power and pleasures of the ego. However, our Soul is the only thing that will follow us wherever we go. So cultivate, strengthen and cherish it now! It is your greatest gift to offer the world.','The king with four wives','','inherit','closed','closed','','187-autosave-v1','','','2023-05-24 09:01:51','2023-05-24 13:01:51','',187,'https://divyayogamonteregie.org/web/?p=533',0,'revision','',0),(9,1,'2013-05-08 21:36:00','2013-05-08 21:36:00','<div><strong>Each Saturday 9h-11h all year around\r\n</strong></div>\r\n<div>675 Rue Green, Saint-Lambert, QC J4P 1V9, Canada</div>\r\n<div>Gym of Chambly Academy</div>\r\n<div><strong> </strong></div>\r\n<div><a href=\"https://www.google.com.do/maps/place/Saint-Lambert+International+High+School/@45.5101813,-73.5036585,17z/data=!4m14!1m7!3m6!1s0x4cc91b291f83dd69:0x541145490f3a73fb!2sSaint-Lambert+International+High+School!8m2!3d45.5099257!4d-73.5045812!16zL20vMDZyX3d5!3m5!1s0x4cc91b291f83dd69:0x541145490f3a73fb!8m2!3d45.5099257!4d-73.5045812!16zL20vMDZyX3d5\" target=\"_blank\" rel=\"attachment wp-att-522\"><img class=\"aligncenter wp-image-522\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/05/map-300x162.png\" alt=\"map\" width=\"675\" height=\"372\" /></a></div>\r\n<strong>and</strong>\r\n\r\n<strong>Wednesday  6:30 to 7:30 Sept-June (when Terry Fox is open)\r\n</strong>\r\n\r\n1648 Langevin, St. Hubert, Quebec J4T 1X7','Schedule & Location','','publish','closed','closed','','schedule-location','','','2022-09-25 13:16:04','2022-09-25 17:16:04','',0,'http://divyayogamonteregie.org/web/?page_id=9',0,'page','',0),(10,1,'2013-05-08 21:32:39','2013-05-08 21:32:39','<strong>Saturday 9-11 pm</strong>\n\nOur location\n\n675 Green, St. Lambert , Quebec J4P1V9\n\n&nbsp;\n\nPut google maps\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<strong>Thursday  6:30 to 7:30</strong>\n\n1648 Langevin, St. Hubert, Quebec J4T 1X7\n\n&nbsp;\n\nPut google maps','Schedule & Location','','inherit','closed','closed','','9-revision-v1','','','2013-05-08 21:32:39','2013-05-08 21:32:39','',9,'http://divyayogamonteregie.org/web/?p=10',0,'revision','',0),(124,1,'2013-05-18 22:40:08','2013-05-19 02:40:08','<strong>Saturday 9-11 pm</strong>\r\n\r\nOur location\r\n\r\n[codepeople-post-map]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Thursday  6:30 to 7:30</strong>\r\n\r\n1648 Langevin, St. Hubert, Quebec J4T 1X7\r\n\r\n&nbsp;\r\n\r\nPut google maps','Schedule & Location','','inherit','closed','closed','','9-revision-v1','','','2013-05-18 22:40:08','2013-05-19 02:40:08','',9,'http://divyayogamonteregie.org/web/?p=124',0,'revision','',0),(125,1,'2013-05-18 22:48:01','2013-05-19 02:48:01','<strong>[codepeople-post-map]Saturday 9-11 pm</strong>\r\n\r\nOur location\r\n\r\n[codepeople-post-map]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Thursday  6:30 to 7:30</strong>\r\n\r\n1648 Langevin, St. Hubert, Quebec J4T 1X7\r\n\r\n&nbsp;\r\n\r\nPut google maps','Schedule & Location','','inherit','closed','closed','','9-revision-v1','','','2013-05-18 22:48:01','2013-05-19 02:48:01','',9,'http://divyayogamonteregie.org/web/?p=125',0,'revision','',0),(532,3,'2023-05-23 23:34:29','2023-05-24 03:34:29','<p style=\"text-align: justify;\"><b>\n</b><b>\n</b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.</p>\n<p style=\"text-align: justify;\">The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.</p>\n<p style=\"text-align: justify;\">Here\'s what you do,\" said the Doctor, \"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\"</p>\n<p style=\"text-align: justify;\">That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \"I\'m about 40 feet away, let\'s see what happens.\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\"</p>\n<p style=\"text-align: justify;\">No response.</p>\n<p style=\"text-align: justify;\">So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \"Honey, what\'s for dinner?\"</p>\n<p style=\"text-align: justify;\">Still no response.</p>\n<p style=\"text-align: justify;\">Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\"</p>\n<p style=\"text-align: justify;\">Again he gets no response.</p>\n<p style=\"text-align: justify;\">So he walks up to the kitchen door, about 10 feet away. \"Honey, what\'s for dinner?\"</p>\n<p style=\"text-align: justify;\">Again there is no response.</p>\n<p style=\"text-align: justify;\">So he walks right up behind her. \"Honey, what\'s for dinner?\"</p>\n<p style=\"text-align: justify;\">\"James, for the FIFTH time I\'ve said, Lima Beans!\"</p>\n<p style=\"text-align: justify;\"><b>The problem may not be with the other person as we always think, could be very much within us!</b></p>','A problem may be me not other','','inherit','closed','closed','','179-autosave-v1','','','2023-05-23 23:34:29','2023-05-24 03:34:29','',179,'https://divyayogamonteregie.org/web/?p=532',0,'revision','',0),(121,1,'2013-05-18 22:26:42','2013-05-19 02:26:42','','IMG_2734','','inherit','closed','closed','','img_2734','','','2013-05-18 22:26:42','2013-05-19 02:26:42','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/05/IMG_2734.jpg',0,'attachment','image/jpeg',0),(122,1,'2013-05-18 22:30:42','2013-05-19 02:30:42','','divya_yoga','','inherit','closed','closed','','divya_yoga','','','2013-05-18 22:30:42','2013-05-19 02:30:42','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/05/divya_yoga.jpg',0,'attachment','image/jpeg',0),(123,1,'2013-05-09 08:35:27','2013-05-09 12:35:27','<strong>Saturday 9-11 pm</strong>\r\n\r\nOur location\r\n\r\n[easy-media med=\"\" align=\"center\"]\r\n\r\n&nbsp;\r\n\r\nPut google maps\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://maps.google.ca/maps/empw?url=https:%2F%2Fmaps.google.ca%2Fmaps%3Ff%3Dq%26source%3Ds_q%26hl%3Den%26geocode%3D%26q%3D675%2BRue%2BGreen,%2BSaint-Lambert,%2BQuebec%2BJ4P1V9%26aq%3D0%26oq%3D675%2BGreen%2B,%2BSt.%2BLambert%2B,%2Bquebec%2BJ4P1V9%26sll%3D49.303974,-84.738438%26sspn%3D16.263009,43.286133%26vpsrc%3D0%26ie%3DUTF8%26hq%3D%26hnear%3D675%2BRue%2BGreen,%2BSaint-Lambert,%2BQu%25C3%25A9bec%2BJ4P%2B1V9%26t%3Dm%26z%3D14%26ll%3D45.509916,-73.504776%26output%3Dembed&amp;hl=en&amp;gl=ca\">Saint Lambert</a>\r\n\r\n&nbsp;\r\n\r\n<strong>Thursday  6:30 to 7:30</strong>\r\n\r\n1648 Langevin, St. Hubert, Quebec J4T 1X7\r\n\r\n&nbsp;\r\n\r\nPut google maps','Schedule & Location','','inherit','closed','closed','','9-revision-v1','','','2013-05-09 08:35:27','2013-05-09 12:35:27','',9,'http://divyayogamonteregie.org/web/?p=123',0,'revision','',0),(12,1,'2013-05-08 22:05:22','2013-05-08 22:05:22','<p style=\"text-align: justify;\">Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle</p>\r\n<p style=\"text-align: justify;\">Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.</p>\r\n<p style=\"text-align: justify;\">If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.</p>\r\n<p style=\"text-align: justify;\">Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.</p>\r\n<p style=\"text-align: justify;\"></p>\r\n<p style=\"text-align: justify;\">Please see below a short description of exercises that we practice every Saturday.</p>\r\n\r\n<ol>\r\n	<li style=\"text-align: justify;\"><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li>\r\n	<li style=\"text-align: justify;\"><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li>\r\n	<li style=\"text-align: justify;\"><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.</li>\r\n	<li style=\"text-align: justify;\"><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li>\r\n	<li style=\"text-align: justify;\"><b>Eyes and neck exercises</b> – we take care of every part of the body.\r\nEyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>     </b>\r\nNeck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.</li>\r\n	<li style=\"text-align: justify;\"><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li>\r\n	<li style=\"text-align: justify;\"><b>6 mudras </b>(positioning of fingers) - are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li>\r\n	<li style=\"text-align: justify;\"><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.\r\nWe do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li>\r\n	<li style=\"text-align: justify;\"><b>Laughter yoga </b>– with Meera - a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.\r\nWe also do <b>Super Brain yoga</b> to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li>\r\n	<li style=\"text-align: justify;\"><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li>\r\n	<li style=\"text-align: justify;\"><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li>\r\n	<li style=\"text-align: justify;\"><b>Mantra</b> – at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li>\r\n</ol>\r\n<p style=\"text-align: center;\"><span style=\"color: #0000ff;\"><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00 </strong></span>\r\n<span style=\"color: #0000ff;\"><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9</strong></span></p>','What we do !','','publish','closed','closed','','what-we-do','','','2013-07-09 20:16:06','2013-07-10 00:16:06','',0,'http://divyayogamonteregie.org/web/?page_id=12',0,'page','',0),(17,1,'2013-05-08 22:24:02','2013-05-08 22:24:02','Every Saturday morning from 9.00 to 11.00 am we practice Divya Yoga- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with positive affirmations, wise stories, motivational poem and our mantra. Yoga is a complete lifestyle\r\n\r\nEvery last Saturday of month we have a guest speaker from 11.00 to 11.30 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is cooking for us amazing Indian food, and if you want to share with us a little plate you are welcome.\r\n\r\nIf it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.\r\n\r\nSubsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.\r\n\r\n&nbsp;\r\n\r\nPlease see below a short description of exercises that we practice every Saturday.\r\n<ol>\r\n	<li><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li>\r\n	<li><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li>\r\n	<li><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, movitated and fulfilling life.</li>\r\n	<li><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li>\r\n	<li><b>Eyes and neck exercises</b> – we take care of every part of the body.\r\nEyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>     </b>\r\nNeck: bend left, right, forward, and backward, rotate clockwise, then      counter clockwise, look to the right and look to the left.</li>\r\n	<li><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li>\r\n	<li><b>6 mudras </b>(positioning of fingers) - are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li>\r\n	<li><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, gingers, arms, hips, knees and feet.\r\nWe do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li>\r\n	<li><b>Laughter yoga </b>– with Meera - a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.\r\nWe also do <b>Super Brain yoga</b> to stimulate brain cells. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li>\r\n	<li><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li>\r\n	<li><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li>\r\n	<li><b>Mantra</b> – at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li>\r\n</ol>','What we do !','','inherit','closed','closed','','12-revision-4','','','2013-05-08 22:24:02','2013-05-08 22:24:02','',12,'http://divyayogamonteregie.org/web/?p=17',0,'revision','',0),(13,1,'2013-05-08 21:58:59','2013-05-08 21:58:59','<b> </b>Every Saturday morning from 9.00 to 11.00 am we practice Divya Yoga- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with positive affirmations, wise stories, motivational poem and our mantra. Yoga is a complete lifestyle\n\n&nbsp;\n\nEvery last Saturday of month we have a guest speaker from 11.00 to 11.30 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is cooking for us amazing Indian food, and if you want to share with us a little plate you are welcome.\n\n&nbsp;\n\nIf it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.\n\nSubsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.\n\n&nbsp;\n\nPlease see below a short description of exercises that we practice every Saturday.\n\n&nbsp;\n<ol>\n	<li><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li>\n	<li><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li>\n	<li><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, movitated and fulfilling life.</li>\n	<li><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li>\n	<li><b>Eyes and neck exercises</b> – we take care of every part of the body.                                  Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>     </b>Neck: bend left, right, forward, and backward, rotate clockwise, then      counter clockwise, look to the right and look to the left.</li>\n	<li><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li>\n	<li><b>6 mudras </b>(positioning of fingers) - are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li>\n	<li><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, gingers, arms, hips, knees and feet.                                                                                          We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li>\n	<li><b>Laughter yoga </b>– with Meera - a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.                                                                           We also do <b>Super Brain yoga</b> to stimulate brain cells. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li>\n	<li><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li>\n	<li><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li>\n	<li><b>Mantra</b> – at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li>\n</ol>','What we do !','','inherit','closed','closed','','12-revision','','','2013-05-08 21:58:59','2013-05-08 21:58:59','',12,'http://divyayogamonteregie.org/web/?p=13',0,'revision','',0),(14,1,'2013-07-09 20:16:10','2013-07-10 00:16:10','<p style=\"text-align: justify;\">Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle</p>\r\n<p style=\"text-align: justify;\">Every last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.</p>\r\n<p style=\"text-align: justify;\">If it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.</p>\r\n<p style=\"text-align: justify;\">Subsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.</p>\r\n<p style=\"text-align: justify;\">Please see below a short description of exercises that we practice every Saturday.</p>\r\n\r\n<ol>\r\n	<li style=\"text-align: justify;\"><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li>\r\n	<li style=\"text-align: justify;\"><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li>\r\n	<li style=\"text-align: justify;\"><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.</li>\r\n	<li style=\"text-align: justify;\"><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li>\r\n	<li style=\"text-align: justify;\"><b>Eyes and neck exercises</b> – we take care of every part of the body.\r\nEyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>     </b>\r\nNeck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.</li>\r\n	<li style=\"text-align: justify;\"><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li>\r\n	<li style=\"text-align: justify;\"><b>6 mudras </b>(positioning of fingers) - are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li>\r\n	<li style=\"text-align: justify;\"><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.\r\nWe do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li>\r\n	<li style=\"text-align: justify;\"><b>Laughter yoga </b>– with Meera - a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.\r\nWe also do <b>Super Brain yoga</b> to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li>\r\n	<li style=\"text-align: justify;\"><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li>\r\n	<li style=\"text-align: justify;\"><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li>\r\n	<li style=\"text-align: justify;\"><b>Mantra</b> – at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li>\r\n</ol>\r\n<p style=\"text-align: center;\"><span style=\"color: #0000ff;\"><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00 </strong></span>\r\n<span style=\"color: #0000ff;\"><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9</strong></span></p>','What we do !','','inherit','closed','closed','','12-autosave','','','2013-07-09 20:16:10','2013-07-10 00:16:10','',12,'http://divyayogamonteregie.org/web/?p=14',0,'revision','',0),(16,1,'2013-05-08 22:21:59','2013-05-08 22:21:59','Every Saturday morning from 9.00 to 11.00 am we practice Divya Yoga- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with positive affirmations, wise stories, motivational poem and our mantra. Yoga is a complete lifestyle\r\n\r\nEvery last Saturday of month we have a guest speaker from 11.00 to 11.30 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is cooking for us amazing Indian food, and if you want to share with us a little plate you are welcome.\r\n\r\nIf it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.\r\n\r\nSubsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.\r\n\r\n&nbsp;\r\n\r\nPlease see below a short description of exercises that we practice every Saturday.\r\n<ol>\r\n	<li><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li>\r\n	<li><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li>\r\n	<li><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, movitated and fulfilling life.</li>\r\n	<li><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li>\r\n	<li><b>Eyes and neck exercises</b> – we take care of every part of the body.\r\nEyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>     </b>\r\nNeck: bend left, right, forward, and backward, rotate clockwise, then      counter clockwise, look to the right and look to the left.</li>\r\n	<li><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li>\r\n	<li><b>6 mudras </b>(positioning of fingers) - are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li>\r\n	<li><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, gingers, arms, hips, knees and feet.                                                                                          We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li>\r\n	<li><b>Laughter yoga </b>– with Meera - a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.                                                                           We also do <b>Super Brain yoga</b> to stimulate brain cells. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li>\r\n	<li><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li>\r\n	<li><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li>\r\n	<li><b>Mantra</b> – at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li>\r\n</ol>','What we do !','','inherit','closed','closed','','12-revision-3','','','2013-05-08 22:21:59','2013-05-08 22:21:59','',12,'http://divyayogamonteregie.org/web/?p=16',0,'revision','',0),(15,1,'2013-05-08 22:05:22','2013-05-08 22:05:22','<b> </b>Every Saturday morning from 9.00 to 11.00 am we practice Divya Yoga- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with positive affirmations, wise stories, motivational poem and our mantra. Yoga is a complete lifestyle\r\n\r\n&nbsp;\r\n\r\nEvery last Saturday of month we have a guest speaker from 11.00 to 11.30 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is cooking for us amazing Indian food, and if you want to share with us a little plate you are welcome.\r\n\r\n&nbsp;\r\n\r\nIf it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.\r\n\r\nSubsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.\r\n\r\n&nbsp;\r\n\r\nPlease see below a short description of exercises that we practice every Saturday.\r\n\r\n&nbsp;\r\n<ol>\r\n	<li><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li>\r\n	<li><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li>\r\n	<li><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, movitated and fulfilling life.</li>\r\n	<li><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li>\r\n	<li><b>Eyes and neck exercises</b> – we take care of every part of the body.                                  Eyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>     </b>Neck: bend left, right, forward, and backward, rotate clockwise, then      counter clockwise, look to the right and look to the left.</li>\r\n	<li><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li>\r\n	<li><b>6 mudras </b>(positioning of fingers) - are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li>\r\n	<li><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, gingers, arms, hips, knees and feet.                                                                                          We do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li>\r\n	<li><b>Laughter yoga </b>– with Meera - a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.                                                                           We also do <b>Super Brain yoga</b> to stimulate brain cells. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li>\r\n	<li><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li>\r\n	<li><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li>\r\n	<li><b>Mantra</b> – at the end we repeat and acknowledge our mantra –<strong> IF IT IS TO BE IT IS UP TO ME.</strong></li>\r\n</ol>','What we do !','','inherit','closed','closed','','12-revision-2','','','2013-05-08 22:05:22','2013-05-08 22:05:22','',12,'http://divyayogamonteregie.org/web/?p=15',0,'revision','',0),(18,1,'2013-07-28 14:06:44','2013-07-28 18:06:44','Welcome to <strong>Divya Yoga</strong> Monteregie.\r\n\r\nContact us\r\n\r\nPhone # 450-468-7539\r\nFax # 450-468-5724\r\nEmail : founder@vsffoundation.ca','Welcome to Divya Yoga','','inherit','closed','closed','','1-autosave','','','2013-07-28 14:06:44','2013-07-28 18:06:44','',1,'http://divyayogamonteregie.org/web/?p=18',0,'revision','',0),(19,1,'2013-05-08 17:12:14','2013-05-08 17:12:14','Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!','Hello world!','','inherit','closed','closed','','1-revision','','','2013-05-08 17:12:14','2013-05-08 17:12:14','',1,'http://divyayogamonteregie.org/web/?p=19',0,'revision','',0),(20,1,'2013-05-08 22:42:50','2013-05-08 22:42:50','Welcome to <strong>Divya Yoga</strong> Monteregie.\r\n\r\nContact us\r\n\r\nPhone # 450-468-7539\r\nFax # 450-468-5724\r\nEmail : founder@vsffoundation.ca','Hello world!','','inherit','closed','closed','','1-revision-2','','','2013-05-08 22:42:50','2013-05-08 22:42:50','',1,'http://divyayogamonteregie.org/web/?p=20',0,'revision','',0),(21,1,'2013-05-08 22:43:21','2013-05-08 22:43:21','Welcome to <strong>Divya Yoga</strong> Monteregie.\r\n\r\nContact us\r\n\r\nPhone # 450-468-7539\r\nFax # 450-468-5724\r\nEmail : founder@vsffoundation.ca','Hello world!','','inherit','closed','closed','','1-revision-3','','','2013-05-08 22:43:21','2013-05-08 22:43:21','',1,'http://divyayogamonteregie.org/web/?p=21',0,'revision','',0),(22,1,'2013-05-08 22:44:06','2013-05-08 22:44:06','Welcome to <strong>Divya Yoga</strong> Monteregie.\r\n<br>\r\n\r\nContact us\r\n\r\nPhone # 450-468-7539\r\nFax # 450-468-5724\r\nEmail : founder@vsffoundation.ca','Hello world!','','inherit','closed','closed','','1-revision-4','','','2013-05-08 22:44:06','2013-05-08 22:44:06','',1,'http://divyayogamonteregie.org/web/?p=22',0,'revision','',0),(25,1,'2013-05-08 22:07:32','2013-05-09 02:07:32','<h6><span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Every last Saturday of the month we invite a guest speaker to talk on a relevant topic related to our mission. He talks to the people for 30-45 minutes.And then 15 minutes question answer period. After that we have vegetarian brunch.</span>\r\n</span></h6>','Month end conferences','','publish','closed','closed','','month-end-conferences','','','2013-07-09 20:07:50','2013-07-10 00:07:50','',0,'http://divyayogamonteregie.org/web/?page_id=25',0,'page','',0),(133,1,'2013-06-10 20:06:17','2013-06-11 00:06:17','A man found a cocoon of a butterfly.\r\nOne day a small opening appeared.\r\nHe sat and watched the butterfly for several hours\r\nas it struggled to squeeze its body through the tiny hole.\r\nThen it stopped, as if it couldn\'t go further.\r\n\r\nSo the man decided to help the butterfly.\r\nHe took a pair of scissors and\r\nsnipped off the remaining bits of cocoon.\r\nThe butterfly emerged easily but\r\nit had a swollen body and shriveled wings.\r\n\r\nThe man continued to watch it,\r\nexpecting that any minute the wings would enlarge\r\nand expand enough to support the body,\r\nNeither happened!\r\nIn fact the butterfly spent the rest of its life\r\ncrawling around.\r\nIt was never able to fly.\r\n\r\nWhat the man in his kindness\r\nand haste did not understand:\r\nThe restricting cocoon and the struggle\r\nrequired by the butterfly to get through the opening\r\nwas a way of forcing the fluid from the body\r\ninto the wings so that it would be ready\r\nfor flight once that was achieved.\r\n\r\nSometimes struggles are exactly\r\nwhat we need in our lives.\r\nGoing through life with no obstacles would cripple us.\r\nWe will not be as strong as we could have been\r\nand we would never fly.','The story of the butterfly.','','publish','closed','closed','','the-story-of-the-butterfly','','','2013-06-10 20:06:17','2013-06-11 00:06:17','',79,'http://divyayogamonteregie.org/web/?page_id=133',0,'page','',0),(26,1,'2013-05-08 21:55:40','2013-05-09 01:55:40','Every last Saturday of the month we invite a guest speaker who is related to Alternative way of healing. He talks to the people for 30 minutes.And then 15 minutes question answer period. After that we have brunch. Which is vegetarian.','Month end conferences','','inherit','closed','closed','','25-revision-v1','','','2013-05-08 21:55:40','2013-05-09 01:55:40','',25,'http://divyayogamonteregie.org/web/?p=26',0,'revision','',0),(27,1,'2013-05-08 22:05:04','2013-05-09 02:05:04','<h6><span style=\"color: #0000ff;\">Every last Saturday of the month we invite a guest speaker who is related to Alternative way of healing. He talks to the people for 30 minutes.And then 15 minutes question answer period. After that we have brunch. Which is vegetarian.</span></h6>','Month end conferences','','inherit','closed','closed','','25-revision-v1','','','2013-05-08 22:05:04','2013-05-09 02:05:04','',25,'http://divyayogamonteregie.org/web/?p=27',0,'revision','',0),(29,1,'2013-05-08 21:17:08','2013-05-08 21:17:08','To make basic yoga practice easily accessible to everyone without charge.\r\n\r\nFounder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”\r\n\r\nThis Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,\r\n\r\nAfter yoga super food i. e. grapes and banana are available for Yogies.\r\n\r\nYoga is a marvelous means of exercising, stretching, and freeing the body so it can be a healthy, long-lived, and vital instrument for the body,mind and soul. We also create an environment where people can interact for their betterment.','Our mission','','inherit','closed','closed','','2-revision-v1','','','2013-05-08 21:17:08','2013-05-08 21:17:08','',2,'http://divyayogamonteregie.org/web/?p=29',0,'revision','',0),(31,1,'2013-05-09 07:13:29','2013-05-09 11:13:29','<div>\r\n<div>\r\n<p style=\"text-align: justify;\"><em><span style=\"text-decoration: underline;\"><strong>From volunteers</strong></span></em></p>\r\n<p style=\"text-align: justify;\"><em><strong>Monique</strong></em></p>\r\n<p style=\"text-align: justify;\">Suite à un accident de voiture survenu il y a plusieurs années, mon corps était dans une souffrance chronique, mon esprit était pris dans des blocages inconscients de perturbations, de découragement, de tourment, de peur, et d’angoisse.  Puis un jour, j’ai fait la découverte du yoga.</p>\r\n<p style=\"text-align: justify;\">Au début, lors de mes pratiques, je n’arrivais pas à synchroniser les mouvements, mon corps était rigide et tendu,  je n’étais pas concentrée.  Après un certain temps, j’ai abandonné  les cours en me disant que je n’y arriverai jamais, que mon corps ne pouvait pas suivre, j’avais trop mal, je n’avais pas la dextérité  pour faire les postures, ni la flexibilité, l’attention, la concentration, etc., etc.</p>\r\n<p style=\"text-align: justify;\">Un peu plus tard, j’ai vu une annonce dans le journal qu’il y avait des cours de yoga offerts gratuitement à St-Lambert.  J’ai décidé de faire un autre essai.  Puis voilà  que ma vie s’est transformée.  J’ai commencé le yoga une fois semaine. Après quelques semaines de pratique,  j’ai été approchée par le professeur de yoga pour être bénévole, pour accueillir les gens. J’ai accepté de m’engager dans cette belle aventure dont je fais toujours partie depuis déjà presque 3 ans. Depuis,  j’ai exploré différentes approches de yoga qui m’ont amenée à un changement positif de vie complète.  Une bonne hygiène alimentaire, une flexibilité de mon corps et de mon esprit, de mes attitudes et comportements. J’ai appris à  cultiver le calme mental et ma force vitale intérieure par les exercices de respiration et de méditation. J’ai amélioré mon équilibre mental et physique,  l’écoute de mon corps, ma concentration et ma mémoire, ma coordination et l’acceptation de ce qui est.</p>\r\n<p style=\"text-align: justify;\">Je vis maintenant mon quotidien dans un mieux-être. Il y a encore place à l’amélioration, mais chaque jour j’intègre un style de vie de yoga qui m’amène de plus en plus à faire l’expérience d’une paix intérieure.</p>\r\n<p style=\"text-align: justify;\">*****************************<wbr></wbr>******************************<wbr></wbr>******************</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong>Michel …. 74</strong></span></p>\r\n<p style=\"text-align: justify;\">My duties:-</p>\r\n<p style=\"text-align: justify;\">To be always ready to help</p>\r\n<p style=\"text-align: justify;\">About me</p>\r\n<p style=\"text-align: justify;\">I am a very happy man. I enjoy the company of nice people.</p>\r\n<p style=\"text-align: justify;\">What yoga means to me? How it has affected my life?</p>\r\n<p style=\"text-align: justify;\">Yoga is for me an extraordinary choice of movements and exercices created by people who knew the human body and soul.</p>\r\n<p style=\"text-align: justify;\">Two hours of yoga per week complement my daily exercices that I do since 50 years plus. My body appreciate yoga and I feel balanced.</p>\r\n<p style=\"text-align: justify;\">Marathon Runner</p>\r\n<p style=\"text-align: justify;\">Bénévole (mes tâches)\r\nÊtre toujours prêt à aider</p>\r\n<p style=\"text-align: justify;\">À propos de moi\r\nJe suis un homme très heureux. J\'aime la compagnie des gens sympathiques.</p>\r\n<p style=\"text-align: justify;\">Ce que le yoga signifie pour moi? Comment cela a affecté ma vie?</p>\r\n<p style=\"text-align: justify;\">Le yoga est pour moi un choix extraordinaire de mouvements et d\'exercices créés par des gens qui connaissaient le corps humain et l\'âme.\r\nDeux heures de yoga par semaine complètent mes exercices quotidiens que je fais depuis 50 ans et plus. Mon corps apprécie le yoga et je me sens équilibrée.</p>\r\n<p style=\"text-align: justify;\"><strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\"><strong><span style=\"text-decoration: underline;\">Bénévole : Mihaela Frandes</span></strong></p>\r\n<p style=\"text-align: justify;\">Mon rôle</p>\r\n<p style=\"text-align: justify;\">J’arrive chaque samedi matin à 8.30am à l’Académie Chambly pour accueillir les nouvelles personnes. Je leur demande de compléter une fiche d’inscription et leur explique un peu comment se déroulent les cours.</p>\r\n<p style=\"text-align: justify;\">À propos de moi</p>\r\n<p style=\"text-align: justify;\">J’ai commencé les cours de yoga offerts par Meera Trivedi et Vinesh Saxena en juin 2010 et depuis j’y suis toujours fidèle J’avoue que le samedi est ma journée de la semaine la plus heureuse. Depuis, je fais du yoga régulièrement. Je suis d’origine roumaine, ma formation est en biochimie et dans la vie quotidienne je me préoccupe beaucoup de ma nutrition et j’aime beaucoup la nature. En été  je fais du vélo et en hiver j’adore faire du ski de fond. J’aime beaucoup aider les gens et le yoga m’aide à accomplir le bonheur dans ma vie. Ma dernière passion est la préparation de pain au levain – faire du bon pain est pour moi un immense plaisir.</p>\r\n<p style=\"text-align: justify;\"></p>\r\n<p style=\"text-align: justify;\">Qu’est que yoga signifie pour moi. Comment a-t-elle affecte ma vie</p>\r\n<p style=\"text-align: justify;\">Le yoga a amélioré la flexibilité de mon corps et esprit ainsi que ma santé. J’adore faire du yoga et je sens que le yoga est une marche dans mon évolution.</p>\r\n<p style=\"text-align: justify;\"></p>\r\n<p style=\"text-align: justify;\">Volunteer</p>\r\n<p style=\"text-align: justify;\">My duties: I came every Saturday morning at 8.30 at Chambly Academy in Saint Lambert to accommodate the new peoples. I give them the form to fill-up and explain a little bit how we function here.</p>\r\n<p style=\"text-align: justify;\">About me: I started the yoga classes given by Meera Trivedi and Vinesh Saxena in July 2010 and since then I do yoga on a regular basis. Saturday is the happiest day of my week. I am Rumanian, I studied biochemistry and I am interested in nutrition, healthy eating, I try to come closer to nature. In summer I do a lot of bike and in winter I love the cross-country sky. I love helping people; yoga is helping me to maintain a happy mood. Now I’m in love with making sourdough bread, making bread makes me happy.</p>\r\n<p style=\"text-align: justify;\">What yoga means for me. How it has affected my life: Yoga gave me a happiness that I cannot explain; friends, a more conscious life, a flexible body, and a healthy body, a clear mind. I love doing yoga, and I am pretty sure that yoga is only a step in my evolution.</p>\r\n<p style=\"text-align: justify;\">******************************<wbr></wbr>******************************<wbr></wbr>******************</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong>From other participants</strong></span></p>\r\n<p style=\"text-align: justify;\">This yoga class is a precious time for me. I may arrive out of breath or lacking of energy, or a bit annoyed at my brain « monkey chatter » but I always leave rejuvenated physically, mentally and emotionally. Joining in, I am giving my whole body the royal treatment from head to toes, stretching out the kinks and limbering up muscles and joints I was not aware of. It is quality time I give to myself. When I am there, I have my own space. But there are people around me and I feel I belong, that I am surrounded by positive energy. The space we are in fills, it feels to me, with well being respect, silent communication. Thank you to all who make this possible. I was hooked the first time I went.</p>\r\n<p style=\"text-align: justify;\"><strong><span style=\"text-decoration: underline;\">Charlene Olse</span></strong></p>\r\n<p style=\"text-align: justify;\"><strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\">Je passais des moments très difficiles suite à un deuil, mon amie m’a conseillé de faire du yoga.</p>\r\n<p style=\"text-align: justify;\">J’ai essayé une première séance et je me suis sentie vraiment bien, les mouvements accompagnés de la respiration fluide ont effectivement apaisé mon âme, mon esprit et mon corps et depuis je ne peux rater une séance. Je fais du yoga seule à la maison, mais je m’arrête au bout de 5 minutes, cependant du yoga en groupe avec la belle ambiance, la bonne motivation et l’encouragement de l’entraîneur m’a permis de bien vivre mon deuil et surtout de bien gérer mes sentiments et mes émotions.</p>\r\n<p style=\"text-align: justify;\">Un grand merci pour ce que vous faites pour le groupe de yoga.</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong>Lynda</strong></span></p>\r\n<p style=\"text-align: justify;\"><strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\">Le yoga diminue mon stress, assouplit mon corps et lubrifie mes articulations. Certaines positions ou exercices libèrent des structures énergétiques associées à des mémoires antérieures. L’énergie circule plus librement dans mon corps et je me sens revivifié. J’apprécie aussi le fait que ce soit une activité non compétitive.</p>\r\n<p style=\"text-align: justify;\">Je remercie M. Saxena de sa très grande disponibilité ainsi que toute son équipe de bénévoles.</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong> Marcel Baril</strong></span></p>\r\n<p style=\"text-align: justify;\"><strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\">Le yoga m’a apporté beaucoup de paix intérieure. J’aime la combinaison de l’exercice physique et le mental, le rire…. Cela équilibre mon moral, améliore mon corps physique, m’aide à  pratiquer la méditation et la relaxation et surtout à mieux respirer. J’aime beaucoup l’ambiance généreuse, le don de soi des bénévoles. Je crois de plus en plus à la bonté de l’être humain.</p>\r\n<p style=\"text-align: justify;\">Merci</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong>Colette</strong></span></p>\r\n<p style=\"text-align: justify;\"><strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\">Mon mari est décédé il y a trois ans. Je fus effondrée. Depuis ce temps je pratique le yoga avec Monsieur Saxena. Cet exercice m’a apporté l’équilibre physique et la paix de l’âme.</p>\r\n<p style=\"text-align: justify;\">Ginette Paradis</p>\r\n<p style=\"text-align: justify;\"><strong>******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\">Je dois remercier Mr et Mme Saxena pout leur dévouement et leur disponibilité  apportés chaque samedi.</p>\r\n<p style=\"text-align: justify;\">Pour moi,ce que j\'aime le plus c\'est bien ses histoires qui m\'amênent a penser positivement,ensuite il y a les exercises</p>\r\n<p style=\"text-align: justify;\">qui aident a calmer le mental et a controler le stress,c\'est bien.</p>\r\n<p style=\"text-align: justify;\">Mais tant qu\'aux exercises d\'accupressions pour les sinus ,j\'en vois pas d\'effet immédiat, c\'est probablement a long</p>\r\n<p style=\"text-align: justify;\">terme que l\'effet se fait sentir.</p>\r\n<p style=\"text-align: justify;\">Les nouveaux mouvements ou exercises sont les bienvenues ,j\'en suis certain, pour la pluparts des participants.</p>\r\n<p style=\"text-align: justify;\">Apres deux heures de participations la position a l\'horizontale (shawaseen)ou repos est très bien appréciée.</p>\r\n<p style=\"text-align: justify;\">C\'est durant le reste de la journée qu\'on sent une certaine fatigue et qu\'il faut récupérer,en un mot c\'est sûrement</p>\r\n<p style=\"text-align: justify;\">bénifique pour la santé.</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong>Renald Couture</strong></span></p>\r\n<p style=\"text-align: justify;\"><strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\">What would I do without Yoga? it has helped me to live a fulfilling life!</p>\r\n<p style=\"text-align: justify;\">When I was 12 years old, I was one day about to sit down on a kitchen chair when my brother took it away from underneath me. I fell had on my coccyx and thought nothing more of it, thinking that my pride was hurt more than my back. But by the age of 18 I started getting persistent backaches, and from then on I became a \'back sufferer\'. By the age of 30 I wasn\'t able to wash a kitchen floor or do an hour\'s gardening without a backache for the rest of the day, and few days after. I wasn\'t even sure I could have children with such a bad back, so I did a series of adjustments over a year and a half at a chiropractor\'s, and tried acupuncture. Both helped somewhat, but certainly did not cure my condition. I did have two children and a full time job teaching, but backaches became a fact of life, always there in the background.</p>\r\n<p style=\"text-align: justify;\">I came across Yoga in my middle 30\'s but never had enough time to pursue it diligently. It was only after I retired that I started doing it seriously, and I now wish I had allowed no excuses to not do it consistently earlier. I now do Yoga for an hour every day, following the type of Mr. Saxena\'s exercises on Saturday mornings, and take exercises out of books. I have never felt better! Today at 68 I feel better that I did at 30. I can now do gardening all day, shovel snow, wash floors, and walk good long walks with no consequent pain. The injury to my back is still there, but my back mussels are now strong enough to support me in my activities.</p>\r\n<p style=\"text-align: justify;\">Doing the exercises is only part of my Yoga practice. I am careful to eat only food that is nutritious for my body, and I try to keep as much as possible a positive outlook on life.</p>\r\n<p style=\"text-align: justify;\">Yoga is a lifestyle - it takes care of every aspect of one\'s being, and I intend to keep well and healthy to my dying day.</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong>Mary Brunet</strong></span></p>\r\n<strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong>\r\n\r\n</div>\r\n</div>','Testimony from Participants','','publish','closed','closed','','testimony-from-participants','','','2013-07-09 20:22:40','2013-07-10 00:22:40','',0,'http://divyayogamonteregie.org/web/?page_id=31',0,'page','',0),(32,1,'2013-05-09 07:13:17','2013-05-09 11:13:17','','Testimony from Participants','','inherit','closed','closed','','31-revision','','','2013-05-09 07:13:17','2013-05-09 11:13:17','',31,'http://divyayogamonteregie.org/web/?p=32',0,'revision','',0),(33,1,'2013-05-09 07:13:48','2013-05-09 11:13:48','&nbsp;\r\n<ul>\r\n	<li>I was always blaming myself for everything that was wrong within my family.Guilt was always present.Since I have been doing yoga I realized I want to be responsible for myself.My adult children must take care of themselves.I realizes that even my children could be toxic to me and therefore I have to distant myself. I am greatful to yoga for being aware and to live in the moment.</li>\r\n</ul>\r\n- J.Smith\r\n<ul>\r\n	<li>Happiness is the state of mind. Material things do not make a person happy. Little things and action e.g. assisting or helping people, giving love &amp; affection,showing empathy &amp; compassion can change somebody\'s life----Anonymous</li>\r\n</ul>\r\n<ul>\r\n	<li>I think when we realize that we  are part of everything we become free and move forward.---Michel Sclafani</li>\r\n</ul>\r\n<ul>\r\n	<li>I read that in UK in certain Prisons yoga has been offered to Prisoners.All those who participated in the session felt the benefit not only physically but also mentally and spiritually.Yoga is beginning to be seen as a form of therapy that is beneficial to prisoners too.----- M. Brunet</li>\r\n	<li>This is my fourth session of Divya Yoga and I wish I had started long time ago.It is excellent for the body to keep fit and supple. ---Anonymous</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\"><strong> French</strong></span>\r\n<ul>\r\n	<li>Il  faut savoir pardonner et avoir la paix intérieure.</li>\r\n</ul>\r\nAnonyme\r\n<ul>\r\n	<li>  Le 27 juillet, j’ai participé à une session de yoga pour la paix au Parc Olympique de Montréal.  Il y avait 2,500 personnes le matin et 2,500 personnes l’après-midi (celui auquel j’ai participé), tous habillés de blanc.  Quelle énergie, quelle expérience! Ce fut fabuleux ! À recommencer chaque année!</li>\r\n</ul>\r\n<div>\r\n\r\n<b><span style=\"text-decoration: underline;\">Francine Hardy</span></b>\r\n\r\n</div>\r\n<ul>\r\n	<li> L’histoire que tout commence par nos pensées.  « Ce qui se produit dépend de moi. » Que j’ai un certain contrôle, à partir du moment que je le décide,  sur mes pensées et sur les gestes que je pose.  «Je pense donc je suis ».</li>\r\n</ul>\r\n<b><span style=\"text-decoration: underline;\">Richard Morion</span></b>\r\n<ul>\r\n	<li>  « Vivons intensément le présent, car l’avenir est incertain. » Ce qu’a dit mon défunt mari.   Rien n’est permanent dans ce monde.</li>\r\n</ul>\r\n<b><span style=\"text-decoration: underline;\">Maroeun</span></b>\r\n<ul>\r\n	<li>On ne peut pas être heureux dans la vie si on ne sait pas apprécier ce que l’on a.</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\">Anonyme</span>\r\n<ul>\r\n	<li>  Donnez et vous recevrez.</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\">Anonyme</span>\r\n<ul>\r\n	<li>    « Mon Dieu, donne moi le pouvoir de changer les choses que je puisse changer, d’accepter les choses que je ne puisse pas changer et la sagesse de faire la différence. »</li>\r\n</ul>\r\nLa prière de sérénité que j’ai découvert assez récemment et que j’essaie de la faire vivre chaque jour.\r\n\r\nJe suis touchée et très reconnaissante à notre professeur qui depuis plus de 3 (trois) ans n’a jamais manqué les samedi matin pour donner ce cours merveilleux.»\r\n\r\n<b><span style=\"text-decoration: underline;\">Mariana Gaubie</span></b>\r\n<ul>\r\n	<li>       « L’histoire » qui m’a le plus touchée est définitivement celle où M. Saxena demandait au groupe qui voulait un 20$, sans condition, un 20$ tout neuf, sans pli. Je crois qu’une dizaine / quinzaine de personnes ont alors levé leur main.  Il a alors froissé le 20$ et reposé la même question au groupe.  Je crois qu’alors nous avons été seulement 2 ou 3 à lever notre main.  M. Saxena a alors dit : « c’est le même 20$, il a la même valeur et je vous l’offre sans condition ».  Seulement une personne de plus a levé la main. ….</li>\r\n</ul>\r\nPeu importe ce que les gens nous font, les mauvais « événements» qui nous arrivent, nous sommes les mêmes personnes.  Nous n’avons pas moins de valeur...\r\n\r\nCette histoire m’a beaucoup aidé et continuera de m’aider tout au long de ma vie. C’est un exemple qui a marqué mon imaginaire et auquel je peux me référer pour m’aider au besoin.  J’aime beaucoup ce genre d’histoire que M. Saxena nous raconte.\r\n\r\n<span style=\"text-decoration: underline;\">Anonyme</span>\r\n<ul>\r\n	<li> Il y a des situations qui arrivent parfois dans la vie qui ne sont pas toujours facile à vivre.  Mais on doit continuer à avancer sans se retourner en arrière.  Dans mon cas j’ai pris la décision d’avancer et de continuer à évoluer tout en respectant les limites de mon corps et de mes pensées.</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\">Anonyme</span>\r\n<h1><span style=\"text-decoration: underline;\"><strong> </strong></span></h1>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Let us share','','publish','closed','closed','','let-us-share','','','2013-09-09 20:35:43','2013-09-10 00:35:43','',0,'http://divyayogamonteregie.org/web/?page_id=33',0,'page','',0),(34,1,'2013-05-09 07:13:44','2013-05-09 11:13:44','','Let us share','','inherit','closed','closed','','33-revision-v1','','','2013-05-09 07:13:44','2013-05-09 11:13:44','',33,'http://divyayogamonteregie.org/web/?p=34',0,'revision','',0),(35,1,'2013-05-09 07:14:13','2013-05-09 11:14:13','Coming soon','Photo Gallery - Publicity','','publish','closed','closed','','photo-gallery-publicity','','','2013-05-09 07:14:13','2013-05-09 11:14:13','',0,'http://divyayogamonteregie.org/web/?page_id=35',0,'page','',0),(36,1,'2013-05-09 07:14:09','2013-05-09 11:14:09','','Photo Gallery - Publicity','','inherit','closed','closed','','35-revision-v1','','','2013-05-09 07:14:09','2013-05-09 11:14:09','',35,'http://divyayogamonteregie.org/web/?p=36',0,'revision','',0),(39,1,'2013-05-09 07:15:55','2013-05-09 11:15:55','<p style=\"text-align: justify;\">These poems should help to enhance our morale and  in boosting energy. We need to keep our batteries charged and continuously encourage ourselves towards happiness, success and achieving our goals.</p>\r\n<p style=\"text-align: justify;\">These poems are compiled here for easy reference. We would like to thank the respective  original authors for their contribution.</p>','Poems','','publish','closed','closed','','poem-and-story','','','2013-07-09 20:08:33','2013-07-10 00:08:33','',0,'http://divyayogamonteregie.org/web/?page_id=39',0,'page','',0),(40,1,'2013-05-09 07:15:06','2013-05-09 11:15:06','','Poem and story','','inherit','closed','closed','','39-revision','','','2013-05-09 07:15:06','2013-05-09 11:15:06','',39,'http://divyayogamonteregie.org/web/?p=40',0,'revision','',0),(41,1,'2013-05-09 07:15:09','2013-05-09 11:15:09','','Poem and story','','inherit','closed','closed','','39-revision-2','','','2013-05-09 07:15:09','2013-05-09 11:15:09','',39,'http://divyayogamonteregie.org/web/?p=41',0,'revision','',0),(42,1,'2013-05-09 07:16:46','2013-05-09 11:16:46','<p align=\"center\">Keep your thoughts positive,</p>\r\n<p align=\"center\">because thoughts become your words.</p>\r\n<p align=\"center\">Keep your words positive</p>\r\n<p align=\"center\">because words become your action.</p>\r\n<p align=\"center\">Keep your action positive</p>\r\n<p align=\"center\">Because your action becomes your habit.</p>\r\n<p align=\"center\">Keep your habit positive,</p>\r\n<p align=\"center\">because your habit becomes your lifestyle.</p>\r\n<p align=\"center\">Keep your life style positive,</p>\r\n<p align=\"center\">because your life style becomes your destiny.</p>','OUR THOUGHTS','','publish','closed','closed','','our-thoughts','','','2013-05-09 07:16:46','2013-05-09 11:16:46','',39,'http://divyayogamonteregie.org/web/?page_id=42',0,'page','',0),(43,1,'2013-05-09 07:16:41','2013-05-09 11:16:41','<p align=\"center\"></p>\n<p align=\"center\"></p>\n<p align=\"center\">Keep your thoughts positive,</p>\n<p align=\"center\">because thoughts become your words.</p>\n<p align=\"center\">Keep your words positive</p>\n<p align=\"center\">because words become your action.</p>\n<p align=\"center\">Keep your action positive</p>\n<p align=\"center\">Because your action becomes your habit.</p>\n<p align=\"center\">Keep your habit positive,</p>\n<p align=\"center\">because your habit becomes your lifestyle.</p>\n<p align=\"center\">Keep your life style positive,</p>\n<p align=\"center\">because your life style becomes your destiny.</p>','OUR THOUGHTS','','inherit','closed','closed','','42-revision','','','2013-05-09 07:16:41','2013-05-09 11:16:41','',42,'http://divyayogamonteregie.org/web/?p=43',0,'revision','',0),(44,1,'2013-05-09 07:17:48','2013-05-09 11:17:48','<p align=\"center\">Keep your thoughts positive,</p>\n<p align=\"center\">because thoughts become your words.</p>\n<p align=\"center\">Keep your words positive</p>\n<p align=\"center\">because words become your action.</p>\n<p align=\"center\">Keep your action positive</p>\n<p align=\"center\">Because your action becomes your habit.</p>\n<p align=\"center\">Keep your habit positive,</p>\n<p align=\"center\">because your habit becomes your lifestyle.</p>\n<p align=\"center\">Keep your life style positive,</p>\n<p align=\"center\">because your life style becomes your destiny.</p>','OUR THOUGHTS','','inherit','closed','closed','','42-autosave','','','2013-05-09 07:17:48','2013-05-09 11:17:48','',42,'http://divyayogamonteregie.org/web/?p=44',0,'revision','',0),(45,1,'2013-05-09 07:19:27','2013-05-09 11:19:27','<p align=\"center\">(one the most classic motivational poems)</p>\r\n<p align=\"center\">Promise yourself to be so strong that nothing can\r\ndisturb your peace of mind.</p>\r\n<p align=\"center\">To talk health, happiness, and prosperity to\r\nevery person you meet.</p>\r\n<p align=\"center\">To make all your friends feel like there is\r\nsomething in them.</p>\r\n<p align=\"center\">To look at the sunny side of everything and make your\r\noptimism come true.</p>\r\n<p align=\"center\">To think only of the best, to work only for the best,\r\nand expect only the best.</p>\r\n<p align=\"center\">To be just as enthusiastic about the success of others\r\nas you are about your own.</p>\r\n<p align=\"center\">To forget the mistakes of the past and press on the\r\ngreater achievements of the future.</p>\r\n<p align=\"center\">To wear a cheerful countenance at all times and give\r\nevery living person you meet a smile.</p>\r\n<p align=\"center\">To give so much time to the improvement of yourself\r\nthat you have no time to criticize others.</p>\r\n<p align=\"center\">To be too large for worry, too noble for anger, and too\r\nstrong for fear, and too happy to permit the\r\npresence of trouble.</p>','Promise Yourself','','publish','closed','closed','','promise-yourself','','','2013-05-09 07:20:11','2013-05-09 11:20:11','',39,'http://divyayogamonteregie.org/web/?page_id=45',0,'page','',0),(46,1,'2013-05-09 07:19:19','2013-05-09 11:19:19','<p align=\"center\"><b>\n</b>(one the most classic motivational poems)</p>\n<p align=\"center\"></p>\n<p align=\"center\">Promise yourself to be so strong that nothing can\ndisturb your peace of mind.</p>\n<p align=\"center\">To talk health, happiness, and prosperity to\nevery person you meet.</p>\n<p align=\"center\">To make all your friends feel like there is\nsomething in them.</p>\n<p align=\"center\">To look at the sunny side of everything and make your\noptimism come true.</p>\n<p align=\"center\">To think only of the best, to work only for the best,\nand expect only the best.</p>\n<p align=\"center\">To be just as enthusiastic about the success of others\nas you are about your own.</p>\n<p align=\"center\">To forget the mistakes of the past and press on the\ngreater achievements of the future.</p>\n<p align=\"center\">To wear a cheerful countenance at all times and give\nevery living person you meet a smile.</p>\n<p align=\"center\">To give so much time to the improvement of yourself\nthat you have no time to criticize others.</p>\n<p align=\"center\">To be too large for worry, too noble for anger, and too\nstrong for fear, and too happy to permit the\npresence of trouble.</p>','Promise Yourself','','inherit','closed','closed','','45-revision','','','2013-05-09 07:19:19','2013-05-09 11:19:19','',45,'http://divyayogamonteregie.org/web/?p=46',0,'revision','',0),(47,1,'2013-05-09 07:19:27','2013-05-09 11:19:27','<p align=\"center\">(one the most classic motivational poems)</p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\">Promise yourself to be so strong that nothing can\r\ndisturb your peace of mind.</p>\r\n<p align=\"center\">To talk health, happiness, and prosperity to\r\nevery person you meet.</p>\r\n<p align=\"center\">To make all your friends feel like there is\r\nsomething in them.</p>\r\n<p align=\"center\">To look at the sunny side of everything and make your\r\noptimism come true.</p>\r\n<p align=\"center\">To think only of the best, to work only for the best,\r\nand expect only the best.</p>\r\n<p align=\"center\">To be just as enthusiastic about the success of others\r\nas you are about your own.</p>\r\n<p align=\"center\">To forget the mistakes of the past and press on the\r\ngreater achievements of the future.</p>\r\n<p align=\"center\">To wear a cheerful countenance at all times and give\r\nevery living person you meet a smile.</p>\r\n<p align=\"center\">To give so much time to the improvement of yourself\r\nthat you have no time to criticize others.</p>\r\n<p align=\"center\">To be too large for worry, too noble for anger, and too\r\nstrong for fear, and too happy to permit the\r\npresence of trouble.</p>','Promise Yourself','','inherit','closed','closed','','45-revision-2','','','2013-05-09 07:19:27','2013-05-09 11:19:27','',45,'http://divyayogamonteregie.org/web/?p=47',0,'revision','',0),(48,1,'2013-05-09 07:21:46','2013-05-09 11:21:46','<p style=\"text-align: center;\" align=\"center\">In life there are people that will hurt us and cause us pain,</p>\r\n<p style=\"text-align: center;\" align=\"center\">but we must learn to forgive and forget and not hold grudges.</p>\r\n<p style=\"text-align: center;\">In life there are mistakes we will make,\r\nbut we must learn from our wrongs and grow from them.</p>\r\n<p style=\"text-align: center;\">In life there are regrets we will have to live with,\r\nbut we must learn to leave the past behind and realize it is something we can\'t change.</p>\r\n<p style=\"text-align: center;\">In life there are people we will loose forever and can\'t have back,\r\nbut we must learn to let go &amp; move on.</p>\r\n<p style=\"text-align: center;\">In life there are going to be obstacles that will cause interference,\r\nbut we must learn to overcome these challenges and grow stronger.</p>\r\n<p style=\"text-align: center;\">In life there are fears that will hold us back from what we want,\r\nbut we must learn to fight them with the courage from within.</p>','In our life','','publish','closed','closed','','in-our-life','','','2013-05-09 07:22:39','2013-05-09 11:22:39','',39,'http://divyayogamonteregie.org/web/?page_id=48',0,'page','',0),(49,1,'2013-05-09 07:21:38','2013-05-09 11:21:38','<p align=\"center\">In life there are people that will hurt us and cause us pain,</p>\n<p align=\"center\">but we must learn to forgive and forget and not hold grudges.\n\nIn life there are mistakes we will make,\nbut we must learn from our wrongs and grow from them.\n\nIn life there are regrets we will have to live with,\nbut we must learn to leave the past behind and realize it is something we can\'t change.\n\nIn life there are people we will loose forever and can\'t have back,\nbut we must learn to let go &amp; move on.\n\nIn life there are going to be obstacles that will cause interference,\nbut we must learn to overcome these challenges and grow stronger.\n\nIn life there are fears that will hold us back from what we want,\nbut we must learn to fight them with the courage from within.</p>','In our life','','inherit','closed','closed','','48-revision','','','2013-05-09 07:21:38','2013-05-09 11:21:38','',48,'http://divyayogamonteregie.org/web/?p=49',0,'revision','',0),(50,1,'2013-05-09 07:21:46','2013-05-09 11:21:46','<p align=\"center\">In life there are people that will hurt us and cause us pain,</p>\r\n<p align=\"center\">but we must learn to forgive and forget and not hold grudges.\r\n\r\nIn life there are mistakes we will make,\r\nbut we must learn from our wrongs and grow from them.\r\n\r\nIn life there are regrets we will have to live with,\r\nbut we must learn to leave the past behind and realize it is something we can\'t change.\r\n\r\nIn life there are people we will loose forever and can\'t have back,\r\nbut we must learn to let go &amp; move on.\r\n\r\nIn life there are going to be obstacles that will cause interference,\r\nbut we must learn to overcome these challenges and grow stronger.\r\n\r\nIn life there are fears that will hold us back from what we want,\r\nbut we must learn to fight them with the courage from within.</p>','In our life','','inherit','closed','closed','','48-revision-2','','','2013-05-09 07:21:46','2013-05-09 11:21:46','',48,'http://divyayogamonteregie.org/web/?p=50',0,'revision','',0),(51,1,'2013-05-09 07:22:03','2013-05-09 11:22:03','<p style=\"text-align: center;\" align=\"center\">In life there are people that will hurt us and cause us pain,</p>\r\n<p style=\"text-align: center;\" align=\"center\">but we must learn to forgive and forget and not hold grudges.</p>\r\n<p style=\"text-align: center;\">In life there are mistakes we will make,\r\nbut we must learn from our wrongs and grow from them.</p>\r\n<p style=\"text-align: center;\">In life there are regrets we will have to live with,\r\nbut we must learn to leave the past behind and realize it is something we can\'t change.</p>\r\n<p style=\"text-align: center;\">In life there are people we will loose forever and can\'t have back,\r\nbut we must learn to let go &amp; move on.</p>\r\n<p style=\"text-align: center;\">In life there are going to be obstacles that will cause interference,\r\nbut we must learn to overcome these challenges and grow stronger.</p>\r\n<p style=\"text-align: center;\">In life there are fears that will hold us back from what we want,\r\nbut we must learn to fight them with the courage from within.</p>','In our life','','inherit','closed','closed','','48-revision-3','','','2013-05-09 07:22:03','2013-05-09 11:22:03','',48,'http://divyayogamonteregie.org/web/?p=51',0,'revision','',0),(52,1,'2013-05-09 07:22:15','2013-05-09 11:22:15','<p style=\"text-align: center;\" align=\"center\">In life there are people that will hurt us and cause us pain,</p>\r\n<p style=\"text-align: center;\" align=\"center\">but we must learn to forgive and forget and not hold grudges.</p>\r\n<p style=\"text-align: center;\">In life there are mistakes we will make,\r\nbut we must learn from our wrongs and grow from them.</p>\r\n<p style=\"text-align: center;\">In life there are regrets we will have to live with,\r\nbut we must learn to leave the past behind and realize it is something we can\'t change.</p>\r\n<p style=\"text-align: center;\">In life there are people we will loose forever and can\'t have back,\r\nbut we must learn to let go &amp; move on.</p>\r\n<p style=\"text-align: center;\">In life there are going to be obstacles that will cause interference,\r\nbut we must learn to overcome these challenges and grow stronger.</p>\r\n<p style=\"text-align: center;\">In life there are fears that will hold us back from what we want,\r\nbut we must learn to fight them with the courage from within.</p>','In our life','','inherit','closed','closed','','48-revision-4','','','2013-05-09 07:22:15','2013-05-09 11:22:15','',48,'http://divyayogamonteregie.org/web/?p=52',0,'revision','',0),(53,1,'2013-05-09 07:23:52','2013-05-09 11:23:52','<h2 align=\"center\"><span style=\"color: #0000ff;\"><em><strong>Believe in Yourself,and Remember that Anything Is Possible</strong></em></span></h2>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">Believe in what makes you feel good.</span>\r\n<span style=\"color: #0000ff;\"> Believe in what makes you happy.</span>\r\n<span style=\"color: #0000ff;\"> Believe in the dreams you\'ve always wanted to come true,</span>\r\n<span style=\"color: #0000ff;\"> and give them every chance to.</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">Life holds no promises to what will come your way.</span>\r\n<span style=\"color: #0000ff;\"> You must search for your own ideals</span>\r\n<span style=\"color: #0000ff;\"> and work towards reaching them.</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">Life makes no guarantees as to what you\'ll have.</span>\r\n<span style=\"color: #0000ff;\"> It just gives you time to make choices</span>\r\n<span style=\"color: #0000ff;\"> and to take chances</span>\r\n<span style=\"color: #0000ff;\"> and to discover whatever secrets might come your way.</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">If you are willing to take the opportunities you are given</span>\r\n<span style=\"color: #0000ff;\"> and utilize the abilities you have,</span>\r\n<span style=\"color: #0000ff;\"> you will constantly fill your life</span>\r\n<span style=\"color: #0000ff;\"> with special moments and unforgettable times.</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">No one knows the mysteries of life or its ultimate meaning,</span>\r\n<span style=\"color: #0000ff;\"> but for those who are willing</span>\r\n<span style=\"color: #0000ff;\"> to believe in their dreams and in themselves,</span>\r\n<span style=\"color: #0000ff;\"> life is a precious gift in which anything is possible.</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">~ Dena DiIaconi ~</span></p>','Anything Is Possible','','publish','closed','closed','','anything-is-possible','','','2013-06-15 22:28:27','2013-06-16 02:28:27','',39,'http://divyayogamonteregie.org/web/?page_id=53',0,'page','',0),(54,1,'2013-05-09 07:23:43','2013-05-09 11:23:43','<p align=\"center\"></p>\n<p align=\"center\">Believe in Yourself,and Remember that Anything Is Possible</p>\n<p align=\"center\">Believe in what makes you feel good.\nBelieve in what makes you happy.\nBelieve in the dreams you\'ve always wanted to come true,\nand give them every chance to.</p>\n<p align=\"center\">Life holds no promisesas to what will come your way.\nYou must search for your own ideals\nand work towards reaching them.</p>\n<p align=\"center\">Life makes no guarantees as to what you\'ll have.\nIt just gives you time to make choices\nand to take chances\nand to discover whatever secrets might come your way.</p>\n<p align=\"center\">If you are willing to take the opportunities you are given\nand utilize the abilities you have,\nyou will constantly fill your life\nwith special moments and unforgettable times.</p>\n<p align=\"center\">No one knows the mysteries of life or its ultimate meaning,\nbut for those who are willing\nto believe in their dreams and in themselves,\nlife is a precious gift in which anything is possible.</p>\n<p align=\"center\">~ Dena DiIaconi ~</p>','Anything Is Possible','','inherit','closed','closed','','53-revision-v1','','','2013-05-09 07:23:43','2013-05-09 11:23:43','',53,'http://divyayogamonteregie.org/web/?p=54',0,'revision','',0),(55,1,'2013-05-09 07:24:50','2013-05-09 11:24:50','<p align=\"center\"><strong>Believe In Yourself And Your </strong>\r\n<strong> Dreams Will Come True</strong></p>\r\n<p align=\"center\">Know what you can and want to do in life.</p>\r\n<p align=\"center\">Set goals for yourself and work hard to achieve them.</p>\r\n<p align=\"center\">Strive to have fun every day.</p>\r\n<p align=\"center\">Use your creativity as a means of expressing your feelings.</p>\r\n<p align=\"center\">Be sensitive in viewing the world.</p>\r\n<p align=\"center\">Develop a sense of confidence.</p>\r\n<p align=\"center\">Be honest with yourself and with others.</p>\r\n<p align=\"center\">Follow your heart and adhere to your own truths.</p>\r\n<p align=\"center\">Know that the more you give the more you will receive.</p>\r\n<p align=\"center\">Believe in yourself and your dreams will come true</p>','Believe In Yourself ','','publish','closed','closed','','believe-in-yourself','','','2013-05-09 07:24:50','2013-05-09 11:24:50','',39,'http://divyayogamonteregie.org/web/?page_id=55',0,'page','',0),(56,1,'2013-05-09 07:24:36','2013-05-09 11:24:36','<p align=\"center\"><b>Believe In Yourself And Your\nDreams Will Come True</b></p>\n<p align=\"center\">Know what you can and want to do in life.</p>\n<p align=\"center\">Set goals for yourself and work hard to achieve them.</p>\n<p align=\"center\">Strive to have fun every day.</p>\n<p align=\"center\">Use your creativity as a means of expressing your feelings.</p>\n<p align=\"center\">Be sensitive in viewing the world.</p>\n<p align=\"center\">Develop a sense of confidence.</p>\n<p align=\"center\">Be honest with yourself and with others.</p>\n<p align=\"center\">Follow your heart and adhere to your own truths.</p>\n<p align=\"center\">Know that the more you give the more you will receive.</p>\n<p align=\"center\">Believe in yourself and your dreams will come true</p>','Believe In Yourself ','','inherit','closed','closed','','55-revision','','','2013-05-09 07:24:36','2013-05-09 11:24:36','',55,'http://divyayogamonteregie.org/web/?p=56',0,'revision','',0),(57,1,'2013-05-09 07:25:57','2013-05-09 11:25:57','<p align=\"center\"><b>If You Have A Dream</b></p>\r\n<p align=\"center\">Don’t wait for some distant day to come,\r\nit may be too late before you’ve even begun.\r\nNot everyone will agree with all you decide.</p>\r\n<p align=\"center\">Be true to yourself first and foremost.\r\nThe only important thing in life is what you do\r\nwith the time you spend here on earth.</p>\r\n<p align=\"center\">Don’t be afraid to follow your desires,\r\nthey are not silly nor selfish.\r\nTake the time and do what makes you feel alive.</p>\r\n<p align=\"center\">Leave your fears and regrets in the past,\r\nfor this is where they belong.\r\nDon’t cloud today with things that can’t be undone.</p>\r\n<p align=\"center\">You have no more control over yesterday or tomorrow,\r\nthan you do the raging of your passions.\r\nDo not quiet these dreams nor quench your desires.</p>\r\n<p align=\"center\">For if you do, your journey is ended.\r\nYou have only today to begin anew and follow your dreams.\r\nFor in the end all we have are our memories.</p>\r\n<p align=\"center\">When the twilight comes to us, let there be,\r\nNo excuses, no explanations, no regrets!</p>','If You Have A Dream','','publish','closed','closed','','if-you-have-a-dream','','','2013-05-09 07:25:57','2013-05-09 11:25:57','',39,'http://divyayogamonteregie.org/web/?page_id=57',0,'page','',0),(58,1,'2013-05-09 07:25:42','2013-05-09 11:25:42','<p align=\"center\"><b>If You Have A Dream</b></p>\n<p align=\"center\">Don’t wait for some distant day to come,\nit may be too late before you’ve even begun.\nNot everyone will agree with all you decide.</p>\n<p align=\"center\">Be true to yourself first and foremost.\nThe only important thing in life is what you do\nwith the time you spend here on earth.</p>\n<p align=\"center\">Don’t be afraid to follow your desires,\nthey are not silly nor selfish.\nTake the time and do what makes you feel alive.</p>\n<p align=\"center\">Leave your fears and regrets in the past,\nfor this is where they belong.\nDon’t cloud today with things that can’t be undone.</p>\n<p align=\"center\">You have no more control over yesterday or tomorrow,\nthan you do the raging of your passions.\nDo not quiet these dreams nor quench your desires.</p>\n<p align=\"center\">For if you do, your journey is ended.\nYou have only today to begin anew and follow your dreams.\nFor in the end all we have are our memories.</p>\n<p align=\"center\">When the twilight comes to us, let there be,\nNo excuses, no explanations, no regrets!</p>','If You Have A Dream','','inherit','closed','closed','','57-revision','','','2013-05-09 07:25:42','2013-05-09 11:25:42','',57,'http://divyayogamonteregie.org/web/?p=58',0,'revision','',0),(59,1,'2013-05-09 07:27:22','2013-05-09 11:27:22','<p align=\"center\"><span style=\"color: #0000ff;\"><strong>You Can Be Whatever </strong></span>\r\n<span style=\"color: #0000ff;\"> <strong> You Want To Be!</strong></span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">There is inside you</span>\r\n<span style=\"color: #0000ff;\"> all of the potential</span>\r\n<span style=\"color: #0000ff;\"> to be whatever you want to be,</span>\r\n<span style=\"color: #0000ff;\"> all of the energy</span>\r\n<span style=\"color: #0000ff;\"> to do whatever you want to do.</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">Imagine yourself as you would like to be,</span>\r\n<span style=\"color: #0000ff;\"> doing what you want to do,</span>\r\n<span style=\"color: #0000ff;\"> and each day, take one step</span>\r\n<span style=\"color: #0000ff;\"> towards your dream.</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">And though at times it may seem too</span>\r\n<span style=\"color: #0000ff;\"> difficult to continue,</span>\r\n<span style=\"color: #0000ff;\"> hold on to your dream.</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">One morning you will awake to find</span>\r\n<span style=\"color: #0000ff;\"> that you are the person you dreamed of,</span>\r\n<span style=\"color: #0000ff;\"> doing what you wanted to do,</span>\r\n<span style=\"color: #0000ff;\"> simply because you had the courage</span>\r\n<span style=\"color: #0000ff;\"> to believe in your potential</span>\r\n<span style=\"color: #0000ff;\"> and to hold on to your dream</span></p>','Be Whatever  You Want To Be !','','publish','closed','closed','','be-whatever-you-want-to-be','','','2013-06-15 22:51:40','2013-06-16 02:51:40','',39,'http://divyayogamonteregie.org/web/?page_id=59',0,'page','',0),(60,1,'2013-05-09 07:27:13','2013-05-09 11:27:13','<p align=\"center\"><strong>You Can Be Whatever </strong>\n<strong> You Want To Be!</strong></p>\n<p align=\"center\">There is inside you\nall of the potential\nto be whatever you want to be,\nall of the energy\nto do whatever you want to do.</p>\n<p align=\"center\">Imagine yourself as you would like to be,\ndoing what you want to do,\nand each day, take one step\ntowards your dream.</p>\n<p align=\"center\">And though at times it may seem too\ndifficult to continue,\nhold on to your dream.</p>\n<p align=\"center\">One morning you will awake to find\nthat you are the person you dreamed of,\ndoing what you wanted to do,\nsimply because you had the courage\nto believe in your potential\nand to hold on to your dream</p>','Be Whatever  You Want To Be !','','inherit','closed','closed','','59-revision','','','2013-05-09 07:27:13','2013-05-09 11:27:13','',59,'http://divyayogamonteregie.org/web/?p=60',0,'revision','',0),(61,1,'2013-05-09 07:28:23','2013-05-09 11:28:23','<p align=\"center\"><strong>Within You Is The Strength </strong>\r\n<strong> To Meet Life\'s Challenges!</strong></p>\r\n<p align=\"center\">You are stronger than you think,\r\nremember to stand tall.</p>\r\n<p align=\"center\">Every challenge in your life\r\nhelps you to grow.</p>\r\n<p align=\"center\">Every problem you encounter\r\nstrengthens your mind and your soul.</p>\r\n<p align=\"center\">Every trouble you overcome\r\nincreases your understanding of life.</p>\r\n<p align=\"center\">When all your troubles weigh\r\nheavily on your shoulders,\r\nremember that beneath the burden\r\nyou can stand tall,\r\nbecause you are never given\r\nmore than you can handle...\r\nand you are stronger than you think</p>','Within You Is The Strength To Meet Life\'s Challenges !','','publish','closed','closed','','within-you-is-the-strength-to-meet-lifes-challenges','','','2013-05-09 07:28:23','2013-05-09 11:28:23','',39,'http://divyayogamonteregie.org/web/?page_id=61',0,'page','',0),(62,1,'2013-05-09 07:28:18','2013-05-09 11:28:18','<p align=\"center\"><strong>Within You Is The Strength </strong>\n<strong> To Meet Life\'s Challenges!</strong></p>\n<p align=\"center\">You are stronger than you think,\nremember to stand tall.</p>\n<p align=\"center\">Every challenge in your life\nhelps you to grow.</p>\n<p align=\"center\">Every problem you encounter\nstrengthens your mind and your soul.</p>\n<p align=\"center\">Every trouble you overcome\nincreases your understanding of life.</p>\n<p align=\"center\">When all your troubles weigh\nheavily on your shoulders,\nremember that beneath the burden\nyou can stand tall,\nbecause you are never given\nmore than you can handle...\nand you are stronger than you think</p>','Within You Is The Strength To Meet Life\'s Challenges !','','inherit','closed','closed','','61-revision','','','2013-05-09 07:28:18','2013-05-09 11:28:18','',61,'http://divyayogamonteregie.org/web/?p=62',0,'revision','',0),(63,1,'2013-05-09 07:29:12','2013-05-09 11:29:12','<p align=\"center\"><strong>Today\'s Dreams Are </strong>\r\n<strong> Tomorrow\'s Successes</strong></p>\r\n<p align=\"center\">Don\'t be afraid of high hopes\r\nor plans that seem to be out of reach.\r\nLife is meant to be experienced,\r\nand every situation allows for\r\nlearning and growth.</p>\r\n<p align=\"center\">Motivation is a positive starting point,\r\nand action places you on a forward path.\r\nA dream is a blueprint\r\nof a goal not yet achieved;\r\nthe only difference between the two\r\nis the effort involved in attaining\r\nwhat you hope to accomplish.</p>\r\n<p align=\"center\">Let your mind and heart urge you on;\r\nallow the power of your will\r\nto lead you to your destination.</p>\r\n<p align=\"center\">Don\'t count the steps ahead;\r\njust add up the total\r\nof steps already covered,\r\nand multiply it by\r\nfaith, confidence, and endurance.</p>\r\n<p align=\"center\">Always remember that\r\nfor those who persist,\r\ntoday\'s dreams are transformed\r\ninto tomorrow\'s successes.</p>\r\n<p align=\"center\">~ Kelly D. Caron ~</p>','Today\'s Dreams Are Tomorrow\'s Successes','','publish','closed','closed','','todays-dreams-are-tomorrows-successes','','','2013-05-09 07:29:12','2013-05-09 11:29:12','',39,'http://divyayogamonteregie.org/web/?page_id=63',0,'page','',0),(64,1,'2013-05-09 07:29:09','2013-05-09 11:29:09','<p align=\"center\"><strong>Today\'s Dreams Are </strong>\n<strong> Tomorrow\'s Successes</strong></p>\n<p align=\"center\">Don\'t be afraid of high hopes\nor plans that seem to be out of reach.\nLife is meant to be experienced,\nand every situation allows for\nlearning and growth.</p>\n<p align=\"center\">Motivation is a positive starting point,\nand action places you on a forward path.\nA dream is a blueprint\nof a goal not yet achieved;\nthe only difference between the two\nis the effort involved in attaining\nwhat you hope to accomplish.</p>\n<p align=\"center\">Let your mind and heart urge you on;\nallow the power of your will\nto lead you to your destination.</p>\n<p align=\"center\">Don\'t count the steps ahead;\njust add up the total\nof steps already covered,\nand multiply it by\nfaith, confidence, and endurance.</p>\n<p align=\"center\">Always remember that\nfor those who persist,\ntoday\'s dreams are transformed\ninto tomorrow\'s successes.</p>\n<p align=\"center\">~ Kelly D. Caron ~</p>','Today\'s Dreams Are Tomorrow\'s Successes','','inherit','closed','closed','','63-revision','','','2013-05-09 07:29:09','2013-05-09 11:29:09','',63,'http://divyayogamonteregie.org/web/?p=64',0,'revision','',0),(65,1,'2013-05-09 07:30:17','2013-05-09 11:30:17','<p align=\"center\">One song can spark a moment,\r\nOne tree can start a forest,\r\nOne bird can herald spring.</p>\r\n<p align=\"center\">One smile begins a friendship,\r\nOne handclasp lifts a soul.\r\nOne star can guide a ship at sea,\r\nOne vote can change a nation,\r\nOne sunbeam lights a room\r\nOne candle wipes out darkness,\r\nOne laugh will conquer gloom.</p>\r\n<p align=\"center\">One step must start each journey.\r\nOne word must start each prayer.\r\nOne hope will raise our spirits,\r\nOne touch can show you care.</p>\r\n<p align=\"center\">One voice can speak with wisdom,\r\nOne heart can know what\'s true,</p>\r\n<p align=\"center\">One life can make a difference,\r\nYou see, it\'s up to you!</p>','Just One   ','','publish','closed','closed','','just-one','','','2013-05-09 07:30:17','2013-05-09 11:30:17','',39,'http://divyayogamonteregie.org/web/?page_id=65',0,'page','',0),(66,1,'2013-05-09 07:29:45','2013-05-09 11:29:45','<p align=\"center\">\nOne song can spark a moment,\nOne tree can start a forest,\nOne bird can herald spring.</p>\n<p align=\"center\">One smile begins a friendship,\nOne handclasp lifts a soul.\nOne star can guide a ship at sea,\nOne vote can change a nation,\nOne sunbeam lights a room\nOne candle wipes out darkness,\nOne laugh will conquer gloom.</p>\n<p align=\"center\">One step must start each journey.\nOne word must start each prayer.\nOne hope will raise our spirits,\nOne touch can show you care.</p>\n<p align=\"center\">One voice can speak with wisdom,\nOne heart can know what\'s true,</p>\n<p align=\"center\">One life can make a difference,\nYou see, it\'s up to you!</p>','Just One   ','','inherit','closed','closed','','65-revision','','','2013-05-09 07:29:45','2013-05-09 11:29:45','',65,'http://divyayogamonteregie.org/web/?p=66',0,'revision','',0),(67,1,'2013-05-09 07:32:40','2013-05-09 11:32:40','<p style=\"text-align: center;\" align=\"center\">Like attracts like.</p>\r\n<p style=\"text-align: center;\" align=\"center\">If you feel defeated, you will be.</p>\r\n<p style=\"text-align: center;\" align=\"center\">If you are weary, you will lose momentum.</p>\r\n<p style=\"text-align: center;\" align=\"center\">If you are of joyful focus, the negative will have no choice but to recede.</p>\r\n<p style=\"text-align: center;\" align=\"center\">Decide to laugh in the face of adversity.</p>\r\n<p style=\"text-align: center;\" align=\"center\">Know you are powerful enough to supersede all difficulty.</p>\r\n<p style=\"text-align: center;\" align=\"center\">Do not let your thoughts wander.</p>\r\n<p style=\"text-align: center;\" align=\"center\">Be powerful.</p>\r\n<p style=\"text-align: center;\" align=\"center\">Know yourself.</p>\r\n<p style=\"text-align: center;\" align=\"center\"> Decide to be in control of your reality.</p>\r\n<p style=\"text-align: center;\" align=\"center\">There are no victims except those who have given up their power.</p>\r\n<p style=\"text-align: center;\" align=\"center\">You possess the energy, create and take control of your destiny</p>','You Possess The Energy','','publish','closed','closed','','you-possess-the-energy','','','2013-05-09 07:32:40','2013-05-09 11:32:40','',39,'http://divyayogamonteregie.org/web/?page_id=67',0,'page','',0),(68,1,'2013-05-09 07:31:53','2013-05-09 11:31:53','<p align=\"center\">Like attracts like.</p>\n<p align=\"center\">If you feel defeated, you will be.</p>\n<p align=\"center\">If you are weary, you will lose momentum.</p>\n<p align=\"center\">If you are of joyful focus, the negative will have no choice but to recede.</p>\n<p align=\"center\">Decide to laugh in the face of adversity.</p>\n<p align=\"center\">Know you are powerful enough to supersede all difficulty.</p>\n<p align=\"center\">Do not let your thoughts wander.</p>\n<p align=\"center\">Be powerful.</p>\n<p align=\"center\"></p>\n<p align=\"center\">Know yourself.</p>\n<p align=\"center\"></p>\n<p align=\"center\">Decide to be in control of your reality.</p>\n<p align=\"center\"></p>\n<p align=\"center\">There are no victims except those who have given up their power.</p>\n<p align=\"center\"></p>\n<p align=\"center\">You possess the energy, create and take control of your destiny</p>','You Possess The Energy','','inherit','closed','closed','','67-revision','','','2013-05-09 07:31:53','2013-05-09 11:31:53','',67,'http://divyayogamonteregie.org/web/?p=68',0,'revision','',0),(69,1,'2013-05-09 07:33:41','2013-05-09 11:33:41','<p style=\"text-align: center;\" align=\"center\">Like attracts like.</p>\n<p style=\"text-align: center;\" align=\"center\">If you feel defeated, you will be.</p>\n<p style=\"text-align: center;\" align=\"center\">If you are weary, you will lose momentum.</p>\n<p style=\"text-align: center;\" align=\"center\">If you are of joyful focus, the negative will have no choice but to recede.</p>\n<p style=\"text-align: center;\" align=\"center\">Decide to laugh in the face of adversity.</p>\n<p style=\"text-align: center;\" align=\"center\">Know you are powerful enough to supersede all difficulty.</p>\n<p style=\"text-align: center;\" align=\"center\">Do not let your thoughts wander.</p>\n<p style=\"text-align: center;\" align=\"center\">Be powerful.</p>\n<p style=\"text-align: center;\" align=\"center\">Know yourself.</p>\n<p style=\"text-align: center;\" align=\"center\"> Decide to be in control of your reality.</p>\n<p style=\"text-align: center;\" align=\"center\">There are no victims except those who have given up their power.</p>\n<p style=\"text-align: center;\" align=\"center\">You possess the energy, create and take control of your destiny</p>','You Possess The Energy','','inherit','closed','closed','','67-autosave','','','2013-05-09 07:33:41','2013-05-09 11:33:41','',67,'http://divyayogamonteregie.org/web/?p=69',0,'revision','',0),(70,1,'2013-05-09 07:35:47','2013-05-09 11:35:47','<p align=\"center\">Today I have decided,</p>\r\n<p align=\"center\">that it\'s time to take control.</p>\r\n<p align=\"center\">There won\'t be anymore sitting,</p>\r\n<p align=\"center\">and waiting, this is my goal.</p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\">Today I see it so clearly,</p>\r\n<p align=\"center\">I am all that I have.</p>\r\n<p align=\"center\">If I want to get something done,</p>\r\n<p align=\"center\">it\'s up to me to pave my own path.</p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\">Today I will set my goal,</p>\r\n<p align=\"center\">and work to see it through.</p>\r\n<p align=\"center\">I\'m tired of being afraid,</p>\r\n<p align=\"center\">it\'s time for my dreams to come true.</p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\">Today I am quite happy,</p>','Today I','','publish','closed','closed','','today-i','','','2013-05-09 07:35:47','2013-05-09 11:35:47','',39,'http://divyayogamonteregie.org/web/?page_id=70',0,'page','',0),(71,1,'2013-05-09 07:35:35','2013-05-09 11:35:35','<p align=\"center\"></p>\n<p align=\"center\"></p>\n<p align=\"center\">Today I have decided,</p>\n<p align=\"center\">that it\'s time to take control.</p>\n<p align=\"center\">There won\'t be anymore sitting,</p>\n<p align=\"center\">and waiting, this is my goal.</p>\n<p align=\"center\"></p>\n<p align=\"center\">Today I see it so clearly,</p>\n<p align=\"center\">I am all that I have.</p>\n<p align=\"center\">If I want to get something done,</p>\n<p align=\"center\">it\'s up to me to pave my own path.</p>\n<p align=\"center\"></p>\n<p align=\"center\">Today I will set my goal,</p>\n<p align=\"center\">and work to see it through.</p>\n<p align=\"center\">I\'m tired of being afraid,</p>\n<p align=\"center\">it\'s time for my dreams to come true.</p>\n<p align=\"center\"></p>\n<p align=\"center\">Today I am quite happy,</p>','Today I','','inherit','closed','closed','','70-revision','','','2013-05-09 07:35:35','2013-05-09 11:35:35','',70,'http://divyayogamonteregie.org/web/?p=71',0,'revision','',0),(72,1,'2013-05-09 07:36:36','2013-05-09 11:36:36','<p align=\"center\">Of all the things you can do,</p>\r\n<p align=\"center\">promise yourself you will try.</p>\r\n<p align=\"center\">It doesn\'t even matter if you win,</p>\r\n<p align=\"center\">as long as you apply.</p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\">No one can ask anything of you except yourself.</p>\r\n<p align=\"center\">If you don\'t want to make a move,</p>\r\n<p align=\"center\">it\'s you who\'ll be left out.</p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\">So don\'t allow yourself to miss out on important things.</p>\r\n<p align=\"center\">You may not feel that they are worthy,</p>\r\n<p align=\"center\">yet they can turn out to be your wings.</p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\">Experiences make us whole,</p>\r\n<p align=\"center\">and make life feel fulfilled.</p>\r\n<p align=\"center\">And when it\'s time to look back,</p>\r\n<p align=\"center\">don\'t let yourself feel unskilled.</p>\r\n<p align=\"center\"></p>\r\n<p align=\"center\">So don\'t allow yourself to stop,</p>\r\n<p align=\"center\">for no apparent reason.</p>\r\n<p align=\"center\">Promise yourself you will try,</p>\r\n<p align=\"center\">and take on any season.</p>','Promise Yourself-now.','','publish','closed','closed','','promise-yourself-now','','','2013-05-09 07:36:36','2013-05-09 11:36:36','',39,'http://divyayogamonteregie.org/web/?page_id=72',0,'page','',0),(73,1,'2013-05-09 07:36:24','2013-05-09 11:36:24','<p align=\"center\"></p>\n<p align=\"center\"></p>\n<p align=\"center\">Of all the things you can do,</p>\n<p align=\"center\">promise yourself you will try.</p>\n<p align=\"center\">It doesn\'t even matter if you win,</p>\n<p align=\"center\">as long as you apply.</p>\n<p align=\"center\"></p>\n<p align=\"center\">No one can ask anything of you except yourself.</p>\n<p align=\"center\">If you don\'t want to make a move,</p>\n<p align=\"center\">it\'s you who\'ll be left out.</p>\n<p align=\"center\"></p>\n<p align=\"center\">So don\'t allow yourself to miss out on important things.</p>\n<p align=\"center\">You may not feel that they are worthy,</p>\n<p align=\"center\">yet they can turn out to be your wings.</p>\n<p align=\"center\"></p>\n<p align=\"center\">Experiences make us whole,</p>\n<p align=\"center\">and make life feel fulfilled.</p>\n<p align=\"center\">And when it\'s time to look back,</p>\n<p align=\"center\">don\'t let yourself feel unskilled.</p>\n<p align=\"center\"></p>\n<p align=\"center\">So don\'t allow yourself to stop,</p>\n<p align=\"center\">for no apparent reason.</p>\n<p align=\"center\">Promise yourself you will try,</p>\n<p align=\"center\">and take on any season.</p>','Promise Yourself-now.','','inherit','closed','closed','','72-revision','','','2013-05-09 07:36:24','2013-05-09 11:36:24','',72,'http://divyayogamonteregie.org/web/?p=73',0,'revision','',0),(74,1,'2013-05-09 07:37:14','2013-05-09 11:37:14','<p align=\"center\">I used to have a comfort zone where I knew I wouldn\'t fail.\r\nThe same four walls and busywork were really more like jail.</p>\r\n<p align=\"center\">I longed so much to do the things I\'d never done before,\r\nBut stayed inside my comfort zone and paced the same old floor.</p>\r\n<p align=\"center\">I claimed to be so busy with the things inside the zone,\r\nBut deep inside I longed for something special of my own.</p>\r\n<p align=\"center\">I couldn\'t let my life go by just watching others win.\r\nI held my breath; I stepped outside and let the change begin.\r\nI took a step and with new strength I\'d never felt before,\r\nI kissed my comfort zone goodbye and closed and locked the door.</p>\r\n<p align=\"center\">If you\'re in a comfort zone, afraid to venture out,\r\nRemember that all winners were at one time filled with doubt.\r\nA step or two and will power can make your dreams come true.</p>\r\n<p align=\"center\">Reach for your future with a smile; success is there for you!</p>','My Comfort Zone','','publish','closed','closed','','my-comfort-zone','','','2013-05-09 07:37:14','2013-05-09 11:37:14','',39,'http://divyayogamonteregie.org/web/?page_id=74',0,'page','',0),(75,1,'2013-05-09 07:37:06','2013-05-09 11:37:06','<p align=\"center\">\nI used to have a comfort zone where I knew I wouldn\'t fail.\nThe same four walls and busywork were really more like jail.</p>\n<p align=\"center\">I longed so much to do the things I\'d never done before,\nBut stayed inside my comfort zone and paced the same old floor.</p>\n<p align=\"center\">I claimed to be so busy with the things inside the zone,\nBut deep inside I longed for something special of my own.</p>\n<p align=\"center\">I couldn\'t let my life go by just watching others win.\nI held my breath; I stepped outside and let the change begin.\nI took a step and with new strength I\'d never felt before,\nI kissed my comfort zone goodbye and closed and locked the door.</p>\n<p align=\"center\">If you\'re in a comfort zone, afraid to venture out,\nRemember that all winners were at one time filled with doubt.\nA step or two and will power can make your dreams come true.</p>\n<p align=\"center\">Reach for your future with a smile; success is there for you!</p>','My Comfort Zone','','inherit','closed','closed','','74-revision','','','2013-05-09 07:37:06','2013-05-09 11:37:06','',74,'http://divyayogamonteregie.org/web/?p=75',0,'revision','',0),(76,1,'2013-05-09 07:37:55','2013-05-09 11:37:55','<p align=\"center\">By Berton Braley</p>\r\n<p align=\"center\">Start where you stand and never mind the past,\r\nThe past won\'t help you in beginning new,\r\nIf you have left it all behind at last\r\nWhy, that\'s enough, you\'re done with it, you\'re through;\r\nThis is another chapter in the book,\r\nThis is another race that you have planned,\r\nDon\'t give the vanished days a backward look,\r\nStart where you stand.</p>\r\n<p align=\"center\">The world won\'t care about your old defeats\r\nIf you can start anew and win success;\r\nThe future is your time, and time is fleet\r\nAnd there is much of work and strain and stress;\r\nForget the buried woes and dead despairs,\r\nHere is a brand-new trial right at hand,\r\nThe future is for him who does and dares,\r\nStart where you stand.</p>','Start Where You Stand','','publish','closed','closed','','start-where-you-stand','','','2013-05-09 07:37:55','2013-05-09 11:37:55','',39,'http://divyayogamonteregie.org/web/?page_id=76',0,'page','',0),(77,1,'2013-05-09 07:37:46','2013-05-09 11:37:46','<p align=\"center\"><b>\n</b>By Berton Braley</p>\n<p align=\"center\">Start where you stand and never mind the past,\nThe past won\'t help you in beginning new,\nIf you have left it all behind at last\nWhy, that\'s enough, you\'re done with it, you\'re through;\nThis is another chapter in the book,\nThis is another race that you have planned,\nDon\'t give the vanished days a backward look,\nStart where you stand.</p>\n<p align=\"center\">The world won\'t care about your old defeats\nIf you can start anew and win success;\nThe future is your time, and time is fleet\nAnd there is much of work and strain and stress;\nForget the buried woes and dead despairs,\nHere is a brand-new trial right at hand,\nThe future is for him who does and dares,\nStart where you stand.</p>','Start Where You Stand','','inherit','closed','closed','','76-revision','','','2013-05-09 07:37:46','2013-05-09 11:37:46','',76,'http://divyayogamonteregie.org/web/?p=77',0,'revision','',0),(109,1,'2013-05-09 00:01:06','2013-05-09 04:01:06','<span style=\"color: #0000ff;\">To make basic yoga practice easily accessible to everyone without charge.</span>\r\n\r\n<span style=\"color: #0000ff;\">Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</span>\r\n\r\n<span style=\"color: #0000ff;\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</span>\r\n\r\n<span style=\"color: #0000ff;\">After yoga super food i. e. grapes and banana are available for Yogies.</span>\r\n\r\n<span style=\"color: #0000ff;\">Yoga is a marvelous means of exercising, stretching, and freeing the body so it can be a healthy, long-lived, and vital instrument for the body,mind and soul. We also create an environment where people can interact for their betterment.</span>','Our mission','','inherit','closed','closed','','2-revision-v1','','','2013-05-09 00:01:06','2013-05-09 04:01:06','',2,'http://divyayogamonteregie.org/web/?p=109',0,'revision','',0),(79,1,'2013-05-09 07:41:35','2013-05-09 11:41:35','<p style=\"text-align: justify;\">These stories should help us in following two of the limbs of yoga –Yama and Niyama. They should help in our overall well being and positive affirmations.</p>\r\n<p style=\"text-align: justify;\">These stories are compiled here for easy reference. We would like to thank the respective  original authors for their contribution</p>','Stories','','publish','closed','closed','','stories','','','2013-07-09 20:13:49','2013-07-10 00:13:49','',0,'http://divyayogamonteregie.org/web/?page_id=79',0,'page','',0),(80,1,'2013-05-09 07:41:27','2013-05-09 11:41:27','These stories should help us in following two of the limbs of yoga –Yama and Niyama. They should help in our overall well being and positive affirmations.\n\nThese stories are compiled here for easy reference. We would like to thank the respective  original authors for their contribution','Stories','','inherit','closed','closed','','79-revision','','','2013-05-09 07:41:27','2013-05-09 11:41:27','',79,'http://divyayogamonteregie.org/web/?p=80',0,'revision','',0),(81,1,'2013-07-09 20:13:55','2013-07-10 00:13:55','<p style=\"text-align: justify;\">These stories should help us in following two of the limbs of yoga –Yama and Niyama. They should help in our overall well being and positive affirmations.</p>\r\n<p style=\"text-align: justify;\">These stories are compiled here for easy reference. We would like to thank the respective  original authors for their contribution</p>','Stories','','inherit','closed','closed','','79-autosave','','','2013-07-09 20:13:55','2013-07-10 00:13:55','',79,'http://divyayogamonteregie.org/web/?p=81',0,'revision','',0),(82,1,'2013-05-09 07:41:35','2013-05-09 11:41:35','These stories should help us in following two of the limbs of yoga –Yama and Niyama. They should help in our overall well being and positive affirmations.\r\n\r\nThese stories are compiled here for easy reference. We would like to thank the respective  original authors for their contribution','Stories','','inherit','closed','closed','','79-revision-2','','','2013-05-09 07:41:35','2013-05-09 11:41:35','',79,'http://divyayogamonteregie.org/web/?p=82',0,'revision','',0),(83,1,'2013-05-09 07:43:05','2013-05-09 11:43:05','These stories should help us in following two of the limbs of yoga –Yama and Niyama. They should help in our overall well being and positive affirmations.\r\n\r\nThese stories are compiled here for easy reference. We would like to thank the respective  original authors for their contribution','Stories','','inherit','closed','closed','','79-revision-3','','','2013-05-09 07:43:05','2013-05-09 11:43:05','',79,'http://divyayogamonteregie.org/web/?p=83',0,'revision','',0),(84,1,'2013-05-09 07:43:58','2013-05-09 11:43:58','These stories should help us in following two of the limbs of yoga –Yama and Niyama. They should help in our overall well being and positive affirmations.\r\n\r\nThese stories are compiled here for easy reference. We would like to thank the respective  original authors for their contribution','Stories','','inherit','closed','closed','','79-revision-4','','','2013-05-09 07:43:58','2013-05-09 11:43:58','',79,'http://divyayogamonteregie.org/web/?p=84',0,'revision','',0),(85,1,'2013-05-09 07:45:17','2013-05-09 11:45:17','These stories should help us in following two of the limbs of yoga –Yama and Niyama. They should help in our overall well being and positive affirmations.\r\n\r\nThese stories are compiled here for easy reference. We would like to thank the respective  original authors for their contribution','Stories','','inherit','closed','closed','','79-revision-5','','','2013-05-09 07:45:17','2013-05-09 11:45:17','',79,'http://divyayogamonteregie.org/web/?p=85',0,'revision','',0),(86,1,'2013-05-09 07:46:06','2013-05-09 11:46:06','These stories should help us in following two of the limbs of yoga –Yama and Niyama. They should help in our overall well being and positive affirmations.\r\n\r\nThese stories are compiled here for easy reference. We would like to thank the respective  original authors for their contribution','Stories','','inherit','closed','closed','','79-revision-6','','','2013-05-09 07:46:06','2013-05-09 11:46:06','',79,'http://divyayogamonteregie.org/web/?p=86',0,'revision','',0),(87,1,'2013-05-09 07:46:39','2013-05-09 11:46:39','These stories should help us in following two of the limbs of yoga –Yama and Niyama. They should help in our overall well being and positive affirmations.\r\n\r\nThese stories are compiled here for easy reference. We would like to thank the respective  original authors for their contribution','Stories','','inherit','closed','closed','','79-revision-7','','','2013-05-09 07:46:39','2013-05-09 11:46:39','',79,'http://divyayogamonteregie.org/web/?p=87',0,'revision','',0),(88,1,'2013-05-09 07:47:19','2013-05-09 11:47:19','These stories should help us in following two of the limbs of yoga –Yama and Niyama. They should help in our overall well being and positive affirmations.\r\n\r\nThese stories are compiled here for easy reference. We would like to thank the respective  original authors for their contribution','Stories','','inherit','closed','closed','','79-revision-8','','','2013-05-09 07:47:19','2013-05-09 11:47:19','',79,'http://divyayogamonteregie.org/web/?p=88',0,'revision','',0),(89,1,'2013-05-09 08:29:53','2013-05-09 12:29:53','<img class=\"alignnone size-full wp-image-90\" style=\"font-family: \'Open Sans\', sans-serif; font-size: 15px; font-style: normal; font-variant: normal; line-height: 1.62em;\" alt=\"giraffle\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/05/giraffle.png\" width=\"256\" height=\"265\" />\r\n<p style=\"text-align: justify;\">Bringing a giraffe into the world is a tall order. A baby giraffe falls 10 feet from its mother\'s womb and usually lands on its back. Within seconds it rolls over and tucks its legs under its body. From this position it considers the world for the first time and shakes off the last vestiges of the birthing fluid from its eyes and ears. Then the mother giraffe rudely introduces its offspring to the reality of life. In his book, \"A View from the Zoo\", Gary Richmond describes</p>\r\n<p style=\"text-align: justify;\">how a newborn giraffe learns its first lesson.\r\nThe mother giraffe lowers her head long enough to take a quick look. Then she positions herself directly over her calf. She waits for about a minute, and then she does the most unreasonable thing. She swings her long, pendulous leg outward and kicks her baby, so that it is sent sprawling head over heels.</p>\r\n<p style=\"text-align: justify;\">When it doesn\'t get up, the violent process is repeated over and over again. The struggle to rise is momentous. As the baby calf grows tired, the mother kicks it again to stimulate its efforts. Finally, the calf stands for the first time on its wobbly legs.</p>\r\n<p style=\"text-align: justify;\">Then the mother giraffe does the most remarkable thing. She kicks it off its feet again. Why? She wants it to remember how it got up. In the wild, baby giraffes must be able to get up as quickly as possible to stay with the herd, where there is safety. Lions, hyenas, leopards, and wild hunting dogs all enjoy young giraffes, and they\'d get it too, if the mother didn\'t teach her calf to get up quickly and get with it.</p>\r\n<p style=\"text-align: justify;\">The late Irving Stone understood this. He spent a lifetime studying greatness, writing novelized biographies of such men as Michelangelo, Vincent van Gogh, Sigmund Freud, and Charles Darwin.</p>\r\n<p style=\"text-align: justify;\">Stone was once asked if he had found a thread that runs through the lives of all these exceptional people. He said, \"I write about people who sometime in their life have a vision or dream of something that should be accomplished and they go to work.</p>\r\n<p style=\"text-align: justify;\">\"They are beaten over the head, knocked down, vilified, and for years they get nowhere. But every time they\'re knocked down they stand up. You cannot destroy these people. And at the end of their lives they\'ve accomplished some modest part of what they set out to do.\"</p>','Giraffe-mother and baby','','publish','closed','closed','','giraffe-mother-and-baby','','','2013-07-09 20:38:09','2013-07-10 00:38:09','',79,'http://divyayogamonteregie.org/web/?page_id=89',0,'page','',0),(90,1,'2013-05-09 08:10:04','2013-05-09 12:10:04','','giraffle','','inherit','closed','closed','','giraffle','','','2013-05-09 08:10:04','2013-05-09 12:10:04','',89,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/05/giraffle.png',0,'attachment','image/png',0),(91,1,'2013-05-09 08:10:58','2013-05-09 12:10:58','','butterfly','','inherit','closed','closed','','butterfly','','','2013-05-09 08:10:58','2013-05-09 12:10:58','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/05/butterfly.png',0,'attachment','image/png',0),(94,1,'2013-05-09 08:28:18','2013-05-09 12:28:18','Bringing a giraffe in<img class=\"alignnone size-full wp-image-90\" style=\"font-family: \'Open Sans\', sans-serif; font-size: 15px; line-height: 1.62em;\" alt=\"giraffle\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/05/giraffle.png\" width=\"256\" height=\"265\" />to the world is a tall order. A baby giraffe falls 10 feet from its mother\'s womb and usually lands on its back. Within seconds it rolls over and tucks its legs under its body. From this position it considers the world for the first time and shakes off the last vestiges of the birthing fluid from its eyes and ears. Then the mother giraffe rudely introduces its offspring to the reality of life. In his book, \"A View from the Zoo\", Gary Richmond describes\r\n\r\nhow a newborn giraffe learns its first lesson.\r\nThe mother giraffe lowers her head long enough to take a quick look. Then she positions herself directly over her calf. She waits for about a minute, and then she does the most unreasonable thing. She swings her long, pendulous leg outward and kicks her baby, so that it is sent sprawling head over heels.\r\n\r\nWhen it doesn\'t get up, the violent process is repeated over and over again. The struggle to rise is momentous. As the baby calf grows tired, the mother kicks it again to stimulate its efforts. Finally, the calf stands for the first time on its wobbly legs.\r\n\r\nThen the mother giraffe does the most remarkable thing. She kicks it off its feet again. Why? She wants it to remember how it got up. In the wild, baby giraffes must be able to get up as quickly as possible to stay with the herd, where there is safety. Lions, hyenas, leopards, and wild hunting dogs all enjoy young giraffes, and they\'d get it too, if the mother didn\'t teach her calf to get up quickly and get with it.\r\n\r\nThe late Irving Stone understood this. He spent a lifetime studying greatness, writing novelized biographies of such men as Michelangelo, Vincent van Gogh, Sigmund Freud, and Charles Darwin.\r\n\r\nStone was once asked if he had found a thread that runs through the lives of all these exceptional people. He said, \"I write about people who sometime in their life have a vision or dream of something that should be accomplished and they go to work.\r\n\r\n\"They are beaten over the head, knocked down, vilified, and for years they get nowhere. But every time they\'re knocked down they stand up. You cannot destroy these people. And at the end of their lives they\'ve accomplished some modest part of what they set out to do.\"','Giraffe-mother and baby','','inherit','closed','closed','','89-revision-3','','','2013-05-09 08:28:18','2013-05-09 12:28:18','',89,'http://divyayogamonteregie.org/web/?p=94',0,'revision','',0),(92,1,'2013-05-09 08:12:12','2013-05-09 12:12:12','Bringing a giraffe into the world is a tall order. A baby giraffe falls 10 feet from its mother\'s womb and usually lands on its back. Within seconds it rolls over and tucks its legs under its body. From this position it considers the world for the first time and shakes off the last vestiges of the birthing fluid from its eyes and ears. Then the mother giraffe rudely introduces its offspring to the reality of life. In his book, \"A View from the Zoo\", Gary Richmond describes <!--[if gte vml 1]><v:shapetype id=\"_x0000_t75\" coordsize=\"21600,21600\" o:spt=\"75\" o:preferrelative=\"t\"\n path=\"m@4@5l@4@11@9@11@9@5xe\" filled=\"f\" stroked=\"f\">\n <v:stroke joinstyle=\"miter\"></v:stroke>\n <v:formulas>\n  <v:f eqn=\"if lineDrawn pixelLineWidth 0\"></v:f>\n  <v:f eqn=\"sum @0 1 0\"></v:f>\n  <v:f eqn=\"sum 0 0 @1\"></v:f>\n  <v:f eqn=\"prod @2 1 2\"></v:f>\n  <v:f eqn=\"prod @3 21600 pixelWidth\"></v:f>\n  <v:f eqn=\"prod @3 21600 pixelHeight\"></v:f>\n  <v:f eqn=\"sum @0 0 1\"></v:f>\n  <v:f eqn=\"prod @6 1 2\"></v:f>\n  <v:f eqn=\"prod @7 21600 pixelWidth\"></v:f>\n  <v:f eqn=\"sum @8 21600 0\"></v:f>\n  <v:f eqn=\"prod @7 21600 pixelHeight\"></v:f>\n  <v:f eqn=\"sum @10 21600 0\"></v:f>\n </v:formulas>\n <v:path o:extrusionok=\"f\" gradientshapeok=\"t\" o:connecttype=\"rect\"></v:path>\n <o:lock v:ext=\"edit\" aspectratio=\"t\"></o:lock>\n</v:shapetype><v:shape id=\"_x0000_s1026\" type=\"#_x0000_t75\" alt=\"motivational\"\n style=\'position:absolute;margin-left:34.25pt;margin-top:16.4pt;width:95.25pt;\n height:112.5pt;z-index:251661824;mso-wrap-distance-left:0;\n mso-wrap-distance-right:0;mso-position-horizontal:right;\n mso-position-horizontal-relative:text;mso-position-vertical-relative:line\'\n o:allowoverlap=\"f\">\n <v:imagedata src=\"file:///C:\\Users\\JOCELY~1\\AppData\\Local\\Temp\\msohtmlclip1\\01\\clip_image001.jpg\"\n  o:title=\"giraffe\" cropleft=\"9102f\" cropright=\"10194f\"></v:imagedata>\n <w:wrap type=\"square\"></w:wrap>\n</v:shape>< ![endif]--><!--[if !vml]--><img alt=\"motivational\" src=\"file:///C:/Users/JOCELY~1/AppData/Local/Temp/msohtmlclip1/01/clip_image002.jpg\" width=\"127\" height=\"150\" align=\"right\" /><!--[endif]-->how a newborn giraffe learns its first lesson.\nThe mother giraffe lowers her head long enough to take a quick look. Then she positions herself directly over her calf. She waits for about a minute, and then she does the most unreasonable thing. She swings her long, pendulous leg outward and kicks her baby, so that it is sent sprawling head over heels.\n\nWhen it doesn\'t get up, the violent process is repeated over and over again. The struggle to rise is momentous. As the baby calf grows tired, the mother kicks it again to stimulate its efforts. Finally, the calf stands for the first time on its wobbly legs.\n\nThen the mother giraffe does the most remarkable thing. She kicks it off its feet again. Why? She wants it to remember how it got up. In the wild, baby giraffes must be able to get up as quickly as possible to stay with the herd, where there is safety. Lions, hyenas, leopards, and wild hunting dogs all enjoy young giraffes, and they\'d get it too, if the mother didn\'t teach her calf to get up quickly and get with it.\n\nThe late Irving Stone understood this. He spent a lifetime studying greatness, writing novelized biographies of such men as Michelangelo, Vincent van Gogh, Sigmund Freud, and Charles Darwin.\n\nStone was once asked if he had found a thread that runs through the lives of all these exceptional people. He said, \"I write about people who sometime in their life have a vision or dream of something that should be accomplished and they go to work.\n\n\"They are beaten over the head, knocked down, vilified, and for years they get nowhere. But every time they\'re knocked down they stand up. You cannot destroy these people. And at the end of their lives they\'ve accomplished some modest part of what they set out to do.\"','Giraffe-mother and baby','','inherit','closed','closed','','89-revision','','','2013-05-09 08:12:12','2013-05-09 12:12:12','',89,'http://divyayogamonteregie.org/web/?p=92',0,'revision','',0),(93,1,'2013-05-09 08:27:58','2013-05-09 12:27:58','Bringing a giraffe into the world is a tall order. A baby giraffe falls 10 feet from its mother\'s womb and usually lands on its back. Within seconds it rolls over and tucks its legs under its body. From this position it considers the world for the first time and shakes off the last vestiges of the birthing fluid from its eyes and ears. Then the mother giraffe rudely introduces its offspring to the reality of life. In his book, \"A View from the Zoo\", Gary Richmond describes <!--[if gte vml 1]><v:shapetype id=\"_x0000_t75\" coordsize=\"21600,21600\" o:spt=\"75\" o:preferrelative=\"t\"\npath=\"m@4@5l@4@11@9@11@9@5xe\" filled=\"f\" stroked=\"f\">\n<v:stroke joinstyle=\"miter\"></v:stroke>\n<v:formulas>\n<v:f eqn=\"if lineDrawn pixelLineWidth 0\"></v:f>\n<v:f eqn=\"sum @0 1 0\"></v:f>\n<v:f eqn=\"sum 0 0 @1\"></v:f>\n<v:f eqn=\"prod @2 1 2\"></v:f>\n<v:f eqn=\"prod @3 21600 pixelWidth\"></v:f>\n<v:f eqn=\"prod @3 21600 pixelHeight\"></v:f>\n<v:f eqn=\"sum @0 0 1\"></v:f>\n<v:f eqn=\"prod @6 1 2\"></v:f>\n<v:f eqn=\"prod @7 21600 pixelWidth\"></v:f>\n<v:f eqn=\"sum @8 21600 0\"></v:f>\n<v:f eqn=\"prod @7 21600 pixelHeight\"></v:f>\n<v:f eqn=\"sum @10 21600 0\"></v:f>\n</v:formulas>\n<v:path o:extrusionok=\"f\" gradientshapeok=\"t\" o:connecttype=\"rect\"></v:path>\n<o:lock v:ext=\"edit\" aspectratio=\"t\"></o:lock>\n</v:shapetype><v:shape id=\"_x0000_s1026\" type=\"#_x0000_t75\" alt=\"motivational\"\nstyle=\'position:absolute;margin-left:34.25pt;margin-top:16.4pt;width:95.25pt;\nheight:112.5pt;z-index:251661824;mso-wrap-distance-left:0;\nmso-wrap-distance-right:0;mso-position-horizontal:right;\nmso-position-horizontal-relative:text;mso-position-vertical-relative:line\'\no:allowoverlap=\"f\">\n<v:imagedata src=\"file:///C:\\Users\\JOCELY~1\\AppData\\Local\\Temp\\msohtmlclip1\\01\\clip_image001.jpg\"\no:title=\"giraffe\" cropleft=\"9102f\" cropright=\"10194f\"></v:imagedata>\n<w:wrap type=\"square\"></w:wrap>\n</v:shape>< ![endif]--><!--[if !vml]--><img alt=\"motivational\" src=\"file:///C:/Users/JOCELY~1/AppData/Local/Temp/msohtmlclip1/01/clip_image002.jpg\" width=\"127\" height=\"150\" align=\"right\" /><!--[endif]-->how a newborn giraffe learns its first lesson.\nThe mother giraffe lowers her head long enough to take a quick look. Then she positions herself directly over her calf. She waits for about a minute, and then she does the most unreasonable thing. She swings her long, pendulous leg outward and kicks her baby, so that it is sent sprawling head over heels.\n\nWhen it doesn\'t get up, the violent process is repeated over and over again. The struggle to rise is momentous. As the baby calf grows tired, the mother kicks it again to stimulate its efforts. Finally, the calf stands for the first time on its wobbly legs.\n\nThen the mother giraffe does the most remarkable thing. She kicks it off its feet again. Why? She wants it to remember how it got up. In the wild, baby giraffes must be able to get up as quickly as possible to stay with the herd, where there is safety. Lions, hyenas, leopards, and wild hunting dogs all enjoy young giraffes, and they\'d get it too, if the mother didn\'t teach her calf to get up quickly and get with it.\n\nThe late Irving Stone understood this. He spent a lifetime studying greatness, writing novelized biographies of such men as Michelangelo, Vincent van Gogh, Sigmund Freud, and Charles Darwin.\n\nStone was once asked if he had found a thread that runs through the lives of all these exceptional people. He said, \"I write about people who sometime in their life have a vision or dream of something that should be accomplished and they go to work.\n\n\"They are beaten over the head, knocked down, vilified, and for years they get nowhere. But every time they\'re knocked down they stand up. You cannot destroy these people. And at the end of their lives they\'ve accomplished some modest part of what they set out to do.\"','Giraffe-mother and baby','','inherit','closed','closed','','89-revision-2','','','2013-05-09 08:27:58','2013-05-09 12:27:58','',89,'http://divyayogamonteregie.org/web/?p=93',0,'revision','',0),(95,1,'2013-05-09 08:28:58','2013-05-09 12:28:58','Bringing a giraffe into the world is a tall order. A baby giraffe falls 10 feet from its mother\'s womb and usually lands on its back. Within seconds it rolls over and tucks its legs under its body. From this position it considers the world for the first time and shakes off the last vestiges of the birthing fluid from its eyes and ears. Then the mother giraffe rudely introduces its offspring to the reality of life. In his book, \"A View from the Zoo\", Gary Richmond describes\n\nhow a newborn giraffe learns its first lesson.\nThe mother giraffe lowers her head long enough to take a quick look. Then she positions herself directly over her calf. She waits for about a minute, and then she does the most unreasonable thing. <img class=\"alignnone size-full wp-image-90\" style=\"font-family: \'Open Sans\', sans-serif; font-size: 15px; font-style: normal; font-variant: normal; line-height: 1.62em;\" alt=\"giraffle\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/05/giraffle.png\" width=\"256\" height=\"265\" />She swings her long, pendulous leg outward and kicks her baby, so that it is sent sprawling head over heels.\n\nWhen it doesn\'t get up, the violent process is repeated over and over again. The struggle to rise is momentous. As the baby calf grows tired, the mother kicks it again to stimulate its efforts. Finally, the calf stands for the first time on its wobbly legs.\n\nThen the mother giraffe does the most remarkable thing. She kicks it off its feet again. Why? She wants it to remember how it got up. In the wild, baby giraffes must be able to get up as quickly as possible to stay with the herd, where there is safety. Lions, hyenas, leopards, and wild hunting dogs all enjoy young giraffes, and they\'d get it too, if the mother didn\'t teach her calf to get up quickly and get with it.\n\nThe late Irving Stone understood this. He spent a lifetime studying greatness, writing novelized biographies of such men as Michelangelo, Vincent van Gogh, Sigmund Freud, and Charles Darwin.\n\nStone was once asked if he had found a thread that runs through the lives of all these exceptional people. He said, \"I write about people who sometime in their life have a vision or dream of something that should be accomplished and they go to work.\n\n\"They are beaten over the head, knocked down, vilified, and for years they get nowhere. But every time they\'re knocked down they stand up. You cannot destroy these people. And at the end of their lives they\'ve accomplished some modest part of what they set out to do.\"','Giraffe-mother and baby','','inherit','closed','closed','','89-revision-4','','','2013-05-09 08:28:58','2013-05-09 12:28:58','',89,'http://divyayogamonteregie.org/web/?p=95',0,'revision','',0),(96,1,'2013-05-09 08:29:16','2013-05-09 12:29:16','<img class=\"alignnone size-full wp-image-90\" style=\"font-family: \'Open Sans\', sans-serif; font-size: 15px; font-style: normal; font-variant: normal; line-height: 1.62em;\" alt=\"giraffle\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/05/giraffle.png\" width=\"256\" height=\"265\" />Bringing a giraffe into the world is a tall order. A baby giraffe falls 10 feet from its mother\'s womb and usually lands on its back. Within seconds it rolls over and tucks its legs under its body. From this position it considers the world for the first time and shakes off the last vestiges of the birthing fluid from its eyes and ears. Then the mother giraffe rudely introduces its offspring to the reality of life. In his book, \"A View from the Zoo\", Gary Richmond describes\r\n\r\nhow a newborn giraffe learns its first lesson.\r\nThe mother giraffe lowers her head long enough to take a quick look. Then she positions herself directly over her calf. She waits for about a minute, and then she does the most unreasonable thing. She swings her long, pendulous leg outward and kicks her baby, so that it is sent sprawling head over heels.\r\n\r\nWhen it doesn\'t get up, the violent process is repeated over and over again. The struggle to rise is momentous. As the baby calf grows tired, the mother kicks it again to stimulate its efforts. Finally, the calf stands for the first time on its wobbly legs.\r\n\r\nThen the mother giraffe does the most remarkable thing. She kicks it off its feet again. Why? She wants it to remember how it got up. In the wild, baby giraffes must be able to get up as quickly as possible to stay with the herd, where there is safety. Lions, hyenas, leopards, and wild hunting dogs all enjoy young giraffes, and they\'d get it too, if the mother didn\'t teach her calf to get up quickly and get with it.\r\n\r\nThe late Irving Stone understood this. He spent a lifetime studying greatness, writing novelized biographies of such men as Michelangelo, Vincent van Gogh, Sigmund Freud, and Charles Darwin.\r\n\r\nStone was once asked if he had found a thread that runs through the lives of all these exceptional people. He said, \"I write about people who sometime in their life have a vision or dream of something that should be accomplished and they go to work.\r\n\r\n\"They are beaten over the head, knocked down, vilified, and for years they get nowhere. But every time they\'re knocked down they stand up. You cannot destroy these people. And at the end of their lives they\'ve accomplished some modest part of what they set out to do.\"','Giraffe-mother and baby','','inherit','closed','closed','','89-revision-5','','','2013-05-09 08:29:16','2013-05-09 12:29:16','',89,'http://divyayogamonteregie.org/web/?p=96',0,'revision','',0),(97,1,'2013-05-09 08:29:36','2013-05-09 12:29:36','<img class=\"alignnone size-full wp-image-90\" style=\"font-family: \'Open Sans\', sans-serif; font-size: 15px; font-style: normal; font-variant: normal; line-height: 1.62em;\" alt=\"giraffle\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/05/giraffle.png\" width=\"256\" height=\"265\" />\r\n\r\nBringing a giraffe into the world is a tall order. A baby giraffe falls 10 feet from its mother\'s womb and usually lands on its back. Within seconds it rolls over and tucks its legs under its body. From this position it considers the world for the first time and shakes off the last vestiges of the birthing fluid from its eyes and ears. Then the mother giraffe rudely introduces its offspring to the reality of life. In his book, \"A View from the Zoo\", Gary Richmond describes\r\n\r\nhow a newborn giraffe learns its first lesson.\r\nThe mother giraffe lowers her head long enough to take a quick look. Then she positions herself directly over her calf. She waits for about a minute, and then she does the most unreasonable thing. She swings her long, pendulous leg outward and kicks her baby, so that it is sent sprawling head over heels.\r\n\r\nWhen it doesn\'t get up, the violent process is repeated over and over again. The struggle to rise is momentous. As the baby calf grows tired, the mother kicks it again to stimulate its efforts. Finally, the calf stands for the first time on its wobbly legs.\r\n\r\nThen the mother giraffe does the most remarkable thing. She kicks it off its feet again. Why? She wants it to remember how it got up. In the wild, baby giraffes must be able to get up as quickly as possible to stay with the herd, where there is safety. Lions, hyenas, leopards, and wild hunting dogs all enjoy young giraffes, and they\'d get it too, if the mother didn\'t teach her calf to get up quickly and get with it.\r\n\r\nThe late Irving Stone understood this. He spent a lifetime studying greatness, writing novelized biographies of such men as Michelangelo, Vincent van Gogh, Sigmund Freud, and Charles Darwin.\r\n\r\nStone was once asked if he had found a thread that runs through the lives of all these exceptional people. He said, \"I write about people who sometime in their life have a vision or dream of something that should be accomplished and they go to work.\r\n\r\n\"They are beaten over the head, knocked down, vilified, and for years they get nowhere. But every time they\'re knocked down they stand up. You cannot destroy these people. And at the end of their lives they\'ve accomplished some modest part of what they set out to do.\"','Giraffe-mother and baby','','inherit','closed','closed','','89-revision-6','','','2013-05-09 08:29:36','2013-05-09 12:29:36','',89,'http://divyayogamonteregie.org/web/?p=97',0,'revision','',0),(98,1,'2013-05-09 07:15:55','2013-05-09 11:15:55','These poems should help to enhance our morale and  in boosting energy. We need to keep our batteries charged and continuously encourage ourselves towards success and achieving our goals.\r\n\r\nThese poems are compiled here for easy reference. We would like to thank the respective  original authors for their contribution.','Poem and story','','inherit','closed','closed','','39-revision-3','','','2013-05-09 07:15:55','2013-05-09 11:15:55','',39,'http://divyayogamonteregie.org/web/?p=98',0,'revision','',0),(99,1,'2013-05-09 07:47:40','2013-05-09 11:47:40','These stories should help us in following two of the limbs of yoga –Yama and Niyama. They should help in our overall well being and positive affirmations.\r\n\r\nThese stories are compiled here for easy reference. We would like to thank the respective  original authors for their contribution','Stories','','inherit','closed','closed','','79-revision-9','','','2013-05-09 07:47:40','2013-05-09 11:47:40','',79,'http://divyayogamonteregie.org/web/?p=99',0,'revision','',0),(100,1,'2013-05-08 21:36:00','2013-05-08 21:36:00','<strong>Saturday 9-11 pm</strong>\r\n\r\nOur location\r\n\r\n675 Green, St. Lambert , Quebec J4P1V9\r\n\r\n&nbsp;\r\n\r\nPut google maps\r\n\r\n&nbsp;\r\n\r\n<a href=\"https://maps.google.ca/maps/empw?url=https:%2F%2Fmaps.google.ca%2Fmaps%3Ff%3Dq%26source%3Ds_q%26hl%3Den%26geocode%3D%26q%3D675%2BRue%2BGreen,%2BSaint-Lambert,%2BQuebec%2BJ4P1V9%26aq%3D0%26oq%3D675%2BGreen%2B,%2BSt.%2BLambert%2B,%2Bquebec%2BJ4P1V9%26sll%3D49.303974,-84.738438%26sspn%3D16.263009,43.286133%26vpsrc%3D0%26ie%3DUTF8%26hq%3D%26hnear%3D675%2BRue%2BGreen,%2BSaint-Lambert,%2BQu%25C3%25A9bec%2BJ4P%2B1V9%26t%3Dm%26z%3D14%26ll%3D45.509916,-73.504776%26output%3Dembed&amp;hl=en&amp;gl=ca\">Saint Lambert</a>\r\n\r\n&nbsp;\r\n\r\n<strong>Thursday  6:30 to 7:30</strong>\r\n\r\n1648 Langevin, St. Hubert, Quebec J4T 1X7\r\n\r\n&nbsp;\r\n\r\nPut google maps','Schedule & Location','','inherit','closed','closed','','9-revision-v1','','','2013-05-08 21:36:00','2013-05-08 21:36:00','',9,'http://divyayogamonteregie.org/web/?p=100',0,'revision','',0),(102,1,'2013-06-15 22:43:41','2013-06-16 02:43:41','<p align=\"center\"><span style=\"color: #0000ff;\"><strong>You Can Be Whatever </strong></span>\n<span style=\"color: #0000ff;\"> <strong> You Want To Be!</strong></span></p>\n<p align=\"center\"><span style=\"color: #0000ff;\">There is inside you</span>\n<span style=\"color: #0000ff;\"> all of the potential</span>\n<span style=\"color: #0000ff;\"> to be whatever you want to be,</span>\n<span style=\"color: #0000ff;\"> all of the energy</span>\n<span style=\"color: #0000ff;\"> to do whatever you want to do.</span></p>\n<p align=\"center\"><span style=\"color: #0000ff;\">Imagine yourself as you would like to be,</span>\n<span style=\"color: #0000ff;\"> doing what you want to do,</span>\n<span style=\"color: #0000ff;\"> and each day, take one step</span>\n<span style=\"color: #0000ff;\"> towards your dream.</span></p>\n<p align=\"center\"><span style=\"color: #0000ff;\">And though at times it may seem too</span>\n<span style=\"color: #0000ff;\"> difficult to continue,</span>\n<span style=\"color: #0000ff;\"> hold on to your dream.</span></p>\n<p align=\"center\"><span style=\"color: #0000ff;\">One morning you will awake to find</span>\n<span style=\"color: #0000ff;\"> that you are the person you dreamed of,</span>\n<span style=\"color: #0000ff;\"> doing what you wanted to do,</span>\n<span style=\"color: #0000ff;\"> simply because you had the courage</span>\n<span style=\"color: #0000ff;\"> to believe in your potential</span>\n<span style=\"color: #0000ff;\"> and to hold on to your dream</span></p>','Be Whatever  You Want To Be !','','inherit','closed','closed','','59-autosave','','','2013-06-15 22:43:41','2013-06-16 02:43:41','',59,'http://divyayogamonteregie.org/web/?p=102',0,'revision','',0),(380,1,'2013-05-09 07:14:13','2013-05-09 11:14:13','Coming soon','Photo Gallery - Publicity','','inherit','closed','closed','','35-revision-v1','','','2013-05-09 07:14:13','2013-05-09 11:14:13','',35,'http://divyayogamonteregie.org/web/?p=380',0,'revision','',0),(104,1,'2013-07-09 20:22:46','2013-07-10 00:22:46','<div>\r\n<div>\r\n<p style=\"text-align: justify;\"><em><span style=\"text-decoration: underline;\"><strong>From volunteers</strong></span></em></p>\r\n<p style=\"text-align: justify;\"><em><strong>Monique</strong></em></p>\r\n<p style=\"text-align: justify;\">Suite à un accident de voiture survenu il y a plusieurs années, mon corps était dans une souffrance chronique, mon esprit était pris dans des blocages inconscients de perturbations, de découragement, de tourment, de peur, et d’angoisse.  Puis un jour, j’ai fait la découverte du yoga.</p>\r\n<p style=\"text-align: justify;\">Au début, lors de mes pratiques, je n’arrivais pas à synchroniser les mouvements, mon corps était rigide et tendu,  je n’étais pas concentrée.  Après un certain temps, j’ai abandonné  les cours en me disant que je n’y arriverai jamais, que mon corps ne pouvait pas suivre, j’avais trop mal, je n’avais pas la dextérité  pour faire les postures, ni la flexibilité, l’attention, la concentration, etc., etc.</p>\r\n<p style=\"text-align: justify;\">Un peu plus tard, j’ai vu une annonce dans le journal qu’il y avait des cours de yoga offerts gratuitement à St-Lambert.  J’ai décidé de faire un autre essai.  Puis voilà  que ma vie s’est transformée.  J’ai commencé le yoga une fois semaine. Après quelques semaines de pratique,  j’ai été approchée par le professeur de yoga pour être bénévole, pour accueillir les gens. J’ai accepté de m’engager dans cette belle aventure dont je fais toujours partie depuis déjà presque 3 ans. Depuis,  j’ai exploré différentes approches de yoga qui m’ont amenée à un changement positif de vie complète.  Une bonne hygiène alimentaire, une flexibilité de mon corps et de mon esprit, de mes attitudes et comportements. J’ai appris à  cultiver le calme mental et ma force vitale intérieure par les exercices de respiration et de méditation. J’ai amélioré mon équilibre mental et physique,  l’écoute de mon corps, ma concentration et ma mémoire, ma coordination et l’acceptation de ce qui est.</p>\r\n<p style=\"text-align: justify;\">Je vis maintenant mon quotidien dans un mieux-être. Il y a encore place à l’amélioration, mais chaque jour j’intègre un style de vie de yoga qui m’amène de plus en plus à faire l’expérience d’une paix intérieure.</p>\r\n<p style=\"text-align: justify;\">*****************************<wbr></wbr>******************************<wbr></wbr>******************</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong>Michel …. 74</strong></span></p>\r\n<p style=\"text-align: justify;\">My duties:-</p>\r\n<p style=\"text-align: justify;\">To be always ready to help</p>\r\n<p style=\"text-align: justify;\">About me</p>\r\n<p style=\"text-align: justify;\">I am a very happy man. I enjoy the company of nice people.</p>\r\n<p style=\"text-align: justify;\">What yoga means to me? How it has affected my life?</p>\r\n<p style=\"text-align: justify;\">Yoga is for me an extraordinary choice of movements and exercices created by people who knew the human body and soul.</p>\r\n<p style=\"text-align: justify;\">Two hours of yoga per week complement my daily exercices that I do since 50 years plus. My body appreciate yoga and I feel balanced.</p>\r\n<p style=\"text-align: justify;\">Marathon Runner</p>\r\n<p style=\"text-align: justify;\">Bénévole (mes tâches)\r\nÊtre toujours prêt à aider</p>\r\n<p style=\"text-align: justify;\">À propos de moi\r\nJe suis un homme très heureux. J\'aime la compagnie des gens sympathiques.</p>\r\n<p style=\"text-align: justify;\">Ce que le yoga signifie pour moi? Comment cela a affecté ma vie?</p>\r\n<p style=\"text-align: justify;\">Le yoga est pour moi un choix extraordinaire de mouvements et d\'exercices créés par des gens qui connaissaient le corps humain et l\'âme.\r\nDeux heures de yoga par semaine complètent mes exercices quotidiens que je fais depuis 50 ans et plus. Mon corps apprécie le yoga et je me sens équilibrée.</p>\r\n<p style=\"text-align: justify;\"><strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\"><strong><span style=\"text-decoration: underline;\">Bénévole : Mihaela Frandes</span></strong></p>\r\n<p style=\"text-align: justify;\">Mon rôle</p>\r\n<p style=\"text-align: justify;\">J’arrive chaque samedi matin à 8.30am à l’Académie Chambly pour accueillir les nouvelles personnes. Je leur demande de compléter une fiche d’inscription et leur explique un peu comment se déroulent les cours.</p>\r\n<p style=\"text-align: justify;\">À propos de moi</p>\r\n<p style=\"text-align: justify;\">J’ai commencé les cours de yoga offerts par Meera Trivedi et Vinesh Saxena en juin 2010 et depuis j’y suis toujours fidèle J’avoue que le samedi est ma journée de la semaine la plus heureuse. Depuis, je fais du yoga régulièrement. Je suis d’origine roumaine, ma formation est en biochimie et dans la vie quotidienne je me préoccupe beaucoup de ma nutrition et j’aime beaucoup la nature. En été  je fais du vélo et en hiver j’adore faire du ski de fond. J’aime beaucoup aider les gens et le yoga m’aide à accomplir le bonheur dans ma vie. Ma dernière passion est la préparation de pain au levain – faire du bon pain est pour moi un immense plaisir.</p>\r\n<p style=\"text-align: justify;\">Qu’est que yoga signifie pour moi. Comment a-t-elle affecte ma vie</p>\r\n<p style=\"text-align: justify;\">Le yoga a amélioré la flexibilité de mon corps et esprit ainsi que ma santé. J’adore faire du yoga et je sens que le yoga est une marche dans mon évolution.</p>\r\n<p style=\"text-align: justify;\">Volunteer</p>\r\n<p style=\"text-align: justify;\">My duties: I came every Saturday morning at 8.30 at Chambly Academy in Saint Lambert to accommodate the new peoples. I give them the form to fill-up and explain a little bit how we function here.</p>\r\n<p style=\"text-align: justify;\">About me: I started the yoga classes given by Meera Trivedi and Vinesh Saxena in July 2010 and since then I do yoga on a regular basis. Saturday is the happiest day of my week. I am Rumanian, I studied biochemistry and I am interested in nutrition, healthy eating, I try to come closer to nature. In summer I do a lot of bike and in winter I love the cross-country sky. I love helping people; yoga is helping me to maintain a happy mood. Now I’m in love with making sourdough bread, making bread makes me happy.</p>\r\n<p style=\"text-align: justify;\">What yoga means for me. How it has affected my life: Yoga gave me a happiness that I cannot explain; friends, a more conscious life, a flexible body, and a healthy body, a clear mind. I love doing yoga, and I am pretty sure that yoga is only a step in my evolution.</p>\r\n<p style=\"text-align: justify;\">******************************<wbr></wbr>******************************<wbr></wbr>******************</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong>From other participants</strong></span></p>\r\n<p style=\"text-align: justify;\">This yoga class is a precious time for me. I may arrive out of breath or lacking of energy, or a bit annoyed at my brain « monkey chatter » but I always leave rejuvenated physically, mentally and emotionally. Joining in, I am giving my whole body the royal treatment from head to toes, stretching out the kinks and limbering up muscles and joints I was not aware of. It is quality time I give to myself. When I am there, I have my own space. But there are people around me and I feel I belong, that I am surrounded by positive energy. The space we are in fills, it feels to me, with well being respect, silent communication. Thank you to all who make this possible. I was hooked the first time I went.</p>\r\n<p style=\"text-align: justify;\"><strong><span style=\"text-decoration: underline;\">Charlene Olse</span></strong></p>\r\n<p style=\"text-align: justify;\"><strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\">Je passais des moments très difficiles suite à un deuil, mon amie m’a conseillé de faire du yoga.</p>\r\n<p style=\"text-align: justify;\">J’ai essayé une première séance et je me suis sentie vraiment bien, les mouvements accompagnés de la respiration fluide ont effectivement apaisé mon âme, mon esprit et mon corps et depuis je ne peux rater une séance. Je fais du yoga seule à la maison, mais je m’arrête au bout de 5 minutes, cependant du yoga en groupe avec la belle ambiance, la bonne motivation et l’encouragement de l’entraîneur m’a permis de bien vivre mon deuil et surtout de bien gérer mes sentiments et mes émotions.</p>\r\n<p style=\"text-align: justify;\">Un grand merci pour ce que vous faites pour le groupe de yoga.</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong>Lynda</strong></span></p>\r\n<p style=\"text-align: justify;\"><strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\">Le yoga diminue mon stress, assouplit mon corps et lubrifie mes articulations. Certaines positions ou exercices libèrent des structures énergétiques associées à des mémoires antérieures. L’énergie circule plus librement dans mon corps et je me sens revivifié. J’apprécie aussi le fait que ce soit une activité non compétitive.</p>\r\n<p style=\"text-align: justify;\">Je remercie M. Saxena de sa très grande disponibilité ainsi que toute son équipe de bénévoles.</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong> Marcel Baril</strong></span></p>\r\n<p style=\"text-align: justify;\"><strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\">Le yoga m’a apporté beaucoup de paix intérieure. J’aime la combinaison de l’exercice physique et le mental, le rire…. Cela équilibre mon moral, améliore mon corps physique, m’aide à  pratiquer la méditation et la relaxation et surtout à mieux respirer. J’aime beaucoup l’ambiance généreuse, le don de soi des bénévoles. Je crois de plus en plus à la bonté de l’être humain.</p>\r\n<p style=\"text-align: justify;\">Merci</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong>Colette</strong></span></p>\r\n<p style=\"text-align: justify;\"><strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\">Mon mari est décédé il y a trois ans. Je fus effondrée. Depuis ce temps je pratique le yoga avec Monsieur Saxena. Cet exercice m’a apporté l’équilibre physique et la paix de l’âme.</p>\r\n<p style=\"text-align: justify;\">Ginette Paradis</p>\r\n<p style=\"text-align: justify;\"><strong>******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\">Je dois remercier Mr et Mme Saxena pout leur dévouement et leur disponibilité  apportés chaque samedi.</p>\r\n<p style=\"text-align: justify;\">Pour moi,ce que j\'aime le plus c\'est bien ses histoires qui m\'amênent a penser positivement,ensuite il y a les exercises</p>\r\n<p style=\"text-align: justify;\">qui aident a calmer le mental et a controler le stress,c\'est bien.</p>\r\n<p style=\"text-align: justify;\">Mais tant qu\'aux exercises d\'accupressions pour les sinus ,j\'en vois pas d\'effet immédiat, c\'est probablement a long</p>\r\n<p style=\"text-align: justify;\">terme que l\'effet se fait sentir.</p>\r\n<p style=\"text-align: justify;\">Les nouveaux mouvements ou exercises sont les bienvenues ,j\'en suis certain, pour la pluparts des participants.</p>\r\n<p style=\"text-align: justify;\">Apres deux heures de participations la position a l\'horizontale (shawaseen)ou repos est très bien appréciée.</p>\r\n<p style=\"text-align: justify;\">C\'est durant le reste de la journée qu\'on sent une certaine fatigue et qu\'il faut récupérer,en un mot c\'est sûrement</p>\r\n<p style=\"text-align: justify;\">bénifique pour la santé.</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong>Renald Couture</strong></span></p>\r\n<p style=\"text-align: justify;\"><strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong></p>\r\n<p style=\"text-align: justify;\">What would I do without Yoga? it has helped me to live a fulfilling life!</p>\r\n<p style=\"text-align: justify;\">When I was 12 years old, I was one day about to sit down on a kitchen chair when my brother took it away from underneath me. I fell had on my coccyx and thought nothing more of it, thinking that my pride was hurt more than my back. But by the age of 18 I started getting persistent backaches, and from then on I became a \'back sufferer\'. By the age of 30 I wasn\'t able to wash a kitchen floor or do an hour\'s gardening without a backache for the rest of the day, and few days after. I wasn\'t even sure I could have children with such a bad back, so I did a series of adjustments over a year and a half at a chiropractor\'s, and tried acupuncture. Both helped somewhat, but certainly did not cure my condition. I did have two children and a full time job teaching, but backaches became a fact of life, always there in the background.</p>\r\n<p style=\"text-align: justify;\">I came across Yoga in my middle 30\'s but never had enough time to pursue it diligently. It was only after I retired that I started doing it seriously, and I now wish I had allowed no excuses to not do it consistently earlier. I now do Yoga for an hour every day, following the type of Mr. Saxena\'s exercises on Saturday mornings, and take exercises out of books. I have never felt better! Today at 68 I feel better that I did at 30. I can now do gardening all day, shovel snow, wash floors, and walk good long walks with no consequent pain. The injury to my back is still there, but my back mussels are now strong enough to support me in my activities.</p>\r\n<p style=\"text-align: justify;\">Doing the exercises is only part of my Yoga practice. I am careful to eat only food that is nutritious for my body, and I try to keep as much as possible a positive outlook on life.</p>\r\n<p style=\"text-align: justify;\">Yoga is a lifestyle - it takes care of every aspect of one\'s being, and I intend to keep well and healthy to my dying day.</p>\r\n<p style=\"text-align: justify;\"><span style=\"text-decoration: underline;\"><strong>Mary Brunet</strong></span></p>\r\n<strong> ******************************<wbr></wbr>******************************<wbr></wbr>******************</strong>\r\n\r\n</div>\r\n</div>','Testimony from Participants','','inherit','closed','closed','','31-autosave','','','2013-07-09 20:22:46','2013-07-10 00:22:46','',31,'http://divyayogamonteregie.org/web/?p=104',0,'revision','',0),(108,1,'2013-05-18 17:51:10','2013-05-18 21:51:10','','banner1','','inherit','closed','closed','','banner1','','','2013-05-18 17:51:10','2013-05-18 21:51:10','',2,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/05/banner1.jpg',0,'attachment','image/jpeg',0),(111,1,'2013-05-18 17:56:59','2013-05-18 21:56:59','http://divyayogamonteregie.org/web/wp-content/uploads/2013/05/cropped-banner11.jpg','cropped-banner11.jpg','','inherit','closed','closed','','cropped-banner11-jpg','','','2013-05-18 17:56:59','2013-05-18 21:56:59','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/05/cropped-banner11.jpg',0,'attachment','image/jpeg',0),(300,1,'2013-05-18 17:53:06','2013-05-18 21:53:06','<span style=\"color: #0000ff;\">To make basic yoga practice easily accessible to everyone without charge.</span>\r\n\r\n<span style=\"color: #0000ff;\">Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</span>\r\n\r\n<span style=\"color: #0000ff;\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</span>\r\n\r\n<span style=\"color: #0000ff;\">After yoga super food i. e. grapes and banana are available for Yogies.</span>\r\n\r\n<span style=\"color: #0000ff;\">Yoga is a marvelous means of exercising, stretching, and freeing the body so it can be a healthy, long-lived, and vital instrument for the body,mind and soul. We also create an environment where people can interact for their betterment.</span>','Our mission','','inherit','closed','closed','','2-revision-v1','','','2013-05-18 17:53:06','2013-05-18 21:53:06','',2,'http://divyayogamonteregie.org/web/?p=300',0,'revision','',0),(110,1,'2013-05-18 17:51:37','2013-05-18 21:51:37','<span style=\"color: #0000ff;\"><a href=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/05/banner1.jpg\"><img class=\"aligncenter size-medium wp-image-108\" alt=\"banner1\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/05/banner1-300x62.jpg\" width=\"300\" height=\"62\" /></a>To make basic yoga practice easily accessible to everyone without charge.</span>\r\n\r\n<span style=\"color: #0000ff;\">Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</span>\r\n\r\n<span style=\"color: #0000ff;\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</span>\r\n\r\n<span style=\"color: #0000ff;\">After yoga super food i. e. grapes and banana are available for Yogies.</span>\r\n\r\n<span style=\"color: #0000ff;\">Yoga is a marvelous means of exercising, stretching, and freeing the body so it can be a healthy, long-lived, and vital instrument for the body,mind and soul. We also create an environment where people can interact for their betterment.</span>','Our mission','','inherit','closed','closed','','2-revision-v1','','','2013-05-18 17:51:37','2013-05-18 21:51:37','',2,'http://divyayogamonteregie.org/web/?p=110',0,'revision','',0),(371,1,'2013-07-09 20:06:46','2013-07-10 00:06:46','<p style=\"text-align: justify;\">To make basic yoga practice easily accessible to everyone without charge.</p>\r\n<p style=\"text-align: justify;\">Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p>\r\n<p style=\"text-align: justify;\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p>\r\n<p style=\"text-align: justify;\">After yoga super food i. e. grapes and banana are available for Yogies.</p>\r\n<p style=\"text-align: justify;\">Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>','Our mission','','inherit','closed','closed','','2-revision-v1','','','2013-07-09 20:06:46','2013-07-10 00:06:46','',2,'http://divyayogamonteregie.org/web/?p=371',0,'revision','',0),(262,1,'2013-06-19 17:37:43','2013-06-19 21:37:43','','Dill fenugreek tofu rice.','','inherit','closed','closed','','dill-fenugreek-tofu-rice','','','2013-06-19 17:37:43','2013-06-19 21:37:43','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/Dill-fenugreek-tofu-rice..jpg',0,'attachment','image/jpeg',0),(114,1,'2013-05-18 18:52:20','2013-05-18 22:52:20','http://divyayogamonteregie.org/web/wp-content/uploads/2013/05/cropped-banner111.jpg','cropped-banner111.jpg','','inherit','closed','closed','','cropped-banner111-jpg','','','2013-05-18 18:52:20','2013-05-18 22:52:20','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/05/cropped-banner111.jpg',0,'attachment','image/jpeg',0),(265,1,'2013-06-19 17:37:57','2013-06-19 21:37:57','','Rhubarb Sauce.','','inherit','closed','closed','','rhubarb-sauce','','','2013-06-19 17:37:57','2013-06-19 21:37:57','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/Rhubarb-Sauce..jpg',0,'attachment','image/jpeg',0),(263,1,'2013-06-19 17:37:44','2013-06-19 21:37:44','','Lima beans','','inherit','closed','closed','','lima-beans','','','2013-06-19 17:37:44','2013-06-19 21:37:44','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/Lima-beans.jpg',0,'attachment','image/jpeg',0),(264,1,'2013-06-19 17:37:45','2013-06-19 21:37:45','','Pumkin','','inherit','closed','closed','','pumkin','','','2013-06-19 17:37:45','2013-06-19 21:37:45','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/Pumkin.jpg',0,'attachment','image/jpeg',0),(115,1,'2013-05-18 18:59:31','2013-05-18 22:59:31','http://divyayogamonteregie.org/web/wp-content/uploads/2013/05/cropped-banner2.jpg','cropped-banner2.jpg','','inherit','closed','closed','','cropped-banner2-jpg','','','2013-05-18 18:59:31','2013-05-18 22:59:31','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/05/cropped-banner2.jpg',0,'attachment','image/jpeg',0),(116,1,'2013-05-18 19:00:04','2013-05-18 23:00:04','http://divyayogamonteregie.org/web/wp-content/uploads/2013/05/cropped-banner3.jpg','cropped-banner3.jpg','','inherit','closed','closed','','cropped-banner3-jpg','','','2013-05-18 19:00:04','2013-05-18 23:00:04','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/05/cropped-banner3.jpg',0,'attachment','image/jpeg',0),(117,1,'2013-05-18 19:00:32','2013-05-18 23:00:32','http://divyayogamonteregie.org/web/wp-content/uploads/2013/05/cropped-banner4.jpg','cropped-banner4.jpg','','inherit','closed','closed','','cropped-banner4-jpg','','','2013-05-18 19:00:32','2013-05-18 23:00:32','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/05/cropped-banner4.jpg',0,'attachment','image/jpeg',0),(118,1,'2013-05-18 19:00:50','2013-05-18 23:00:50','http://divyayogamonteregie.org/web/wp-content/uploads/2013/05/cropped-banner5.jpg','cropped-banner5.jpg','','inherit','closed','closed','','cropped-banner5-jpg','','','2013-05-18 19:00:50','2013-05-18 23:00:50','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/05/cropped-banner5.jpg',0,'attachment','image/jpeg',0),(119,1,'2013-05-18 19:06:26','2013-05-18 23:06:26','http://divyayogamonteregie.org/web/wp-content/uploads/2013/05/cropped-banner7.jpg','cropped-banner7.jpg','','inherit','closed','closed','','cropped-banner7-jpg','','','2013-05-18 19:06:26','2013-05-18 23:06:26','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/05/cropped-banner7.jpg',0,'attachment','image/jpeg',0),(120,1,'2013-05-08 22:44:58','2013-05-08 22:44:58','Welcome to <strong>Divya Yoga</strong> Monteregie.\r\n<br />\r\n\r\nContact us\r\n\r\nPhone # 450-468-7539\r\nFax # 450-468-5724\r\nEmail : founder@vsffoundation.ca','Welcome to Divya Yoga','','inherit','closed','closed','','1-revision-5','','','2013-05-08 22:44:58','2013-05-08 22:44:58','',1,'http://divyayogamonteregie.org/web/?p=120',0,'revision','',0),(126,1,'2013-05-18 22:51:09','2013-05-19 02:51:09','<strong>[codepeople-post-map]Saturday 9-11 pm</strong>\r\n\r\nOur location\r\n\r\n[codepeople-post-map]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Thursday  6:30 to 7:30</strong>\r\n\r\n1648 Langevin, St. Hubert, Quebec J4T 1X7\r\n\r\n&nbsp;\r\n\r\nPut google maps','Schedule & Location','','inherit','closed','closed','','9-revision-v1','','','2013-05-18 22:51:09','2013-05-19 02:51:09','',9,'http://divyayogamonteregie.org/web/?p=126',0,'revision','',0),(127,1,'2013-05-18 22:51:59','2013-05-19 02:51:59','<strong>[codepeople-post-map]Saturday 9-11 pm</strong>\r\n\r\nOur location\r\n\r\n[codepeople-post-map]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Thursday  6:30 to 7:30</strong>\r\n\r\n1648 Langevin, St. Hubert, Quebec J4T 1X7\r\n\r\n&nbsp;\r\n\r\nPut google maps','Schedule & Location','','inherit','closed','closed','','9-revision-v1','','','2013-05-18 22:51:59','2013-05-19 02:51:59','',9,'http://divyayogamonteregie.org/web/?p=127',0,'revision','',0),(128,1,'2013-05-18 22:52:31','2013-05-19 02:52:31','<strong>[codepeople-post-map]Saturday 9-11 pm</strong>\r\n\r\nOur location\r\n\r\n[codepeople-post-map]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Thursday  6:30 to 7:30</strong>\r\n\r\n1648 Langevin, St. Hubert, Quebec J4T 1X7\r\n\r\n&nbsp;\r\n\r\nPut google maps','Schedule & Location','','inherit','closed','closed','','9-revision-v1','','','2013-05-18 22:52:31','2013-05-19 02:52:31','',9,'http://divyayogamonteregie.org/web/?p=128',0,'revision','',0),(129,1,'2013-05-18 22:53:48','2013-05-19 02:53:48','<strong>[codepeople-post-map][codepeople-post-map]Saturday 9-11 pm</strong>\r\n\r\nOur location\r\n\r\n[codepeople-post-map]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Thursday  6:30 to 7:30</strong>\r\n\r\n1648 Langevin, St. Hubert, Quebec J4T 1X7\r\n\r\n&nbsp;\r\n\r\nPut google maps','Schedule & Location','','inherit','closed','closed','','9-revision-v1','','','2013-05-18 22:53:48','2013-05-19 02:53:48','',9,'http://divyayogamonteregie.org/web/?p=129',0,'revision','',0),(130,1,'2013-05-18 22:55:58','2013-05-19 02:55:58','<strong>[codepeople-post-map][codepeople-post-map]Saturday 9-11 pm</strong>\r\n\r\nOur location\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Thursday  6:30 to 7:30</strong>\r\n\r\n1648 Langevin, St. Hubert, Quebec J4T 1X7\r\n\r\n&nbsp;\r\n\r\nPut google maps','Schedule & Location','','inherit','closed','closed','','9-revision-v1','','','2013-05-18 22:55:58','2013-05-19 02:55:58','',9,'http://divyayogamonteregie.org/web/?p=130',0,'revision','',0),(131,1,'2013-05-18 22:58:14','2013-05-19 02:58:14','<div>Saturday 9h-11h</div>\r\n<div>675 Rue Green, Saint-Lambert, QC J4P 1V9, Canada</div>\r\n<div><strong>[codepeople-post-map]</strong></div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>and</strong>\r\n\r\n<strong>Thursday  6:30 to 7:30</strong>\r\n\r\n1648 Langevin, St. Hubert, Quebec J4T 1X7','Schedule & Location','','inherit','closed','closed','','9-revision-v1','','','2013-05-18 22:58:14','2013-05-19 02:58:14','',9,'http://divyayogamonteregie.org/web/?p=131',0,'revision','',0),(176,1,'2013-06-10 21:22:08','2013-06-11 01:22:08','<b>36A Appreciation</b>\n\nThis is a powerful message for our modern society. We seem to have lost our bearing and our sense of direction.\n\nOne young academically excellent person went to apply for a managerial position in a big company. He passed the first interview; the director did the last interview. The director discovered from the CV that the youth\'s academic achievements were excellent all the way, from the secondary school until the postgraduate research, never had a year when he did not score.\n\nThe director asked, \"Did you obtain any scholarships in school?\"\n\nThe youth answered, \"None.\"\n\nThe director asked, \"Was it your father who paid for your school fees?\"\n\nThe youth answered, \"My father passed away when I was one year old, it was my mother who paid for my school fees.\"\n\nThe director asked, \"Where did your mother work?\"\n\nThe youth answered, \"My mother worked as laundry woman.\"\n\nThe director requested the youth to show his hands. The youth showed a pair of hands that were smooth and perfect.\n\nThe director asked, \"Have you ever helped your mother wash the clothes before?\"\n\nThe youth answered, \"Never, my mother always wanted me to study and read more books. Furthermore, my mother can wash clothes faster than me.\"\n\nThe director said, \"I have a request. When you go back today, go and clean your mother\'s hands, and then see me tomorrow morning.\"\n\nThe youth felt that his chance of landing the job was high. When he went back, he happily requested his mother to let him clean her hands. His mother felt strange. Happy but with mixed feelings, she showed her hands to the young man.\n\nThe youth cleaned his mother\'s hands slowly. His tear fell as he did that. It was the first time he noticed that his mother\'s hands were so wrinkled, and there were so many bruises in her hands. Some bruises were so painful that his mother shivered when they were cleaned with water.\n\nThis was the first time the youth realized that it was this pair of hands that washed the clothes everyday to enable him to pay the school fee. The bruises in the mother\'s hands were the price that the mother had to pay for his graduation, academic excellence and his future.\n\nAfter finishing the cleaning of his mother\'s hands, the youth quietly washed all the remaining clothes for his mother.\n\nThat night, mother and son talked for a very long time.\n\nNext morning, the youth went to the director\'s office.\n\nThe Director noticed the tears in the youth\'s eyes, asked: \"Can you tell me what have you done and learned yesterday in your house?\"\n\nThe youth answered, \"I cleaned my mother\'s hands and also finished cleaning all the remaining clothes.\"\n\nThe Director asked, \"Please tell me your feelings.\"\n\nThe youth said:\n<ol start=\"1\">\n	<li>I know now what appreciation is. Without my mother, there would not have been the successful me today.</li>\n	<li>By working together and helping my mother, only now I realize how difficult and tough it is to get something done.</li>\n	<li>I have come to appreciate the importance and value of family relationships.</li>\n</ol>\nThe director said, \"This is what I am looking for to be my manager. I want to recruit a person who can appreciate the help of others, a person who knows the sufferings of others to get things done, and a person who would not put money as his only goal in life. You are hired.\"\n\nLater on, this young person worked very hard and received the respect of his subordinates. Every employee worked diligently and as a team. The company\'s performance improved tremendously','','','inherit','closed','closed','','175-revision','','','2013-06-10 21:22:08','2013-06-11 01:22:08','',175,'http://divyayogamonteregie.org/web/?p=176',0,'revision','',0),(134,1,'2013-06-10 20:04:15','2013-06-11 00:04:15','','The story of the butterfly.','','inherit','closed','closed','','133-revision','','','2013-06-10 20:04:15','2013-06-11 00:04:15','',133,'http://divyayogamonteregie.org/web/?p=134',0,'revision','',0),(135,1,'2013-06-10 20:10:06','2013-06-11 00:10:06','<p style=\"text-align: justify;\">An old farmer had plowed around a large rock in one of his fields for years. He had broken several plowshares and a cultivator on it and had grown rather morbid about the rock.</p>\r\n<p style=\"text-align: justify;\">After breaking another plowshare one day, and remembering all the trouble the rock had caused him through the years, he finally decided to do something about it.</p>\r\n<p style=\"text-align: justify;\">When he put the crowbar under the rock, he was surprised to discover that it was only about six inches thick and that he could break it up easily with a sledgehammer. As he was carting the pieces away he had to smile, remembering all the trouble that the rock had caused him over the years and how easy it would have been to get rid of it sooner.</p>','The Rock','','publish','closed','closed','','the-rock','','','2013-07-09 21:49:46','2013-07-10 01:49:46','',79,'http://divyayogamonteregie.org/web/?page_id=135',0,'page','',0),(136,1,'2013-06-10 20:09:11','2013-06-11 00:09:11','An old farmer had plowed around a large rock in one of his fields for years. He had broken several plowshares and a cultivator on it and had grown rather morbid about the rock.\n\nAfter breaking another plowshare one day, and remembering all the trouble the rock had caused him through the years, he finally decided to do something about it.\n\nWhen he put the crowbar under the rock, he was surprised to discover that it was only about six inches thick and that he could break it up easily with a sledgehammer. As he was carting the pieces away he had to smile, remembering all the trouble that the rock had caused him over the years and how easy it would have been to ged rid of it sooner.','The Rock','','inherit','closed','closed','','135-revision','','','2013-06-10 20:09:11','2013-06-11 00:09:11','',135,'http://divyayogamonteregie.org/web/?p=136',0,'revision','',0),(137,1,'2013-06-10 20:12:23','2013-06-11 00:12:23','<p style=\"text-align: justify;\">Sir Winston Churchill took three years getting through eighth grade because he had trouble learning English. It seems ironic that years later Oxford University asked him to address its commencement exercises.</p>\r\n<p style=\"text-align: justify;\">He arrived with his usual props. A cigar, a cane and a top hat accompanied Churchill wherever he went. As Churchill approached the podium, the crowd rose in appreciative applause. With unmatched dignity, he settled the crowd and stood confident before his admirers. Removing the cigar and carefully placing the top hat on the podium, Churchill gazed at his waiting audience. Authority rang in Churchill\'s voice as he shouted, \"Never give up!\"</p>\r\n<p style=\"text-align: justify;\">Several seconds passed before he rose to his toes and repeated: \"Never give up!\" His words thundered in their ears. There was a deafening silence as Churchill reached for his hat and cigar, steadied himself with his cane and left the platform. His commencement address was finished</p>','Never give up','','publish','closed','closed','','never-give-up','','','2013-07-09 20:39:53','2013-07-10 00:39:53','',79,'http://divyayogamonteregie.org/web/?page_id=137',0,'page','',0),(138,1,'2013-06-10 20:11:44','2013-06-11 00:11:44','Sir Winston Churchill took three years getting through eighth grade because he had trouble learning English. It seems ironic that years later Oxford University asked him to address its commencement exercises.\n\nHe arrived with his usual props. A cigar, a cane and a top hat accompanied Churchill wherever he went. As Churchill approached the podium, the crowd rose in appreciative applause. With unmatched dignity, he settled the crowd and stood confident before his admirers. Removing the cigar and carefully placing the top hat on the podium, Churchill gazed at his waiting audience. Authority rang in Churchill\'s voice as he shouted, \"Never give up!\"\n\nSeveral seconds passed before he rose to his toes and repeated: \"Never give up!\" His words thundered in their ears. There was a deafening silence as Churchill reached for his hat and cigar, steadied himself with his cane and left the platform. His commencement address was finished','Never give up','','inherit','closed','closed','','137-revision','','','2013-06-10 20:11:44','2013-06-11 00:11:44','',137,'http://divyayogamonteregie.org/web/?p=138',0,'revision','',0),(139,1,'2013-06-10 20:13:44','2013-06-11 00:13:44','<a href=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/hospital_window.png\"><img class=\"aligncenter size-full wp-image-141\" alt=\"hospital_window\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/hospital_window.png\" width=\"300\" height=\"200\" /></a>\r\n<p style=\"text-align: justify;\">Two men, both seriously ill, occupied the same hospital room. One man was allowed to sit up in his bed for an hour each afternoon to help drain the fluid from his lungs. His bed was next to the room\'s only window. The other man had to spend all his time flat on his back.</p>\r\n<p style=\"text-align: justify;\">The men talked for hours on end. They spoke of their wives and families, their homes, their jobs, their involvement in the military service, where they had been on vacation.</p>\r\n<p style=\"text-align: justify;\">And every afternoon when the man in the bed by the window could sit up, he would pass the time by describing to his roommate all the things he could see outside the window. The man in the other bed began to live for those one-hour periods where his world would be broadened and enlivened by all the activity and color of the world outside.</p>\r\n<p style=\"text-align: justify;\">The window overlooked a park with a lovely lake. Ducks and swans played on the water while children sailed their model boats. Young lovers walked arm in arm amidst flowers of every color of the rainbow. Grand old trees graced the landscape, and a fine view of the city skyline could be seen in the distance.</p>\r\n<p style=\"text-align: justify;\">As the man by the window described all this in exquisite detail, the man on the other side of the room would close his eyes and imagine the picturesque scene.</p>\r\n<p style=\"text-align: justify;\">One warm afternoon the man by the window described a parade passing by. Although the other man couldn\'t hear the band - he could see it in his mind\'s eye as the gentleman by the window portrayed it with descriptive words.</p>\r\n<p style=\"text-align: justify;\">Days and weeks passed. One morning, the day nurse arrived to bring water for their baths only to find the lifeless body of the man by the window, who had died peacefully in his sleep. She was saddened and called the hospital attendants to take the body away.</p>\r\n<p style=\"text-align: justify;\">As soon as it seemed appropriate, the other man asked if he could be moved next to the window. The nurse was happy to make the switch, and after making sure he was comfortable, she left him alone. Slowly, painfully, he propped himself up on one elbow to take his first look at the world outside. Finally, he would have the joy of seeing it for himself.</p>\r\n<p style=\"text-align: justify;\">He strained to slowly turn to look out the window beside the bed. It faced a blank wall. The man asked the nurse what could have compelled his deceased roommate who had described such wonderful things outside this window. The nurse responded that the man was blind and could not even see the wall. She said, \"Perhaps he just wanted to encourage you.\"</p>','The hospital window','','publish','closed','closed','','the-hospital-window','','','2013-07-09 20:56:43','2013-07-10 00:56:43','',79,'http://divyayogamonteregie.org/web/?page_id=139',0,'page','',0),(140,1,'2013-06-10 20:13:41','2013-06-11 00:13:41','&nbsp;\n\nTwo men, both seriously ill, occupied the same hospital room. One man was allowed to sit up in his bed for an hour each afternoon to help drain the fluid from his lungs. His bed was next to the room\'s only window. The other man had to spend all his time flat on his back.\n\nThe men talked for hours on end. They spoke of their wives and families, their homes, their jobs, their involvement in the military service, where they had been on vacation.\n\nAnd every afternoon when the man in the bed by the window could sit up, he would pass the time by describing to his roommate all the things he could see outside the window. The man in the other bed began to live for those one-hour periods where his world would be broadened and enlivened by all the activity and color of the world outside.\n\nThe window overlooked a park with a lovely lake. Ducks and swans played on the water while children sailed their model boats. Young lovers walked arm in arm amidst flowers of every color of the rainbow. Grand old trees graced the landscape, and a fine view of the city skyline could be seen in the distance.\n\nAs the man by the window described all this in exquisite detail, the man on the other side of the room would close his eyes and imagine the picturesque scene.\n\nOne warm afternoon the man by the window described a parade passing by. Although the other man couldn\'t hear the band - he could see it in his mind\'s eye as the gentleman by the window portrayed it with descriptive words.\n\nDays and weeks passed. One morning, the day nurse arrived to bring water for their baths only to find the lifeless body of the man by the window, who had died peacefully in his sleep. She was saddened and called the hospital attendants to take the body away.\n\nAs soon as it seemed appropriate, the other man asked if he could be moved next to the window. The nurse was happy to make the switch, and after making sure he was comfortable, she left him alone. Slowly, painfully, he propped himself up on one elbow to take his first look at the world outside. Finally, he would have the joy of seeing it for himself.\n\nHe strained to slowly turn to look out the window beside the bed. It faced a blank wall. The man asked the nurse what could have compelled his deceased roommate who had described such wonderful things outside this window. The nurse responded that the man was blind and could not even see the wall. She said, \"Perhaps he just wanted to encourage you.\"','The hospital window','','inherit','closed','closed','','139-revision','','','2013-06-10 20:13:41','2013-06-11 00:13:41','',139,'http://divyayogamonteregie.org/web/?p=140',0,'revision','',0),(141,1,'2013-06-10 20:14:31','2013-06-11 00:14:31','','hospital_window','','inherit','closed','closed','','hospital_window','','','2013-06-10 20:14:31','2013-06-11 00:14:31','',139,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/hospital_window.png',0,'attachment','image/png',0),(142,1,'2013-07-09 20:56:46','2013-07-10 00:56:46','<a href=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/hospital_window.png\"><img class=\"aligncenter size-full wp-image-141\" alt=\"hospital_window\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/hospital_window.png\" width=\"300\" height=\"200\" /></a>\r\n<p style=\"text-align: justify;\">Two men, both seriously ill, occupied the same hospital room. One man was allowed to sit up in his bed for an hour each afternoon to help drain the fluid from his lungs. His bed was next to the room\'s only window. The other man had to spend all his time flat on his back.</p>\r\n<p style=\"text-align: justify;\">The men talked for hours on end. They spoke of their wives and families, their homes, their jobs, their involvement in the military service, where they had been on vacation.</p>\r\n<p style=\"text-align: justify;\">And every afternoon when the man in the bed by the window could sit up, he would pass the time by describing to his roommate all the things he could see outside the window. The man in the other bed began to live for those one-hour periods where his world would be broadened and enlivened by all the activity and color of the world outside.</p>\r\n<p style=\"text-align: justify;\">The window overlooked a park with a lovely lake. Ducks and swans played on the water while children sailed their model boats. Young lovers walked arm in arm amidst flowers of every color of the rainbow. Grand old trees graced the landscape, and a fine view of the city skyline could be seen in the distance.</p>\r\n<p style=\"text-align: justify;\">As the man by the window described all this in exquisite detail, the man on the other side of the room would close his eyes and imagine the picturesque scene.</p>\r\n<p style=\"text-align: justify;\">One warm afternoon the man by the window described a parade passing by. Although the other man couldn\'t hear the band - he could see it in his mind\'s eye as the gentleman by the window portrayed it with descriptive words.</p>\r\n<p style=\"text-align: justify;\">Days and weeks passed. One morning, the day nurse arrived to bring water for their baths only to find the lifeless body of the man by the window, who had died peacefully in his sleep. She was saddened and called the hospital attendants to take the body away.</p>\r\n<p style=\"text-align: justify;\">As soon as it seemed appropriate, the other man asked if he could be moved next to the window. The nurse was happy to make the switch, and after making sure he was comfortable, she left him alone. Slowly, painfully, he propped himself up on one elbow to take his first look at the world outside. Finally, he would have the joy of seeing it for himself.</p>\r\n<p style=\"text-align: justify;\">He strained to slowly turn to look out the window beside the bed. It faced a blank wall. The man asked the nurse what could have compelled his deceased roommate who had described such wonderful things outside this window. The nurse responded that the man was blind and could not even see the wall. She said, \"Perhaps he just wanted to encourage you.\"</p>','The hospital window','','inherit','closed','closed','','139-autosave','','','2013-07-09 20:56:46','2013-07-10 00:56:46','',139,'http://divyayogamonteregie.org/web/?p=142',0,'revision','',0),(143,1,'2013-06-10 20:13:44','2013-06-11 00:13:44','&nbsp;\r\n\r\nTwo men, both seriously ill, occupied the same hospital room. One man was allowed to sit up in his bed for an hour each afternoon to help drain the fluid from his lungs. His bed was next to the room\'s only window. The other man had to spend all his time flat on his back.\r\n\r\nThe men talked for hours on end. They spoke of their wives and families, their homes, their jobs, their involvement in the military service, where they had been on vacation.\r\n\r\nAnd every afternoon when the man in the bed by the window could sit up, he would pass the time by describing to his roommate all the things he could see outside the window. The man in the other bed began to live for those one-hour periods where his world would be broadened and enlivened by all the activity and color of the world outside.\r\n\r\nThe window overlooked a park with a lovely lake. Ducks and swans played on the water while children sailed their model boats. Young lovers walked arm in arm amidst flowers of every color of the rainbow. Grand old trees graced the landscape, and a fine view of the city skyline could be seen in the distance.\r\n\r\nAs the man by the window described all this in exquisite detail, the man on the other side of the room would close his eyes and imagine the picturesque scene.\r\n\r\nOne warm afternoon the man by the window described a parade passing by. Although the other man couldn\'t hear the band - he could see it in his mind\'s eye as the gentleman by the window portrayed it with descriptive words.\r\n\r\nDays and weeks passed. One morning, the day nurse arrived to bring water for their baths only to find the lifeless body of the man by the window, who had died peacefully in his sleep. She was saddened and called the hospital attendants to take the body away.\r\n\r\nAs soon as it seemed appropriate, the other man asked if he could be moved next to the window. The nurse was happy to make the switch, and after making sure he was comfortable, she left him alone. Slowly, painfully, he propped himself up on one elbow to take his first look at the world outside. Finally, he would have the joy of seeing it for himself.\r\n\r\nHe strained to slowly turn to look out the window beside the bed. It faced a blank wall. The man asked the nurse what could have compelled his deceased roommate who had described such wonderful things outside this window. The nurse responded that the man was blind and could not even see the wall. She said, \"Perhaps he just wanted to encourage you.\"','The hospital window','','inherit','closed','closed','','139-revision-2','','','2013-06-10 20:13:44','2013-06-11 00:13:44','',139,'http://divyayogamonteregie.org/web/?p=143',0,'revision','',0),(390,1,'2013-05-09 07:13:48','2013-05-09 11:13:48','Coming soon','Let us share','','inherit','closed','closed','','33-revision-v1','','','2013-05-09 07:13:48','2013-05-09 11:13:48','',33,'http://divyayogamonteregie.org/web/?p=390',0,'revision','',0),(145,1,'2013-06-10 20:18:44','2013-06-11 00:18:44','<p style=\"text-align: justify;\">An old story is told of a king in Africa who had a close friend with whom he grew up. The friend had a habit of looking at every situation that ever occurred in his life (positive or negative) and remarking, \"This is good!\"</p>\r\n<p style=\"text-align: justify;\">One day the king and his friend were out on a hunting expedition. The friend would load and prepare the guns for the king. The friend had apparently done something wrong in preparing one of the guns, for after taking the gun from his friend, the king fired it and his thumb was blown off. Examining the situation the friend remarked as usual, \"This is good!\" To which the king replied, \"No, this is NOT good!\" and proceeded to send his friend to jail.</p>\r\n<p style=\"text-align: justify;\">About a year later, the king was hunting in an area that he should have known to stay clear of. Cannibals captured him and took him to their village. They tied his hands, stacked some wood, set up a stake and bound him to the stake. As they came near to set fire to the wood, they noticed that the king was missing a thumb. Being superstitious, they never ate anyone that was less than whole. So untying the king, they sent him on his way.</p>\r\n<p style=\"text-align: justify;\">As he returned home, he was reminded of the event that had taken his thumb and felt remorse for his treatment of his friend. He went immediately to the jail to speak with his friend. \"You were right,\" he said, \"it was good that my thumb was blown off.\" And he proceeded to tell the friend all that had just happened. \"And so I am very sorry for sending you to jail for so long. It was bad for me to do this.\"</p>\r\n<p style=\"text-align: justify;\">\"No,\" his friend replied, \"This is good!\" \"What do you mean,\'This is good\'? How could it be good that I sent my friend to jail for a year?\" \"If I had NOT been in jail, I would have been with you.\"</p>','This is good','','publish','closed','closed','','this-is-good','','','2013-07-09 22:05:40','2013-07-10 02:05:40','',79,'http://divyayogamonteregie.org/web/?page_id=145',0,'page','',0),(146,1,'2013-06-10 20:18:26','2013-06-11 00:18:26','An old story is told of a king in Africa who had a close friend with whom he grew up. The friend had a habit of looking at every situation that ever occurred in his life (positive or negative) and remarking, \"This is good!\"\n\nOne day the king and his friend were out on a hunting expedition. The friend would load and prepare the guns for the king. The friend had apparently done something wrong in preparing one of the guns, for after taking the gun from his friend, the king fired it and his thumb was blown off. Examining the situation the friend remarked as usual, \"This is good!\" To which the king replied, \"No, this is NOT good!\" and proceeded to send his friend to jail.\n\nAbout a year later, the king was hunting in an area that he should have known to stay clear of. Cannibals captured him and took him to their village. They tied his hands, stacked some wood, set up a stake and bound him to the stake. As they came near to set fire to the wood, they noticed that the king was missing a thumb. Being superstitious, they never ate anyone that was less than whole. So untying the king, they sent him on his way.\n\nAs he returned home, he was reminded of the event that had taken his thumb and felt remorse for his treatment of his friend. He went immediately to the jail to speak with his friend. \"You were right,\" he said, \"it was good that my thumb was blown off.\" And he proceeded to tell the friend all that had just happened. \"And so I am very sorry for sending you to jail for so long. It was bad for me to do this.\"\n\n\"No,\" his friend replied, \"This is good!\" \"What do you mean,\'This is good\'? How could it be good that I sent my friend to jail for a year?\" \"If I had NOT been in jail, I would have been with you.\"','THis is good','','inherit','closed','closed','','145-revision','','','2013-06-10 20:18:26','2013-06-11 00:18:26','',145,'http://divyayogamonteregie.org/web/?p=146',0,'revision','',0),(147,1,'2013-06-10 20:20:03','2013-06-11 00:20:03','<p style=\"text-align: justify;\">There once was a little boy who had a bad temper. His father gave him a bag of nails and told him that every time he lost his temper, he must hammer a nail into the fence. The first day the boy had driven 37 nails into the fence. Over the next few weeks as he learned to control his anger, the number of nails hammered daily, gradually dwindled down. He discovered it was easier to hold his temper than to drive those nails into the fence.</p>\r\n<p style=\"text-align: justify;\">Finally the day came when the boy didn\'t lose his temper at all. He told his father about it and the father suggested that the boy now pull out one nail for each day that he was able to hold his temper. The days passed and the young boy was finally able to tell his father that all the nails were gone.</p>\r\n<p style=\"text-align: justify;\">The father took his son by the hand and led him to the fence. He said \"you have done well, my son, but look at the holes in the fence. The fence will never be the same. When you say things in anger, they leave a scar just like this one.\" You can put a knife in a man and draw it out. It won\'t matter how many times you say I\'m sorry, the wound is still there. Make sure you control your temper the next time you are tempted to say something you will regret later.</p>','The fence','','publish','closed','closed','','the-fence','','','2013-07-09 20:54:06','2013-07-10 00:54:06','',79,'http://divyayogamonteregie.org/web/?page_id=147',0,'page','',0),(148,1,'2013-06-10 20:19:58','2013-06-11 00:19:58','There once was a little boy who had a bad temper. His father gave him a bag of nails and told him that every time he lost his temper, he must hammer a nail into the fence. The first day the boy had driven 37 nails into the fence. Over the next few weeks as he learned to control his anger, the number of nails hammered daily, gradually dwindled down. He discovered it was easier to hold his temper than to drive those nails into the fence.\n\nFinally the day came when the boy didn\'t lose his temper at all. He told his father about it and the father suggested that the boy now pull out one nail for each day that he was able to hold his temper. The days passed and the young boy was finally able to tell his father that all the nails were gone.\n\nThe father took his son by the hand and led him to the fence. He said \"you have done well, my son, but look at the holes in the fence. The fence will never be the same. When you say things in anger, they leave a scar just like this one.\" You can put a knife in a man and draw it out. It won\'t matter how many times you say I\'m sorry, the wound is still there. Make sure you control your temper the next time you are tempted to say something you will regret later.','The fence','','inherit','closed','closed','','147-revision','','','2013-06-10 20:19:58','2013-06-11 00:19:58','',147,'http://divyayogamonteregie.org/web/?p=148',0,'revision','',0),(149,1,'2013-07-09 20:54:16','2013-07-10 00:54:16','<p style=\"text-align: justify;\">There once was a little boy who had a bad temper. His father gave him a bag of nails and told him that every time he lost his temper, he must hammer a nail into the fence. The first day the boy had driven 37 nails into the fence. Over the next few weeks as he learned to control his anger, the number of nails hammered daily, gradually dwindled down. He discovered it was easier to hold his temper than to drive those nails into the fence.</p>\r\n<p style=\"text-align: justify;\">Finally the day came when the boy didn\'t lose his temper at all. He told his father about it and the father suggested that the boy now pull out one nail for each day that he was able to hold his temper. The days passed and the young boy was finally able to tell his father that all the nails were gone.</p>\r\n<p style=\"text-align: justify;\">The father took his son by the hand and led him to the fence. He said \"you have done well, my son, but look at the holes in the fence. The fence will never be the same. When you say things in anger, they leave a scar just like this one.\" You can put a knife in a man and draw it out. It won\'t matter how many times you say I\'m sorry, the wound is still there. Make sure you control your temper the next time you are tempted to say something you will regret later.</p>','The fence','','inherit','closed','closed','','147-autosave','','','2013-07-09 20:54:16','2013-07-10 00:54:16','',147,'http://divyayogamonteregie.org/web/?p=149',0,'revision','',0),(150,1,'2013-06-10 20:22:33','2013-06-11 00:22:33','<p style=\"text-align: justify;\">This is a  parable of a farmer who owned an old mule. The mule fell into the farmer\'s well. The farmer heard the mule \'braying\' -- or whatever mules do when they fall into wells. After carefully assessing the situation, the farmer felt sorry for the mule, but decided that neither the mule nor the well was worth saving. Instead, he called his neighbors together and told them what had happened and asked them to help haul dirt to bury the old mule in the well and put him out of his misery.</p>\r\n<p style=\"text-align: justify;\">Initially, the old mule was hysterical! But as the farmer and his neighbors continued shoveling and the dirt hit his back, a thought struck him. It suddenly dawned on him that every time a shovel load of dirt landed on his back: he should shake it off and step up! This is what the old mule did, blow after blow. \"Shake it off and step up... shake it off and step up... shake it off and step up!\" he repeated to encourage himself.</p>\r\n<p style=\"text-align: justify;\">No matter how painful the blows, or distressing the situation seemed, the old mule fought \"panic\" and just kept right on shaking it off and stepping up! You guessed it! It wasn\'t long before the old mule, battered and exhausted, stepped triumphantly over the wall of that well! What seemed like it would bury him, actually end up blessing him. All because of the manner in which he handled his adversity.</p>','Shake it off and step up','','publish','closed','closed','','shake-it-off-and-step-up','','','2013-07-09 20:47:58','2013-07-10 00:47:58','',79,'http://divyayogamonteregie.org/web/?page_id=150',0,'page','',0),(151,1,'2013-06-10 20:22:09','2013-06-11 00:22:09','This is a  parable of a farmer who owned an old mule. The mule fell into the farmer\'s well. The farmer heard the mule \'braying\' -- or whatever mules do when they fall into wells. After carefully assessing the situation, the farmer felt sorry for the mule, but decided that neither the mule nor the well was worth saving. Instead, he called his neighbors together and told them what had happened and asked them to help haul dirt to bury the old mule in the well and put him out of his misery.\n\nInitially, the old mule was hysterical! But as the farmer and his neighbors continued shoveling and the dirt hit his back, a thought struck him. It suddenly dawned on him that every time a shovel load of dirt landed on his back: he should shake it off and step up! This is what the old mule did, blow after blow. \"Shake it off and step up... shake it off and step up... shake it off and step up!\" he repeated to encourage himself.\n\nNo matter how painful the blows, or distressing the situation seemed, the old mule fought \"panic\" and just kept right on shaking it off and stepping up! You guessed it! It wasn\'t long before the old mule, battered and exhausted, stepped triumphantly over the wall of that well! What seemed like it would bury him, actually end up blessing him. All because of the manner in which he handled his adversity.','Shake it off and step up','','inherit','closed','closed','','150-revision','','','2013-06-10 20:22:09','2013-06-11 00:22:09','',150,'http://divyayogamonteregie.org/web/?p=151',0,'revision','',0),(152,1,'2013-06-10 20:24:26','2013-06-11 00:24:26','By Remez Sasson\r\n\r\nOne day, a yogi and his disciple arrived in the big city. They had no money with them, but they needed food and a place to stay. The disciple was sure that they were going to beg for their food, and sleep in the park at night.\r\n\r\n\"There is a big park not far from here. We can sleep there at night\", said the disciple.\r\n\"In the open air?\" Asked the yogi.\r\n\"Yes\", responded the student.\r\n\r\nThe yogi smiled and said: \"No, tonight we are going to sleep in a hotel and eat there too\".\r\n\r\nThe student was amazed and exclaimed, \"We cannot afford that!\"\r\n\"Come and sit down\", said the yogi.\r\n\r\nThey both sat down on the ground, and the yogi said:\r\n\"When you focus your mind intently on any subject, it comes to pass.\"\r\n\r\nThe yogi closed his eyes and started to meditate with full concentration. After about ten minutes he got up and started to walk, with his disciple following him. They walked through several streets and alleys, until they arrived at a hotel.\r\n\r\n\"Come, let\'s enter inside\", the yogi said to his disciple.\r\n\r\nThey just set foot in the entrance, when a well-dressed man approached them.\r\n\r\n\"I am the manager of this hotel. You look like traveling swamis, and I believe you have no money. Would you like to work in the kitchen, and in return I\'ll give you food and a place to stay?\"\r\n\r\n\"Fine\", the yogi responded.\r\n\r\nThe disciple was perplexed and asked the yogi: \"Did you use any magic? How did you do that?\"\r\n\r\nThe yogi smiled and said, \"I wanted to show you how the power of thoughts works. When you think with full and strong concentration about something that you want to happen, and your mind does not resist the subject of your thought, your thought materializes.\"\r\n\r\n\"The secret is concentrating, visualizing, seeing details, having faith and projecting mental and emotional energy into the mental scene. These are the general prerequisites. When your mind is empty from thoughts, and only one single thought is allowed to enter, it gains a very great power. One should be very careful with what he thinks. A concentrated thought is powerful, and exerts a very strong influence.\"\r\n\r\nThe disciple looked at his teacher and said: \"I see that I have to sharpen my concentration in order to be able to use this power.\"\r\n\r\n\"Yes, this is the first step\", the yogi replied.\r\n\r\n&nbsp;','The power of thoughts','','publish','closed','closed','','the-power-of-thoughts','','','2013-07-09 21:41:42','2013-07-10 01:41:42','',79,'http://divyayogamonteregie.org/web/?page_id=152',0,'page','',0),(153,1,'2013-06-10 20:24:06','2013-06-11 00:24:06','By Remez Sasson\n\nOne day, a yogi and his disciple arrived in the big city. They had no money with them, but they needed food and a place to stay. The disciple was sure that they were going to beg for their food, and sleep in the park at night.\n\n\"There is a big park not far from here. We can sleep there at night\", said the disciple.\n\"In the open air?\" Asked the yogi.\n\"Yes\", responded the student.\n\nThe yogi smiled and said: \"No, tonight we are going to sleep in a hotel and eat there too\".\n\nThe student was amazed and exclaimed, \"We cannot afford that!\"\n\"Come and sit down\", said the yogi.\n\nThey both sat down on the ground, and the yogi said:\n\"When you focus your mind intently on any subject, it comes to pass.\"\n\nThe yogi closed his eyes and started to meditate with full concentration. After about ten minutes he got up and started to walk, with his disciple following him. They walked through several streets and alleys, until they arrived at a hotel.\n\n\"Come, let\'s enter inside\", the yogi said to his disciple.\n\nThey just set foot in the entrance, when a well-dressed man approached them.\n\n\"I am the manager of this hotel. You look like traveling swamis, and I believe you have no money. Would you like to work in the kitchen, and in return I\'ll give you food and a place to stay?\"\n\n\"Fine\", the yogi responded.\n\nThe disciple was perplexed and asked the yogi: \"Did you use any magic? How did you do that?\"\n\nThe yogi smiled and said, \"I wanted to show you how the power of thoughts works. When you think with full and strong concentration about something that you want to happen, and your mind does not resist the subject of your thought, your thought materializes.\"\n\n\"The secret is concentrating, visualizing, seeing details, having faith and projecting mental and emotional energy into the mental scene. These are the general prerequisites. When your mind is empty from thoughts, and only one single thought is allowed to enter, it gains a very great power. One should be very careful with what he thinks. A concentrated thought is powerful, and exerts a very strong influence.\"\n\nThe disciple looked at his teacher and said: \"I see that I have to sharpen my concentration in order to be able to use this power.\"\n\n\"Yes, this is the first step\", the yogi replied.\n\n16A The Elephant and the Fly\n\nBy Remez Sasson\n\nA disciple and his teacher were walking through the forest. The disciple was disturbed by the fact that his mind was in constant unrest.\n\nHe asked his teacher: \"Why most people\'s minds are restless, and only a few possess a calm mind? What can one do to still the mind?\"\n\nThe teacher looked at the disciple, smiled and said:\n\"I will tell you a story. An elephant was standing and picking leaves from a tree. A small fly came, flying and buzzing near his ear. The elephant waved it away with his long ears. Then the fly came again, and the elephant waved it away once more.\"\n\nThis was repeated several times. Then the elephant asked the fly:\n\"Why are you so restless and noisy? Why can\'t you stay for a while in one place?\"\n\nThe fly answered: \"I am attracted to whatever I see, hear or smell. My five senses, and everything that happens around me, pull me constantly in all directions, and I cannot resist them. What is your secret? How can you stay so calm and still?\"\n\nThe elephant stopped eating and said:\n\"My five senses do not rule my attention. I am in control of my attention, and I can direct it wherever I want. This helps me to get immersed in whatever I do, and therefore, keep my mind focused and calm. Now that I am eating, I am completely immersed in eating. In this way, I can enjoy my food and chew it better. I control my attention, and not the other way around, and this helps me stay peaceful.\"\n\nUpon hearing these words, the disciple\'s eyes opened wide, and a smile appeared on his face. He looked at his teacher and said:\n\"I understand! My mind will be in constant unrest, if my five senses, and whatever is happening in the world around me are in control of it. On the other hand, if I am in command of my five senses, able to disregard sense impressions, my mind would become calm, and I will be able to disregard its restlessness.\"\n\n\"Yes, that\'s right,\" answered the teacher,\" The mind is restless and goes wherever the attention is. Control your attention, and you control your mind.\"','The power of thoughts','','inherit','closed','closed','','152-revision-v1','','','2013-06-10 20:24:06','2013-06-11 00:24:06','',152,'http://divyayogamonteregie.org/web/?p=153',0,'revision','',0),(356,1,'2013-07-09 21:47:41','2013-07-10 01:47:41','A disciple and his teacher were walking through the forest. The disciple was disturbed by the fact that his mind was in constant unrest.\r\n\r\nHe asked his teacher: \"Why most people\'s minds are restless, and only a few possess a calm mind? What can one do to still the mind?\"\r\n\r\nThe teacher looked at the disciple, smiled and said:\r\n\"I will tell you a story. An elephant was standing and picking leaves from a tree. A small fly came, flying and buzzing near his ear. The elephant waved it away with his long ears. Then the fly came again, and the elephant waved it away once more.\"\r\n\r\nThis was repeated several times. Then the elephant asked the fly:\r\n\"Why are you so restless and noisy? Why can\'t you stay for a while in one place?\"\r\n\r\nThe fly answered: \"I am attracted to whatever I see, hear or smell. My five senses, and everything that happens around me, pull me constantly in all directions, and I cannot resist them. What is your secret? How can you stay so calm and still?\"\r\n\r\nThe elephant stopped eating and said:\r\n\"My five senses do not rule my attention. I am in control of my attention, and I can direct it wherever I want. This helps me to get immersed in whatever I do, and therefore, keep my mind focused and calm. Now that I am eating, I am completely immersed in eating. In this way, I can enjoy my food and chew it better. I control my attention, and not the other way around, and this helps me stay peaceful.\"\r\n\r\nUpon hearing these words, the disciple\'s eyes opened wide, and a smile appeared on his face. He looked at his teacher and said:\r\n\"I understand! My mind will be in constant unrest, if my five senses, and whatever is happening in the world around me are in control of it. On the other hand, if I am in command of my five senses, able to disregard sense impressions, my mind would become calm, and I will be able to disregard its restlessness.\"\r\n\r\n\"Yes, that\'s right,\" answered the teacher,\" The mind is restless and goes wherever the attention is. Control your attention, and you control your mind.\"','The Elephant and the Fly  ','','publish','closed','closed','','the-elephant-and-the-fly','','','2013-07-09 21:47:41','2013-07-10 01:47:41','',79,'http://divyayogamonteregie.org/web/?page_id=356',0,'page','',0),(154,1,'2013-06-10 20:26:42','2013-06-11 00:26:42','<p style=\"text-align: justify;\">A vacationing American businessman standing on the pier of a quaint coastal fishing village in southern Mexico watched as a small boat with just one young Mexican fisherman pulled into the dock. Inside the small boat were several large yellowfin tuna. Enjoying the warmth of the early afternoon sun, the American complimented the Mexican on the quality of his fish.</p>\r\n<p style=\"text-align: justify;\">\"How long did it take you to catch them?\" the American casually asked.</p>\r\n<p style=\"text-align: justify;\">\"Oh, a few hours,\" the Mexican fisherman replied.</p>\r\n<p style=\"text-align: justify;\">\"Why don\'t you stay out longer and catch more fish?\" the American businessman then asked.</p>\r\n<p style=\"text-align: justify;\">The Mexican warmly replied, \"With this I have more than enough to support my family\'s needs.\"</p>\r\n<p style=\"text-align: justify;\">The businessman then became serious, \"But what do you do with the rest of your time?\"</p>\r\n<p style=\"text-align: justify;\">Responding with a smile, the Mexican fisherman answered, \"I sleep late, play with my children, watch ballgames, and take siesta with my wife. Sometimes in the evenings I take a stroll into the village to see my friends, play the guitar, sing a few songs...\"</p>\r\n<p style=\"text-align: justify;\">The American businessman impatiently interrupted, \"Look, I have an MBA from Harvard, and I can help you to be more profitable. You can start by fishing several hours longer every day. You can then sell the extra fish you catch. With the extra money, you can buy a bigger boat. With the additional income that larger boat will bring, before long you can buy a second boat, then a third one, and so on, until you have an entire fleet of fishing boats.\"</p>\r\n<p style=\"text-align: justify;\">Proud of his own sharp thinking, he excitedly elaborated a grand scheme which could bring even bigger profits, \"Then, instead of selling your catch to a middleman you\'ll be able to sell your fish directly to the processor, or even open your own cannery. Eventually, you could control the product, processing and distribution. You could leave this tiny coastal village and move to Mexico City, or possibly even Los Angeles or New York City, where you could even further expand your enterprise.\"</p>\r\n<p style=\"text-align: justify;\">Having never thought of such things, the Mexican fisherman asked, \"But how long will all this take?\"</p>\r\n<p style=\"text-align: justify;\">After a rapid mental calculation, the Harvard MBA pronounced, \"Probably about 15-20 years, maybe less if you work really hard.\"</p>\r\n<p style=\"text-align: justify;\">\"And then what, señor?\" asked the fisherman.</p>\r\n<p style=\"text-align: justify;\">\"Why, that\'s the best part!\" answered the businessman with a laugh. \"When the time is right, you would sell your company stock to the public and become very rich. You would make millions.\"</p>\r\n<p style=\"text-align: justify;\">\"Millions? Really? What would I do with it all?\" asked the young fisherman in disbelief.</p>\r\n<p style=\"text-align: justify;\">The businessman boasted, \"Then you could happily retire with all the money you\'ve made. You could move to a quaint coastal fishing village where you could sleep late, play with your grandchildren, watch ballgames, and take siesta with your wife. You could stroll to the village in the evenings where you could play the guitar and sing with your friends all you want.\"\r\nThe moral of the story is: <strong>Know what really matters in life, and you may find that it is already much closer than you think</strong></p>','The  Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?','','publish','closed','closed','','the-mexican-fisherman-meets-harvard-mba-what-really-matters-in-life','','','2013-07-09 20:50:54','2013-07-10 00:50:54','',79,'http://divyayogamonteregie.org/web/?page_id=154',0,'page','',0),(155,1,'2013-06-10 20:25:27','2013-06-11 00:25:27','','The  Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?','','inherit','closed','closed','','154-revision','','','2013-06-10 20:25:27','2013-06-11 00:25:27','',154,'http://divyayogamonteregie.org/web/?p=155',0,'revision','',0),(156,1,'2013-06-10 20:28:21','2013-06-11 00:28:21','<p style=\"text-align: justify;\"></p>\r\n<p style=\"text-align: justify;\">A well known speaker started off his seminar by holding up a $20 bill. In the room of 200, he asked, \"Who would like this $20 bill?\"</p>\r\n<p style=\"text-align: justify;\">Hands started going up.</p>\r\n<p style=\"text-align: justify;\">He said, \"I am going to give this $20 to one of you but first, let me do this.\" He proceeded to crumple the dollar bill up.</p>\r\n<p style=\"text-align: justify;\">He then asked, \"Who still wants it?\"</p>\r\n<p style=\"text-align: justify;\">Still the hands were up in the air.</p>\r\n<p style=\"text-align: justify;\">\"Well,\" he replied, \"What if I do this?\" And he dropped it on the ground and started to grind it into the floor with his shoe.</p>\r\n<p style=\"text-align: justify;\">He picked it up, now all crumpled and dirty. \"Now who still wants it?\" Still the hands went into the air.</p>\r\n<p style=\"text-align: justify;\">\"My friends, you have all learned a very valuable lesson. No matter what I did to the money, you still wanted it because it did not decrease in value. It was still worth $20.</p>\r\n<p style=\"text-align: justify;\">Many times in our lives, we are dropped, crumpled, and ground into the dirt by the decisions we make and the circumstances that come our way.</p>\r\n<p style=\"text-align: justify;\">We feel as though we are worthless. But no matter what has happened or what will happen, you will never lose your value. You have divine soul. You are special - Don\'t ever forget it!</p>','A value','','publish','closed','closed','','a-value','','','2013-07-09 20:34:38','2013-07-10 00:34:38','',79,'http://divyayogamonteregie.org/web/?page_id=156',0,'page','',0),(161,1,'2013-06-10 20:29:42','2013-06-11 00:29:42','A <b>Happiness</b>\n\nWhen I was 5 years old, my mother always told me that happiness was the key to life. When I went to school, they asked me what I wanted to be when I grew up.\n\nI wrote down \'happy\'. They told me I didn\'t understand the assignment, and I told them they didn\'t understand life.\n\n26A <b>Wise Saint</b>\n\n&nbsp;\n\nThere once was a wise sage who wandered the countryside. One day, as he passed near a village, he was approached by a woman who told him of a sick child nearby. She beseeched him to help this child.\n\nSo the sage came to the village, and a crowd gathered around him, for such a man was a rare sight. One woman brought the sick child to him, and he said a prayer over her.\n\n\"Do you really think your prayer will help her, when medicine has failed?\" yelled a man from the crowd.\n\n\"You know nothing of such things! You are a stupid fool!\" said the sage to the man.\n\nThe man became very angry with these words and his face grew hot and red. He was about to say something, or perhaps strike out, when the sage walked over to him and said: \"If one word has such power as to make you so angry and hot, may not another have the power to heal?\"\n\nAnd thus, the sage healed two people that day.','The Happiness','','inherit','closed','closed','','160-revision','','','2013-06-10 20:29:42','2013-06-11 00:29:42','',160,'http://divyayogamonteregie.org/web/?p=161',0,'revision','',0),(159,1,'2013-06-10 20:28:10','2013-06-11 00:28:10','<b></b>\n\nA well known speaker started off his seminar by holding up a $20 bill. In the room of 200, he asked, \"Who would like this $20 bill?\"\n\nHands started going up.\n\nHe said, \"I am going to give this $20 to one of you but first, let me do this.\" He proceeded to crumple the dollar bill up.\n\nHe then asked, \"Who still wants it?\"\n\nStill the hands were up in the air.\n\n\"Well,\" he replied, \"What if I do this?\" And he dropped it on the ground and started to grind it into the floor with his shoe.\n\nHe picked it up, now all crumpled and dirty. \"Now who still wants it?\" Still the hands went into the air.\n\n\"My friends, you have all learned a very valuable lesson. No matter what I did to the money, you still wanted it because it did not decrease in value. It was still worth $20.\n\nMany times in our lives, we are dropped, crumpled, and ground into the dirt by the decisions we make and the circumstances that come our way.\n\nWe feel as though we are worthless. But no matter what has happened or what will happen, you will never lose your value. You are special - Don\'t ever forget it!','A value','','inherit','closed','closed','','156-revision','','','2013-06-10 20:28:10','2013-06-11 00:28:10','',156,'http://divyayogamonteregie.org/web/?p=159',0,'revision','',0),(160,1,'2013-06-10 20:29:52','2013-06-11 00:29:52','<p style=\"text-align: justify;\">When I was 5 years old, my mother always told me that happiness was the key to life. When I went to school, they asked me what I wanted to be when I grew up.</p>\r\n<p style=\"text-align: justify;\">I wrote down \'happy\'. They told me I didn\'t understand the assignment, and I told them they didn\'t understand life.\r\n<b></b></p>\r\n&nbsp;','The Happiness','','publish','closed','closed','','the-happiness','','','2013-07-09 21:34:17','2013-07-10 01:34:17','',79,'http://divyayogamonteregie.org/web/?page_id=160',0,'page','',0),(162,1,'2013-06-10 20:31:35','2013-06-11 00:31:35','<p style=\"text-align: justify;\"></p>\r\n<p style=\"text-align: justify;\">About the hidden nature of Atman [Soul]:</p>\r\n<p style=\"text-align: justify;\">\"We are like a king, who falling victim to amnesia, wanders his kingdom in tatters, not knowing who he really is. We are like a lion cub who, having become lost from his mother at birth, grows up by accident among sheep and takes to grazing and bleating like them, assuming that he is like them.\" - Themes from Hindu literature.</p>\r\n<p style=\"text-align: justify;\">A LIONESS was big with young and going about in search of prey when she saw a flock of sheep. She jumped upon them and died in that effort. But her little baby lion was born, motherless. The sheep took care of it, and the sheep brought it up. It grew up with them, ate grass, and bleated like the sheep. In time it became a big, full-grown lion, and still it bleated like a sheep and thought it was a sheep.</p>\r\n<p style=\"text-align: justify;\">One day another lion came in search of prey, and was astonished to find that in the middle of this flock of sheep was a lion who fled like the sheep at the approach of danger. He tried to get near the sheep-lion, to tell it that it was not a sheep but a lion, but the poor animal fled at his approach.</p>\r\n<p style=\"text-align: justify;\">However, he watched his opportunity, and one day found the sheep-lion sleeping. He approached it and said, \"You are a lion.\"</p>\r\n<p style=\"text-align: justify;\">\"I am the sheep\" cried and bleated the other lion, and could not believe otherwise.</p>\r\n<p style=\"text-align: justify;\">The lion dragged him towards a lake and said, \"Look here, there is my reflection and yours.\"</p>\r\n<p style=\"text-align: justify;\">Then came the comparison. The bleating lion looked at the lion and then at its own reflection, and in a moment came the idea that it was a lion. The lion roared, the bleating was gone. [Adapted from a tale by Vivekananda in the lecture \"The real nature of man\", given in London, 1899 or near by]</p>\r\n<p style=\"text-align: justify;\">❖ \"You are lions . . . and perfect.\" - Swami Vivekananda</p>','The sheep lion','','publish','closed','closed','','the-sheep-and-the-lion','','','2013-07-09 22:02:59','2013-07-10 02:02:59','',79,'http://divyayogamonteregie.org/web/?page_id=162',0,'page','',0),(163,1,'2013-06-10 20:30:13','2013-06-11 00:30:13','','image008','','inherit','closed','closed','','image008','','','2013-06-10 20:30:13','2013-06-11 00:30:13','',200,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image008.jpg',0,'attachment','image/jpeg',0),(164,1,'2013-06-10 20:30:15','2013-06-11 00:30:15','','image014','','inherit','closed','closed','','image014','','','2013-06-10 20:30:15','2013-06-11 00:30:15','',213,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image014.jpg',0,'attachment','image/jpeg',0),(165,1,'2013-06-10 20:30:17','2013-06-11 00:30:17','','image002','','inherit','closed','closed','','image002','','','2013-06-10 20:30:17','2013-06-11 00:30:17','',192,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image002.jpg',0,'attachment','image/jpeg',0),(166,1,'2013-06-10 20:30:18','2013-06-11 00:30:18','','image004','','inherit','closed','closed','','image004','','','2013-06-10 20:30:18','2013-06-11 00:30:18','',192,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image004.jpg',0,'attachment','image/jpeg',0),(167,1,'2013-06-10 20:30:20','2013-06-11 00:30:20','','image006','','inherit','closed','closed','','image006','','','2013-06-10 20:30:20','2013-06-11 00:30:20','',194,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image006.jpg',0,'attachment','image/jpeg',0),(168,1,'2013-06-10 20:30:21','2013-06-11 00:30:21','','image010','','inherit','closed','closed','','image010','','','2013-06-10 20:30:21','2013-06-11 00:30:21','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image010.jpg',0,'attachment','image/jpeg',0),(169,1,'2013-06-10 20:30:25','2013-06-11 00:30:25','','Organic Salad','','inherit','closed','closed','','image012','','','2013-06-10 20:30:25','2013-06-11 00:30:25','',204,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image012.jpg',0,'attachment','image/jpeg',0),(170,1,'2013-06-10 20:31:04','2013-06-11 00:31:04','A The Sheep-Lion\n\nAbout the hidden nature of Atman [Soul]:\n\n\"We are like a king, who falling victim to amnesia, wanders his kingdom in tatters, not knowing who he really is. We are like a lion cub who, having become lost from his mother at birth, grows up by accident among sheep and takes to grazing and bleating like them, assuming that he is like them.\" - Themes from Hindu literature.\n\nA LIONESS was big with young and going about in search of prey when she saw a flock of sheep. She jumped upon them and died in that effort. But her little baby lion was born, motherless. The sheep took care of it, and the sheep brought it up. It grew up with them, ate grass, and bleated like the sheep. In time it became a big, full-grown lion, and still it bleated like a sheep and thought it was a sheep.\n\nOne day another lion came in search of prey, and was astonished to find that in the middle of this flock of sheep was a lion who fled like the sheep at the approach of danger. He tried to get near the sheep-lion, to tell it that it was not a sheep but a lion, but the poor animal fled at his approach.\n\nHowever, he watched his opportunity, and one day found the sheep-lion sleeping. He approached it and said, \"You are a lion.\"\n<table width=\"180\" border=\"0\" cellpadding=\"0\">\n<tbody>\n<tr>\n<td></td>\n</tr>\n<tr>\n<td>\"I gather: \"A lion is . . . ahh, perfect!\"\"</td>\n</tr>\n</tbody>\n</table>\n\"I am a sheep,\" cried and bleated the other lion, and could not believe otherwise.\n\nThe lion dragged him towards a lake and said, \"Look here, there is my reflection and yours.\"\n\nThen came the comparison. The bleating lion looked at the lion and then at its own reflection, and in a moment came the idea that it was a lion. The lion roared, the bleating was gone. [Adapted from a tale by Vivekananda in the lecture \"The real nature of man\", given in London, 1899 or near by]\n\n❖ \"You are lions . . . and perfect.\" - Swami Vivekananda','The sheep','','inherit','closed','closed','','162-revision','','','2013-06-10 20:31:04','2013-06-11 00:31:04','',162,'http://divyayogamonteregie.org/web/?p=170',0,'revision','',0),(171,1,'2013-06-10 20:34:56','2013-06-11 00:34:56','<p style=\"text-align: justify;\">TWO FROGS - a big one and a small one - hopped into a pail of milk. The sides of the pail were shiny and smooth. The frogs were swimming round and round without being able to get out of the pail again, and every time they lifted their mouths to catch a little air to breathe, down they went. They kept on swimming and gasping like this till the big frog gave up and drowned. Then the little frog said to himself,</p>\r\n<p style=\"text-align: justify;\">\"Well, well. I will hang on as long as I can, too.\"</p>\r\n<p style=\"text-align: justify;\">It kept on for hours, when suddenly it found something solid under its feet - milk was churned to butter! Out jumped the little frog!</p>\r\n<p style=\"text-align: justify;\">❖ <i>Said Yogananda: \"Be like the little frog. By all means keep battling.\" </i></p>\r\n<p style=\"text-align: justify;\">❖ <i>Churn your difficulty well or it may be to your loss.</i></p>','The two Frogs in Trouble','','publish','closed','closed','','the-two-frogs-in-trouble','','','2013-07-09 22:04:41','2013-07-10 02:04:41','',79,'http://divyayogamonteregie.org/web/?page_id=171',0,'page','',0),(172,1,'2013-06-10 20:34:48','2013-06-11 00:34:48','TWO FROGS - a big one and a small one - hopped into a pail of milk. The sides of the pail were shiny and smooth. The frogs were swimming round and round without being able to get out of the pail again, and every time they lifted their mouths to catch a little air to breathe, down they went. They kept on swimming and gasping like this till the big frog gave up and drowned. Then the little frog said to himself,\n\n\"Well, well. I will hang on as long as I can, too.\"\n\nIt kept on for hours, when suddenly it found something solid under its feet - milk was churned to butter! Out jumped the little frog!\n\n❖ <i>Said Yogananda: \"Be like the little frog. By all means keep battling.\" </i>\n\n❖ <i>Churn your difficulty well or it may be to your loss.</i>','The two Frogs in Trouble','','inherit','closed','closed','','171-revision','','','2013-06-10 20:34:48','2013-06-11 00:34:48','',171,'http://divyayogamonteregie.org/web/?p=172',0,'revision','',0),(173,1,'2013-06-10 20:42:52','2013-06-11 00:42:52','<p style=\"text-align: justify;\">Please do not stand too close to the trees! You will not be able to enjoy the forest...</p>\r\n<p style=\"text-align: justify;\">A few years before hurricane Katrina hit New Orleans, a new expensive automobile stopped at the top of the Mississippi River Bridge and a gentleman stepped out of the car wearing very expensive clothing.</p>\r\n<p style=\"text-align: justify;\">He climbed over the rail and under the bridge onto a platform below the roadway preparing to jump. Cars started stopping and the traffic backed up for miles. The police arrived with the fire department, ministers and mental health professionals.</p>\r\n<p style=\"text-align: justify;\">They began talking to the man and telling him not to jump. They told him that he may not die; he may break all of his bones and be paralyzed for life. About half mile back in traffic was an old truck with lawn mowers, rakes, and shovels. An elderly gardener got out of his truck and walked up to where the crowd was gathered.</p>\r\n<p style=\"text-align: justify;\">He made his way through the people, looked over the side and hollered down to the man on the ledge, \"Hey, I got to go to work. Either jump or get off the bridge. If you decide not to jump, tomorrow is going to be better!\"</p>\r\n<p style=\"text-align: justify;\">With that the man climbed up onto the bridge. The police handcuffed him and placed him in the back seat of the police car. The gardener walked back to his truck waiting for the traffic to move.</p>\r\n<p style=\"text-align: justify;\">The minister asked the fireman, \"Who was that?\" The fireman said, \"He said he has to go to work!\"</p>\r\n<p style=\"text-align: justify;\">The police reported to the press that all the way to the hospital the man kept saying over and over, \"Tomorrow is going to be better.\"</p>\r\n<p style=\"text-align: justify;\">One must see a future, to have a future</p>','Tomorrow is going to be better','','publish','closed','closed','','tomorrow-is-going-to-be-better','','','2013-07-09 22:06:34','2013-07-10 02:06:34','',79,'http://divyayogamonteregie.org/web/?page_id=173',0,'page','',0),(174,1,'2013-06-10 20:39:13','2013-06-11 00:39:13','Please do not stand too close to the trees! You will not be able to enjoy the forest...\n\nA few years before hurricane Katrina hit New Orleans, a new expensive automobile stopped at the top of the Mississippi River Bridge and a gentleman stepped out of the car wearing very expensive clothing.\n\nHe climbed over the rail and under the bridge onto a platform below the roadway preparing to jump. Cars started stopping and the traffic backed up for miles. The police arrived with the fire department, ministers and mental health professionals.\n\nThey began talking to the man and telling him not to jump. They told him that he may not die; he may break all of his bones and be paralyzed for life. About half mile back in traffic was an old truck with lawn mowers, rakes, and shovels. An elderly gardener got out of his truck and walked up to where the crowd was gathered.\n\nHe made his way through the people, looked over the side and hollered down to the man on the ledge, \"Hey, I got to go to work. Either jump or get off the bridge. If you decide not to jump, tomorrow is going to be better!\"\n\nWith that the man climbed up onto the bridge. The police handcuffed him and placed him in the back seat of the police car. The gardener walked back to his truck waiting for the traffic to move.\n\nThe minister asked the fireman, \"Who was that?\" The fireman said, \"He said he has to go to work!\"\n\nThe police reported to the press that all the way to the hospital the man kept saying over and over, \"Tomorrow is going to be better.\"\n\nOne must see a future, to have a future','Tomorrow is going to be better','','inherit','closed','closed','','173-revision','','','2013-06-10 20:39:13','2013-06-11 00:39:13','',173,'http://divyayogamonteregie.org/web/?p=174',0,'revision','',0),(175,1,'2013-06-10 21:22:48','2013-06-11 01:22:48','<p style=\"text-align: justify;\">This is a powerful message for our modern society. We seem to have lost our bearing and our sense of direction.</p>\r\n<p style=\"text-align: justify;\">One young academically excellent person went to apply for a managerial position in a big company. He passed the first interview; the director did the last interview. The director discovered from the CV that the youth\'s academic achievements were excellent all the way, from the secondary school until the postgraduate research, never had a year when he did not score.</p>\r\n<p style=\"text-align: justify;\">The director asked, \"Did you obtain any scholarships in school?\"</p>\r\n<p style=\"text-align: justify;\">The youth answered, \"None.\"</p>\r\n<p style=\"text-align: justify;\">The director asked, \"Was it your father who paid for your school fees?\"</p>\r\n<p style=\"text-align: justify;\">The youth answered, \"My father passed away when I was one year old, it was my mother who paid for my school fees.\"</p>\r\n<p style=\"text-align: justify;\">The director asked, \"Where did your mother work?\"</p>\r\n<p style=\"text-align: justify;\">The youth answered, \"My mother worked as laundry woman.\"</p>\r\n<p style=\"text-align: justify;\">The director requested the youth to show his hands. The youth showed a pair of hands that were smooth and perfect.</p>\r\n<p style=\"text-align: justify;\">The director asked, \"Have you ever helped your mother wash the clothes before?\"</p>\r\n<p style=\"text-align: justify;\">The youth answered, \"Never, my mother always wanted me to study and read more books. Furthermore, my mother can wash clothes faster than me.\"</p>\r\n<p style=\"text-align: justify;\">The director said, \"I have a request. When you go back today, go and clean your mother\'s hands, and then see me tomorrow morning.\"</p>\r\n<p style=\"text-align: justify;\">The youth felt that his chance of landing the job was high. When he went back, he happily requested his mother to let him clean her hands. His mother felt strange. Happy but with mixed feelings, she showed her hands to the young man.</p>\r\n<p style=\"text-align: justify;\">The youth cleaned his mother\'s hands slowly. His tear fell as he did that. It was the first time he noticed that his mother\'s hands were so wrinkled, and there were so many bruises in her hands. Some bruises were so painful that his mother shivered when they were cleaned with water.</p>\r\n<p style=\"text-align: justify;\">This was the first time the youth realized that it was this pair of hands that washed the clothes everyday to enable him to pay the school fee. The bruises in the mother\'s hands were the price that the mother had to pay for his graduation, academic excellence and his future.</p>\r\n<p style=\"text-align: justify;\">After finishing the cleaning of his mother\'s hands, the youth quietly washed all the remaining clothes for his mother.</p>\r\n<p style=\"text-align: justify;\">That night, mother and son talked for a very long time.</p>\r\n<p style=\"text-align: justify;\">Next morning, the youth went to the director\'s office.</p>\r\n<p style=\"text-align: justify;\">The Director noticed the tears in the youth\'s eyes, asked: \"Can you tell me what have you done and learned yesterday in your house?\"</p>\r\n<p style=\"text-align: justify;\">The youth answered, \"I cleaned my mother\'s hands and also finished cleaning all the remaining clothes.\"</p>\r\n<p style=\"text-align: justify;\">The Director asked, \"Please tell me your feelings.\"</p>\r\n<p style=\"text-align: justify;\">The youth said:</p>\r\n\r\n<ol style=\"text-align: justify;\" start=\"1\">\r\n	<li>I know now what appreciation is. Without my mother, there would not have been the successful me today.</li>\r\n	<li>By working together and helping my mother, only now I realize how difficult and tough it is to get something done.</li>\r\n	<li>I have come to appreciate the importance and value of family relationships.</li>\r\n</ol>\r\n<p style=\"text-align: justify;\">The director said, \"This is what I am looking for to be my manager. I want to recruit a person who can appreciate the help of others, a person who knows the sufferings of others to get things done, and a person who would not put money as his only goal in life. You are hired.\"</p>\r\n<p style=\"text-align: justify;\">Later on, this young person worked very hard and received the respect of his subordinates. Every employee worked diligently and as a team. The company\'s performance improved tremendously</p>','The appriciation ','','publish','closed','closed','','the-appriciation','','','2013-07-09 20:52:23','2013-07-10 00:52:23','',79,'http://divyayogamonteregie.org/web/?page_id=175',0,'page','',0),(177,1,'2013-06-10 21:24:47','2013-06-11 01:24:47','<p style=\"text-align: justify;\">There is this story about a famous research scientist who had made several very important medical breakthroughs. He was being interviewed by a newspaper reporter who asked him why he thought he was able to be so much more creative than the average person. What set him so far apart from others?</p>\r\n<p style=\"text-align: justify;\">He responded that, in his opinion, it all came from an experience with his mother that occurred when he was about two years old. He had been trying to remove a bottle of milk from the refrigerator when he lost his grip on the slippery bottle and it fell, spilling its contents all over the kitchen floor - a veritable sea of milk!</p>\r\n<p style=\"text-align: justify;\">When his mother came into the kitchen, instead of yelling at him, giving him a lecture, or punishing him, she said, \"Robert, what a great and wonderful mess you have made! I have rarely seen such a huge puddle of milk. Well, the damage has already been done. Would you like to get down and play in the milk for a few minutes before we clean it up?\"</p>\r\n<p style=\"text-align: justify;\">Indeed, he did. After a few minutes, his mother said, \"You know, Robert, whenever you make a mess like this, eventually you have to clean it up and restore everything to its proper order. So, how would you like to do that? We could use a sponge, a towel, or a mop. Which do you prefer?\"</p>\r\n<p style=\"text-align: justify;\">He chose the sponge and together they cleaned up the spilled milk.</p>\r\n<p style=\"text-align: justify;\">His mother then said, \"You know, what we have here is a failed experiment in how to effectively carry a big milk bottle with two tiny hands. Let\'s go out in the back yard and fill the bottle with water and see if you can discover a way to carry it without dropping it.\"</p>\r\n<p style=\"text-align: justify;\">The little boy learned that if he grasped the bottle at the top near the lip with both hands, he could carry it without dropping it. This renowned scientist then remarked that it was at that moment that he knew he didn\'t need to be afraid to make mistakes. Instead, he learned that mistakes were just opportunities for learning something new, which is, after all, what scientific experiments are all about. Even if the experiment \"doesn\'t work,\" we usually learn something valuable from it.</p>',' Motivate','','publish','closed','closed','','the-motivate','','','2013-07-09 21:32:01','2013-07-10 01:32:01','',79,'http://divyayogamonteregie.org/web/?page_id=177',0,'page','',0),(178,1,'2013-06-10 21:24:22','2013-06-11 01:24:22','38A <b>Motivate</b>\n\nThere is this story about a famous research scientist who had made several very important medical breakthroughs. He was being interviewed by a newspaper reporter who asked him why he thought he was able to be so much more creative than the average person. What set him so far apart from others?\n\nHe responded that, in his opinion, it all came from an experience with his mother that occurred when he was about two years old. He had been trying to remove a bottle of milk from the refrigerator when he lost his grip on the slippery bottle and it fell, spilling its contents all over the kitchen floor - a veritable sea of milk!\n\nWhen his mother came into the kitchen, instead of yelling at him, giving him a lecture, or punishing him, she said, \"Robert, what a great and wonderful mess you have made! I have rarely seen such a huge puddle of milk. Well, the damage has already been done. Would you like to get down and play in the milk for a few minutes before we clean it up?\"\n\nIndeed, he did. After a few minutes, his mother said, \"You know, Robert, whenever you make a mess like this, eventually you have to clean it up and restore everything to its proper order. So, how would you like to do that? We could use a sponge, a towel, or a mop. Which do you prefer?\"\n\nHe chose the sponge and together they cleaned up the spilled milk.\n\nHis mother then said, \"You know, what we have here is a failed experiment in how to effectively carry a big milk bottle with two tiny hands. Let\'s go out in the back yard and fill the bottle with water and see if you can discover a way to carry it without dropping it.\"\n\nThe little boy learned that if he grasped the bottle at the top near the lip with both hands, he could carry it without dropping it. This renowned scientist then remarked that it was at that moment that he knew he didn\'t need to be afraid to make mistakes. Instead, he learned that mistakes were just opportunities for learning something new, which is, after all, what scientific experiments are all about. Even if the experiment \"doesn\'t work,\" we usually learn something valuable from it.','The ','','inherit','closed','closed','','177-revision','','','2013-06-10 21:24:22','2013-06-11 01:24:22','',177,'http://divyayogamonteregie.org/web/?p=178',0,'revision','',0),(179,1,'2013-06-10 21:27:02','2013-06-11 01:27:02','<p style=\"text-align: justify;\"><b>\r\n</b><b>\r\n</b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.</p>\r\n<p style=\"text-align: justify;\">The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.</p>\r\n<p style=\"text-align: justify;\">Here\'s what you do,\" said the Doctor, \"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\"</p>\r\n<p style=\"text-align: justify;\">That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \"I\'m about 40 feet away, let\'s see what happens.\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\"</p>\r\n<p style=\"text-align: justify;\">No response.</p>\r\n<p style=\"text-align: justify;\">So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \"Honey, what\'s for dinner?\"</p>\r\n<p style=\"text-align: justify;\">Still no response.</p>\r\n<p style=\"text-align: justify;\">Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\"</p>\r\n<p style=\"text-align: justify;\">Again he gets no response.</p>\r\n<p style=\"text-align: justify;\">So he walks up to the kitchen door, about 10 feet away. \"Honey, what\'s for dinner?\"</p>\r\n<p style=\"text-align: justify;\">Again there is no response.</p>\r\n<p style=\"text-align: justify;\">So he walks right up behind her. \"Honey, what\'s for dinner?\"</p>\r\n<p style=\"text-align: justify;\">\"James, for the FIFTH time I\'ve said, Lima Beans!\"</p>\r\n<p style=\"text-align: justify;\"><b>The problem may not be with the other person as we always think, could be very much within us!</b></p>\r\n&nbsp;','A problem may be me not other ','','publish','closed','closed','','a-problem-may-be-me-not-other','','','2013-07-09 20:33:32','2013-07-10 00:33:32','',79,'http://divyayogamonteregie.org/web/?page_id=179',0,'page','',0),(180,1,'2013-06-10 21:27:00','2013-06-11 01:27:00','<b>\n</b><b>\n</b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.\n\nThe Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.\n\nHere\'s what you do,\" said the Doctor, \"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\"\n\nThat evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \"I\'m about 40 feet away, let\'s see what happens.\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\"\n\nNo response.\n\nSo the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \"Honey, what\'s for dinner?\"\n\nStill no response.\n\nNext he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\"\n\nAgain he gets no response.\n\nSo he walks up to the kitchen door, about 10 feet away. \"Honey, what\'s for dinner?\"\n\nAgain there is no response.\n\nSo he walks right up behind her. \"Honey, what\'s for dinner?\"\n\n\"James, for the FIFTH time I\'ve said, CHICKEN!\"\n\n<b>The problem may not be with the other person as we always think, could be very much within us!</b>\n\n&nbsp;','A problem may be me not other ','','inherit','closed','closed','','179-revision','','','2013-06-10 21:27:00','2013-06-11 01:27:00','',179,'http://divyayogamonteregie.org/web/?p=180',0,'revision','',0),(376,1,'2013-07-28 14:06:38','2013-07-28 18:06:38','Welcome to <strong>Divya Yoga</strong> Monteregie.\r\n\r\nContact us\r\n\r\nPhone # 450-468-7539\r\nFax # 450-468-5724\r\nEmail : founder@vsffoundation.ca','Welcome to Divya Yoga','','inherit','closed','closed','','1-revision-8','','','2013-07-28 14:06:38','2013-07-28 18:06:38','',1,'http://divyayogamonteregie.org/web/?p=376',0,'revision','',0),(372,1,'2013-05-18 19:18:21','2013-05-18 23:18:21','Welcome to <strong>Divya Yoga</strong> Monteregie.\r\n\r\nContact us\r\n\r\nPhone # 450-468-7539\r\nFax # 450-468-5724\r\nEmail : founder@vsffoundation.ca','Welcome to Divya Yoga','','inherit','closed','closed','','1-revision-6','','','2013-05-18 19:18:21','2013-05-18 23:18:21','',1,'http://divyayogamonteregie.org/web/?p=372',0,'revision','',0),(373,1,'2013-07-28 14:05:47','2013-07-28 18:05:47','Welcome to <strong>Divya Yoga</strong> Monteregie.\r\n\r\nContact us\r\n\r\nPhone # 450-468-7539\r\nFax # 450-468-5724\r\nEmail : founder@vsffoundation.ca','Welcome to Divya Yoga','','inherit','closed','closed','','1-revision-7','','','2013-07-28 14:05:47','2013-07-28 18:05:47','',1,'http://divyayogamonteregie.org/web/?p=373',0,'revision','',0),(374,1,'2013-07-28 14:03:51','2013-07-28 18:03:51','<p style=\"text-align: justify;\">To make basic yoga practice easily accessible to everyone without charge.</p>\r\n<p style=\"text-align: justify;\">Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p>\r\n<p style=\"text-align: justify;\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p>\r\n<p style=\"text-align: justify;\">After yoga super food i. e. grapes and banana are available for Yogies.</p>\r\n<p style=\"text-align: justify;\">Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>','Our mission','','inherit','closed','closed','','2-revision-v1','','','2013-07-28 14:03:51','2013-07-28 18:03:51','',2,'http://divyayogamonteregie.org/web/?p=374',0,'revision','',0),(375,1,'2013-07-28 14:07:07','2013-07-28 18:07:07','<p style=\"text-align: justify;\">To make basic yoga practice easily accessible to everyone without charge.</p>\r\n<p style=\"text-align: justify;\">Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</p>\r\n<p style=\"text-align: justify;\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</p>\r\n<p style=\"text-align: justify;\">After yoga super food i. e. grapes and banana are available for Yogies.</p>\r\n<p style=\"text-align: justify;\">Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</p>','Our mission','','inherit','closed','closed','','2-revision-v1','','','2013-07-28 14:07:07','2013-07-28 18:07:07','',2,'http://divyayogamonteregie.org/web/?p=375',0,'revision','',0),(183,1,'2013-06-10 21:34:11','2013-06-11 01:34:11','<p style=\"text-align: justify;\">On a beautiful morning, an older gentleman, aged 75, was sitting with his son when he asked his son what was sitting in the window. He himself was not able to recognize what it was, due to his weak eyesight.</p>\r\n<p style=\"text-align: justify;\">His son replied, \"That is the crow.\"</p>\r\n<p style=\"text-align: justify;\">Due to his age, the older man forgot and asked again.</p>\r\n<p style=\"text-align: justify;\">His son again replied the same thing, \"That is the crow.\"</p>\r\n<p style=\"text-align: justify;\">This exchange continued for seven to eight times when, and at last, his son got annoyed and replied with anger, \"Why are you asking the same thing again and again?\"</p>\r\n<p style=\"text-align: justify;\">The old man replied with tears in his eyes. \"Son, don\'t get angry. When you were at the age of 4 years you asked me the same question 40 times and I never got angry</p>','Sometimes We Forget... Remember To Be Kind','','publish','closed','closed','','sometimes-we-forget-remember-to-be-kind','','','2013-07-09 20:49:32','2013-07-10 00:49:32','',79,'http://divyayogamonteregie.org/web/?page_id=183',0,'page','',0),(184,1,'2013-06-10 21:33:36','2013-06-11 01:33:36','<b>Sometimes We Forget... Remember To Be Kind</b>\n\nOn a beautiful morning, an older gentleman, aged 75, was sitting with his son when he asked his son what was sitting in the window. He himself was not able to recognize what it was, due to his weak eyesight.\n\nHis son replied, \"That is the crow.\"\n\nDue to his age, the older man forgot and asked again.\n\nHis son again replied the same thing, \"That is the crow.\"\n\nThis exchange continued for seven to eight times when, and at last, his son got annoyed and replied with anger, \"Why are you asking the same thing again and again?\"\n\nThe old man replied with tears in his eyes. \"Son, don\'t get angry. When you were at the age of 4 years you asked me the same question 40 times and I never got angry','','','inherit','closed','closed','','183-revision','','','2013-06-10 21:33:36','2013-06-11 01:33:36','',183,'http://divyayogamonteregie.org/web/?p=184',0,'revision','',0),(185,1,'2013-06-10 21:35:47','2013-06-11 01:35:47','<p style=\"text-align: justify;\">Three farmers gathered to evaluate and share their experiences from the year passed. Each had a hundred square meter of land on which they farmed. At the end of the meeting, the first farmer said, \"The situation was very hard and it will be much worse for next year.\"</p>\r\n<p style=\"text-align: justify;\">The second replied, \"You are certainly right. As a matter of fact, after working very hard the whole year, from sunrise to sunset, I only gained 1% profit after all expenses.\"</p>\r\n<p style=\"text-align: justify;\">Calculating his own numbers, the first farmer replied, \"I believe that my total profit is exactly the same as yours, which is 1%.\"</p>\r\n<p style=\"text-align: justify;\">The two of them looked at the third farmer and asked, \"How much profit did you make during this year?\"</p>\r\n<p style=\"text-align: justify;\">The third farmer kindly replied, \"Gentleman, with all due respect, I obtained a 5% profit during this year.\"</p>\r\n<p style=\"text-align: justify;\">That was followed by a long silence...</p>\r\n<p style=\"text-align: justify;\">\"How come? 5% profit?? That is impossible!!!! How did you do that???\"</p>\r\n<p style=\"text-align: justify;\">\"Very easy and simple math,\" said the third farmer. \"I made the very same 1% profit as you did. ... plus 4% that represents the immense pleasure to be able to enjoy this view, milk my cows and enjoy the most of my farm. That gives me 5% total profit.\"</p>\r\n<p style=\"text-align: justify;\"><b>Moral Of the Story:</b> All of us have to take care of our farm (that is our hundred square meter land) and get the maximum profit while enjoying every instant of our lives and work!!!</p>','Beginning A New Year','','publish','closed','closed','','beginning-a-new-year','','','2013-07-09 20:35:55','2013-07-10 00:35:55','',79,'http://divyayogamonteregie.org/web/?page_id=185',0,'page','',0),(186,1,'2013-06-10 21:35:22','2013-06-11 01:35:22','Three farmers gathered to evaluate and share their experiences from 2008. Each had a square meter of land on which they farmed. At the end of the meeting, the first farmer said, \"The situation was very hard and it will be much worse for 2009.\"\n\nThe second replied, \"You are certainly right. As a matter of fact, after working very hard the whole year, from sunrise to sunset, I only gained 1% profit after all expenses.\"\n\nCalculating his own numbers, the first farmer replied, \"I believe that my total profit is exactly the same as yours, which is 1%.\"\n\nThe two of them looked at the third farmer and asked, \"How much profit did you make during 2008?\"\n\nThe third farmer kindly replied, \"Gentleman, with all due respect, I obtained a 5% profit during 2008.\"\n\nThat was followed by a long silence...\n\n\"How come? 5% profit?? That is impossible!!!! How did you do that???\"\n\n\"Very easy and simple math,\" said the third farmer. \"I made the very same 1% profit as you did. ... plus 4% that represents the immense pleasure to be able to enjoy this view, milk my cows and enjoy the most of my farm. That gives me 5% total profit.\"\n\n<b>Moral Of the Story:</b> All of us have to take care of our farm (that is our square meter in this 2009) and get the maximum profit while enjoying every instant of our lives and work!!!','Beginning A New Year','','inherit','closed','closed','','185-revision','','','2013-06-10 21:35:22','2013-06-11 01:35:22','',185,'http://divyayogamonteregie.org/web/?p=186',0,'revision','',0),(187,1,'2013-06-10 21:38:21','2013-06-11 01:38:21','Once upon a time there was a rich king who had four wives. He loved the fourth wife the most and adorned her with rich robes and treated her to the finest delicacies. He gave her nothing but the best.\r\n\r\nHe also loved the third wife very much and showed her off to neighboring kingdoms. However, he feared that one day she would leave him for another.\r\n\r\nHe also loved his second wife. She was his confidante and she was always kind, considerate and patient with him. Whenever the king faced a problem, he could confide in her to help him get through the difficult times.\r\n\r\nThe king\'s first wife was a very loyal partner and had made great contributions in maintaining his wealth and kingdom. However, he did not love the first wife but although she loved him deeply, he hardly took notice of her.\r\n\r\nOne day, the King fell ill and he knew that his time was short. Thus, he asked the 4th wife, \"I have loved you the most endowed you with the finest clothing and showered great care over you. Now that I\'m dying, will you follow me and keep me company?\"\r\n\r\n\"No way!\" replied the 4th wife and she walked away without another word.\r\n\r\nHer answer cut like a sharp knife right into his heart.\r\n\r\n&nbsp;\r\n\r\nThe sad king asked the third wife, \"I have loved you all my life. Now that I\'m dying, will you follow me and keep me company?\"\r\n\r\n\"No!\" replied the 3rd wife. \"Life is too good! When you die, I am going to remarry!\"\r\n\r\nHis heart sank and turned cold.\r\n\r\nHe then asked the 2nd wife, \"I have always turned to you for help and you\'ve always been there for me. When I die, will you follow me and keep me company?\"\r\n\r\n\"I\'m sorry, I can\'t help you out of this time!\" replied the 2nd wife. \"The very most, I can only send you to your grave.\"\r\n\r\nHer answer came like a bolt of thunder and the King was devastated.\r\n\r\nThen a voice called out: \"I\'ll leave with you and follow you no matter where you go.\"\r\n\r\nThe king looked up and there was his first wife. She was so skinny, because she suffered from malnutrition. Greatly grieved the King said, \"I should have taken better care of you when I had a chance!\"\r\n\r\nOur 4th wife is our BODY. No matter how much time and effort we lavish in making it look great, it\'ll leave us when we die.\r\n\r\nOur 3rd wife is our POSSESSIONS, STATUS and WEALTH. When we die, it will all go to others.\r\n\r\nOur 2nd wife is our FAMILY and friends. No matter how much they have been there for us, the furthest they can stay by us is up to the grave.\r\n\r\nOur 1st wife is our SOUL, often neglected in pursuit of wealth, power and pleasures of the ego. However, our Soul is the only thing that will follow us wherever we go. So cultivate, strengthen and cherish it now! It is your greatest gift to offer the world.','The king with four wives','','publish','closed','closed','','the-king-with-four-wives','','','2013-07-09 20:59:36','2013-07-10 00:59:36','',79,'http://divyayogamonteregie.org/web/?page_id=187',0,'page','',0),(188,1,'2013-06-10 21:37:52','2013-06-11 01:37:52','<b>The King With Four Wives </b>\n\nOnce upon a time there was a rich king who had four wives. He loved the fourth wife the most and adorned her with rich robes and treated her to the finest delicacies. He gave her nothing but the best.\n\nHe also loved the third wife very much and showed her off to neighboring kingdoms. However, he feared that one day she would leave him for another.\n\nHe also loved his second wife. She was his confidante and she was always kind, considerate and patient with him. Whenever the king faced a problem, he could confide in her to help him get through the difficult times.\n\nThe king\'s first wife was a very loyal partner and had made great contributions in maintaining his wealth and kingdom. However, he did not love the first wife but although she loved him deeply, he hardly took notice of her.\n\nOne day, the King fell ill and he knew that his time was short. Thus, he asked the 4th wife, \"I have loved you the most endowed you with the finest clothing and showered great care over you. Now that I\'m dying, will you follow me and keep me company?\"\n\n\"No way!\" replied the 4th wife and she walked away without another word.\n\nHer answer cut like a sharp knife right into his heart.\n\n&nbsp;\n\nThe sad king asked the third wife, \"I have loved you all my life. Now that I\'m dying, will you follow me and keep me company?\"\n\n\"No!\" replied the 3rd wife. \"Life is too good! When you die, I am going to remarry!\"\n\nHis heart sank and turned cold.\n\nHe then asked the 2nd wife, \"I have always turned to you for help and you\'ve always been there for me. When I die, will you follow me and keep me company?\"\n\n\"I\'m sorry, I can\'t help you out of this time!\" replied the 2nd wife. \"The very most, I can only send you to your grave.\"\n\nHer answer came like a bolt of thunder and the King was devastated.\n\nThen a voice called out: \"I\'ll leave with you and follow you no matter where you go.\"\n\nThe king looked up and there was his first wife. She was so skinny, because she suffered from malnutrition. Greatly grieved the King said, \"I should have taken better care of you when I had a chance!\"\n\nOur 4th wife is our BODY. No matter how much time and effort we lavish in making it look great, it\'ll leave us when we die.\n\nOur 3rd wife is our POSSESSIONS, STATUS and WEALTH. When we die, it will all go to others.\n\nOur 2nd wife is our FAMILY and friends. No matter how much they have been there for us, the furthest they can stay by us is up to the grave.\n\nOur 1st wife is our SOUL, often neglected in pursuit of wealth, power and pleasures of the ego. However, our Soul is the only thing that will follow us wherever we go. So cultivate, strengthen and cherish it now! It is your greatest gift to offer the world.\n\n<b>The Rabbit and The Turtle Race </b>\n\nRemember the famous Rabbit-Turtle race (Tortoise and the Hare)? We all know that at the end of the story the Rabbit was not able to win the race against the Turtle.\n\nWell, this is actually not the end of the story. After a disgraceful loss to the Turtle, the Rabbit decided to have a race again. This time, he decided, he would not take a nap.\n\nThe race started &amp; soon the Rabbit was far away from the sight of the Turtle &amp; all the spectators. This time he didn\'t stop &amp; defeated the Turtle by a big margin.\n\nThe Turtle lost the race this time; however, he didn\'t give up. He challenged the Rabbit again on a different racetrack. The Rabbit, full of confidence, accepted it. He knew the reason he lost earlier: his laziness during the first race. He was able to win the second race because he was able to work on it.\n\nThe Third Race started. The Rabbit, like always, soon disappeared. Everyone was laughing at the Turtle but the Rabbit didn\'t want to stop to see why &amp; kept on running as fast as he could. He wanted to defeat the Turtle by a much bigger margin than the earlier race. Suddenly, he came to a river. He was not able to make out how to cross it &amp; was forced to stop.\n\nAfter some time the Turtle reached the river &amp; very confidently stepped into it. He swam much faster than he could ever run. Within no time he crossed the river &amp; moved towards the finishing point while the Rabbit helplessly looked on as the Turtle won the race.\n\nThe story does not end here.\n\nAfter the first race, the Rabbit learned that he lost it because of his laziness.\n\nAfter second race, the Turtle learned that he lost the race because his opponent was actually good at running.\n\nAfter the third race, the Rabbit learned that being faster is not enough; one should have brains as well to complete the task.\n\nThe Rabbit &amp; the Turtle decided to run again. This time it was just running &amp; not a race.\n\nWhile running, until they reached the river, the Rabbit put the Turtle on his back. Once they needed to cross the river, the Turtle put the Rabbit on his back. After crossing the river, the Rabbit again put the Turtle on his back &amp; both of them reached the finishing point in less time than ever.\n\n<b>What did they learn?</b>\n\nThey both learned that with teamwork they can finish the same task quicker &amp; both of them can enjoy the reward. During the time they were competing against one another, just one of them was able to win after wasting a lot of time &amp; energy.\n\n--- <b>Written in 2008 by Sanjeev Kumar Singh --- India</b>','The king with four wives','','inherit','closed','closed','','187-revision','','','2013-06-10 21:37:52','2013-06-11 01:37:52','',187,'http://divyayogamonteregie.org/web/?p=188',0,'revision','',0),(346,1,'2013-07-09 21:01:39','2013-07-10 01:01:39','&nbsp;\r\n<p style=\"text-align: justify;\">Remember the famous Rabbit-Turtle race (Tortoise and the Hare)? We all know that at the end of the story the Rabbit was not able to win the race against the Turtle.</p>\r\n<p style=\"text-align: justify;\">Well, this is actually not the end of the story. After a disgraceful loss to the Turtle, the Rabbit decided to have a race again. This time, he decided, he would not take a nap.</p>\r\n<p style=\"text-align: justify;\">The race started &amp; soon the Rabbit was far away from the sight of the Turtle &amp; all the spectators. This time he didn\'t stop &amp; defeated the Turtle by a big margin.</p>\r\n<p style=\"text-align: justify;\">The Turtle lost the race this time; however, he didn\'t give up. He challenged the Rabbit again on a different racetrack. The Rabbit, full of confidence, accepted it. He knew the reason he lost earlier: his laziness during the first race. He was able to win the second race because he was able to work on it.</p>\r\n<p style=\"text-align: justify;\">The Third Race started. The Rabbit, like always, soon disappeared. Everyone was laughing at the Turtle but the Rabbit didn\'t want to stop to see why &amp; kept on running as fast as he could. He wanted to defeat the Turtle by a much bigger margin than the earlier race. Suddenly, he came to a river. He was not able to make out how to cross it &amp; was forced to stop.</p>\r\n<p style=\"text-align: justify;\">After some time the Turtle reached the river &amp; very confidently stepped into it. He swam much faster than he could ever run. Within no time he crossed the river &amp; moved towards the finishing point while the Rabbit helplessly looked on as the Turtle won the race.</p>\r\n<p style=\"text-align: justify;\">The story does not end here.</p>\r\n<p style=\"text-align: justify;\">After the first race, the Rabbit learned that he lost it because of his laziness.</p>\r\n<p style=\"text-align: justify;\">After second race, the Turtle learned that he lost the race because his opponent was actually good at running.</p>\r\n<p style=\"text-align: justify;\">After the third race, the Rabbit learned that being faster is not enough; one should have brains as well to complete the task.</p>\r\n<p style=\"text-align: justify;\">The Rabbit &amp; the Turtle decided to run again. This time it was just running &amp; not a race.</p>\r\n<p style=\"text-align: justify;\">While running, until they reached the river, the Rabbit put the Turtle on his back. Once they needed to cross the river, the Turtle put the Rabbit on his back. After crossing the river, the Rabbit again put the Turtle on his back &amp; both of them reached the finishing point in less time than ever.</p>\r\n<p style=\"text-align: justify;\"><b>What did they learn?</b></p>\r\n<p style=\"text-align: justify;\">They both learned that with teamwork they can finish the same task quicker &amp; both of them can enjoy the reward. During the time they were competing against one another, just one of them was able to win after wasting a lot of time &amp; energy.</p>','The Rabbit and The Turtle Race ','','publish','closed','closed','','the-rabbit-and-the-turtle-race','','','2013-07-09 21:01:39','2013-07-10 01:01:39','',79,'http://divyayogamonteregie.org/web/?page_id=346',0,'page','',0),(189,1,'2013-07-09 20:59:32','2013-07-10 00:59:32','Once upon a time there was a rich king who had four wives. He loved the fourth wife the most and adorned her with rich robes and treated her to the finest delicacies. He gave her nothing but the best.\n\nHe also loved the third wife very much and showed her off to neighboring kingdoms. However, he feared that one day she would leave him for another.\n\nHe also loved his second wife. She was his confidante and she was always kind, considerate and patient with him. Whenever the king faced a problem, he could confide in her to help him get through the difficult times.\n\nThe king\'s first wife was a very loyal partner and had made great contributions in maintaining his wealth and kingdom. However, he did not love the first wife but although she loved him deeply, he hardly took notice of her.\n\nOne day, the King fell ill and he knew that his time was short. Thus, he asked the 4th wife, \"I have loved you the most endowed you with the finest clothing and showered great care over you. Now that I\'m dying, will you follow me and keep me company?\"\n\n\"No way!\" replied the 4th wife and she walked away without another word.\n\nHer answer cut like a sharp knife right into his heart.\n\n&nbsp;\n\nThe sad king asked the third wife, \"I have loved you all my life. Now that I\'m dying, will you follow me and keep me company?\"\n\n\"No!\" replied the 3rd wife. \"Life is too good! When you die, I am going to remarry!\"\n\nHis heart sank and turned cold.\n\nHe then asked the 2nd wife, \"I have always turned to you for help and you\'ve always been there for me. When I die, will you follow me and keep me company?\"\n\n\"I\'m sorry, I can\'t help you out of this time!\" replied the 2nd wife. \"The very most, I can only send you to your grave.\"\n\nHer answer came like a bolt of thunder and the King was devastated.\n\nThen a voice called out: \"I\'ll leave with you and follow you no matter where you go.\"\n\nThe king looked up and there was his first wife. She was so skinny, because she suffered from malnutrition. Greatly grieved the King said, \"I should have taken better care of you when I had a chance!\"\n\nOur 4th wife is our BODY. No matter how much time and effort we lavish in making it look great, it\'ll leave us when we die.\n\nOur 3rd wife is our POSSESSIONS, STATUS and WEALTH. When we die, it will all go to others.\n\nOur 2nd wife is our FAMILY and friends. No matter how much they have been there for us, the furthest they can stay by us is up to the grave.\n\nOur 1st wife is our SOUL, often neglected in pursuit of wealth, power and pleasures of the ego. However, our Soul is the only thing that will follow us wherever we go. So cultivate, strengthen and cherish it now! It is your greatest gift to offer the world.','The king with four wives','','inherit','closed','closed','','187-autosave','','','2013-07-09 20:59:32','2013-07-10 00:59:32','',187,'http://divyayogamonteregie.org/web/?p=189',0,'revision','',0),(345,1,'2013-06-10 21:38:21','2013-06-11 01:38:21','Once upon a time there was a rich king who had four wives. He loved the fourth wife the most and adorned her with rich robes and treated her to the finest delicacies. He gave her nothing but the best.\r\n\r\nHe also loved the third wife very much and showed her off to neighboring kingdoms. However, he feared that one day she would leave him for another.\r\n\r\nHe also loved his second wife. She was his confidante and she was always kind, considerate and patient with him. Whenever the king faced a problem, he could confide in her to help him get through the difficult times.\r\n\r\nThe king\'s first wife was a very loyal partner and had made great contributions in maintaining his wealth and kingdom. However, he did not love the first wife but although she loved him deeply, he hardly took notice of her.\r\n\r\nOne day, the King fell ill and he knew that his time was short. Thus, he asked the 4th wife, \"I have loved you the most endowed you with the finest clothing and showered great care over you. Now that I\'m dying, will you follow me and keep me company?\"\r\n\r\n\"No way!\" replied the 4th wife and she walked away without another word.\r\n\r\nHer answer cut like a sharp knife right into his heart.\r\n\r\n&nbsp;\r\n\r\nThe sad king asked the third wife, \"I have loved you all my life. Now that I\'m dying, will you follow me and keep me company?\"\r\n\r\n\"No!\" replied the 3rd wife. \"Life is too good! When you die, I am going to remarry!\"\r\n\r\nHis heart sank and turned cold.\r\n\r\nHe then asked the 2nd wife, \"I have always turned to you for help and you\'ve always been there for me. When I die, will you follow me and keep me company?\"\r\n\r\n\"I\'m sorry, I can\'t help you out of this time!\" replied the 2nd wife. \"The very most, I can only send you to your grave.\"\r\n\r\nHer answer came like a bolt of thunder and the King was devastated.\r\n\r\nThen a voice called out: \"I\'ll leave with you and follow you no matter where you go.\"\r\n\r\nThe king looked up and there was his first wife. She was so skinny, because she suffered from malnutrition. Greatly grieved the King said, \"I should have taken better care of you when I had a chance!\"\r\n\r\nOur 4th wife is our BODY. No matter how much time and effort we lavish in making it look great, it\'ll leave us when we die.\r\n\r\nOur 3rd wife is our POSSESSIONS, STATUS and WEALTH. When we die, it will all go to others.\r\n\r\nOur 2nd wife is our FAMILY and friends. No matter how much they have been there for us, the furthest they can stay by us is up to the grave.\r\n\r\nOur 1st wife is our SOUL, often neglected in pursuit of wealth, power and pleasures of the ego. However, our Soul is the only thing that will follow us wherever we go. So cultivate, strengthen and cherish it now! It is your greatest gift to offer the world.\r\n\r\n<b>The Rabbit and The Turtle Race </b>\r\n\r\nRemember the famous Rabbit-Turtle race (Tortoise and the Hare)? We all know that at the end of the story the Rabbit was not able to win the race against the Turtle.\r\n\r\nWell, this is actually not the end of the story. After a disgraceful loss to the Turtle, the Rabbit decided to have a race again. This time, he decided, he would not take a nap.\r\n\r\nThe race started &amp; soon the Rabbit was far away from the sight of the Turtle &amp; all the spectators. This time he didn\'t stop &amp; defeated the Turtle by a big margin.\r\n\r\nThe Turtle lost the race this time; however, he didn\'t give up. He challenged the Rabbit again on a different racetrack. The Rabbit, full of confidence, accepted it. He knew the reason he lost earlier: his laziness during the first race. He was able to win the second race because he was able to work on it.\r\n\r\nThe Third Race started. The Rabbit, like always, soon disappeared. Everyone was laughing at the Turtle but the Rabbit didn\'t want to stop to see why &amp; kept on running as fast as he could. He wanted to defeat the Turtle by a much bigger margin than the earlier race. Suddenly, he came to a river. He was not able to make out how to cross it &amp; was forced to stop.\r\n\r\nAfter some time the Turtle reached the river &amp; very confidently stepped into it. He swam much faster than he could ever run. Within no time he crossed the river &amp; moved towards the finishing point while the Rabbit helplessly looked on as the Turtle won the race.\r\n\r\nThe story does not end here.\r\n\r\nAfter the first race, the Rabbit learned that he lost it because of his laziness.\r\n\r\nAfter second race, the Turtle learned that he lost the race because his opponent was actually good at running.\r\n\r\nAfter the third race, the Rabbit learned that being faster is not enough; one should have brains as well to complete the task.\r\n\r\nThe Rabbit &amp; the Turtle decided to run again. This time it was just running &amp; not a race.\r\n\r\nWhile running, until they reached the river, the Rabbit put the Turtle on his back. Once they needed to cross the river, the Turtle put the Rabbit on his back. After crossing the river, the Rabbit again put the Turtle on his back &amp; both of them reached the finishing point in less time than ever.\r\n\r\n<b>What did they learn?</b>\r\n\r\nThey both learned that with teamwork they can finish the same task quicker &amp; both of them can enjoy the reward. During the time they were competing against one another, just one of them was able to win after wasting a lot of time &amp; energy.\r\n\r\n--- <b>Written in 2008 by Sanjeev Kumar Singh --- India</b>','The king with four wives','','inherit','closed','closed','','187-revision-2','','','2013-06-10 21:38:21','2013-06-11 01:38:21','',187,'http://divyayogamonteregie.org/web/?p=345',0,'revision','',0),(190,1,'2013-06-10 21:45:08','2013-06-11 01:45:08','<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image0021.jpg\"><img class=\"aligncenter  wp-image-218\" alt=\"image002\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image0021-300x141.jpg\" width=\"450\" height=\"211\" /></a></p>\r\n<p style=\"text-align: justify;\"><b>Vegetarian Food- Served and shared on last Saturday of the month</b></p>\r\n<p style=\"text-align: justify;\">The vegetarian main dishes are made by Meera Trivedi bt the  members of our yoga community also bring food items/fruits etc for sharing.</p>\r\n<p style=\"text-align: justify;\">The Top kind of food is raw food. Early man used to eat fruits and nuts and survived for a long time</p>\r\n<p style=\"text-align: justify;\">Then he invented fire and started cooking. Which gave him a different taste of the same food and he liked and ate. The cooked food value has less food value than the raw one because some of the nutritional value is lost in cooking.</p>\r\n<p style=\"text-align: justify;\">The third kind of food is preserved food, in which companies add preservatives to keep its color as it is. Food need to be digested in our body not to be preserved. Even if we rinse the food its preservative are not 100% washed away. They are harmful for our system. That is why it is best to eat fresh food then to eat cooked food and avoid preserved foods which are sold for convenience.</p>\r\n<p style=\"text-align: justify;\">It is good to spend time in kitchen and cook good healthy food for the family. Food should have lots of aroma. Because aroma refreshes the mind.  The aromatic herbs should be added in the food after the food is cooked for it’s full effect. We should eat least amount of salt and minimize/cut off the intake of processed sugar. Instead we should eat different types of fruits each day.</p>','Some vegetarian recipes','','publish','closed','closed','','some-vegetarian-recipes','','','2013-07-09 20:12:50','2013-07-10 00:12:50','',0,'http://divyayogamonteregie.org/web/?page_id=190',0,'page','',0),(191,1,'2013-06-10 21:44:24','2013-06-11 01:44:24','<b>Vegetarian Food- Served and shared on last Saturday of the month</b>\n\nThe vegetarian main dishes are made by Meera Trivedi. The  members of our yoga community also bring food items/fruits etc for sharing.\n\nThe Top kind of food is raw food. Early man used to eat fruits and nuts and survived for a long time\n\nThen he invented fire and started cooking. Which gave him a different taste of the same food and he liked and ate. The cooked food value has less food value than the raw one because some of the nutritional value is lost in cooking.\n\nThe third kind of food is preserved food, in which companies add preservatives to keep its color as it is. Food need to be digested in our body not to be preserved. Even if we rinse the food its preservative are not 100% washed away. They are harmful for our system. That is why it is best to eat fresh food then to eat cooked food and avoid preserved foods which are sold for convenience.\n\nIt is good to spend time in kitchen and cook good healthy food for the family. Food should have lots of aroma. Because aroma refreshes the mind.  The aromatic herbs should be added in the food after the food is cooked for it’s full effect. We should eat least amount of salt and minimize/cut off the intake of processed sugar. Instead we should eat different types of fruits each day.','Some vegetarianrecipes','','inherit','closed','closed','','190-revision-v1','','','2013-06-10 21:44:24','2013-06-11 01:44:24','',190,'http://divyayogamonteregie.org/web/?p=191',0,'revision','',0),(192,1,'2013-06-10 21:52:51','2013-06-11 01:52:51','<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image004.jpg\"><img class=\"aligncenter  wp-image-166\" alt=\"image004\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image004-300x168.jpg\" width=\"600\" height=\"836\" /></a></p>\r\n<strong>Ingredients:</strong>\r\n\r\n1/2 Kilo Boiled peeled and cut into 8 pieces Potato\r\n\r\n1 to 1/2 Tea spoon salt.\r\n\r\n1 tea spoon turmeric\r\n\r\n1 Tea spoon to 4 table spoon vegetable. Oil\r\n\r\n1 1/2 teaspoon cumin seed\r\n\r\nCrushed hot pepper 1 1/2 tea spoon or less\r\n\r\nAsafetida compound powder  is equal to 1 Chick pea\'s size\r\n\r\nMango Powder 2 tea spoon\r\n\r\n&nbsp;\r\n\r\nVery fine cut coriander leaves  20 grams coriander to garnish.\r\n\r\nOr\r\n\r\nFine cut dill leaves.\r\n\r\n&nbsp;\r\n\r\nPut a pan on the stove. Add oil according to your food habit (1 tea spoon or 4 table spoon) add cumin seeds in hot oil. Let it turn brown add asafetida and add turmeric and jt let is turn its color a bit. Then  put all the potato in that. Add salt, red hot crushed pepper and fine cut coriander and mix with light hand till everything is uniformly colored.\r\n\r\nYour salad is ready to serve.','Spicy potato salad or Aloo bhujiya ','','publish','closed','closed','','spicy-potato-salad-or-aloo-bhujiya','','','2013-06-15 22:19:29','2013-06-16 02:19:29','',190,'http://divyayogamonteregie.org/web/?page_id=192',0,'page','',0),(193,1,'2013-06-10 21:52:20','2013-06-11 01:52:20','<strong>Spicy Potato salad or Aloo Bhujiya</strong>\n\n<strong>Ingredients:</strong>\n\n1/2 Kilo Boiled peeled and cut into 8 pieces Potato\n\n1 to 1/2 Tea spoon salt.\n\n1 tea spoon turmeric\n\n1 Tea spoon to 4 table spoon vegetable. Oil\n\n1 1/2 teaspoon cumin seed\n\nCrushed hot pepper 1 1/2 tea spoon or less\n\nAsafetida compound powder  is equal to 1 Chick pea\'s size\n\nMango Powder 2 tea spoon\n\n&nbsp;\n\nVery fine ct coriander leaves  20 grams coriander to g arnish.\n\nOr\n\nFine cut dill leaves.\n\n&nbsp;\n\nPut a pan on the stove. Add oil according to your food habit (1 tea spoon or 4 table spoon) add cumin seeds in hot oil. Let it turn brown add asafetida and add turmeric and jt let is turn its color a bit. Then  put all the potato in that. Add salt, red hot crushed pepper and fine cut coriander and mix with light hand till everything is uniformly colored.\n\nYour salad is ready to serve.','Spicy potato salad or Al','','inherit','closed','closed','','192-revision','','','2013-06-10 21:52:20','2013-06-11 01:52:20','',192,'http://divyayogamonteregie.org/web/?p=193',0,'revision','',0),(194,1,'2013-06-10 21:56:22','2013-06-11 01:56:22','&nbsp;\r\n<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image006.jpg\"><img class=\"aligncenter  wp-image-167\" alt=\"image006\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image006-300x168.jpg\" width=\"600\" height=\"242\" /></a></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nProtein is best in raw form So sprouted salad is the best salad.\r\n\r\n50 Grams of whole yellow lentil\r\n\r\n50 Grams of whole red lentil\r\n\r\n50 Grams of whole green lentil\r\n\r\n50 Grams of red kidney beans\r\n\r\n50 Grams of Chick peas\r\n\r\n50 grams of Bengal gram\r\n\r\n50 grams of Almond\r\n\r\n50 grams of black beans\r\n\r\n200 grams of raisins\r\n\r\nCoriander leaves ¼ of the bunch.\r\n\r\nadd as many grains you like. Measure the total with a measuring cup and estimate the amount. Because it swells up 3 times after sprouting.. So reduce or add the amount you will need at the end.\r\n\r\nAll the grains except raisins in 1.1/2 times of grains volume in water. Change the water after 12 hours.   After24 hours  put them in a wet towel and cover them from all around in a manner so that there is little bit of pressure on them too . put this whole thing is a pot.\r\n\r\nIf possible keep the pot at a dark place as seeds germinate in dark under the soil so just don’t put them at a well lighted area. Keep them rinsing after 12 hours.  In this way you are providing them fresh water and cleaning if any mucilaginous growth is starting. For good sprouting it is necessary. But if you forget for 36 hours too it is ok.\r\n\r\nAccording to season and temperature of your home. It will be well  sprouted within 4 to 7 days.  Depends on how long sprout do you want. In summer if you soak in water on Wednesday you will get good sprouted grains on Saturday morning. But in winter if you do on Monday Morning you will get on Saturday Morning.\r\n\r\nWhen it is sprouted the way you want rinse the raisins and mix them with the sprouted grains. And add the coriander levees after cutting very fine. You can add a few drops of fresh lemon juice too.\r\n\r\nFor fast sprouting in winter you can put your pot above the fridge.\r\n\r\nAnother way of eating the sprouted grains is cut one onion very fine  and mix them. Add a little bit of salt and few drops of fresh lemon juice. You can add coriander leaves but not resins.','Sprouted multi grain Salad','','publish','closed','closed','','sprouted-multi-grain-salad','','','2013-06-15 22:11:01','2013-06-16 02:11:01','',190,'http://divyayogamonteregie.org/web/?page_id=194',0,'page','',0),(195,1,'2013-06-10 21:56:10','2013-06-11 01:56:10','Protein is best in raw form So sprouted salad is the best salad.\n\n50 Grams of whole yellow lentil\n\n50 Grams of whole red lentil\n\n50 Grams of whole green lentil\n\n50 Grams of red kidney beans\n\n50 Grams of Chick peas\n\n50 grams of Bengal gram\n\n50 grams of Almond\n\n50 grams of black beans\n\n200 grams of raisins\n\nCoriander leaves ¼ of the bunch.\n\nadd as many grains you like. Measure the total with a measuring cup and estimate the amount. Because it swells up 3 times after sprouting.. So reduce or add the amount you will need at the end.\n\nAll the grains except raisins in 1.1/2 times of grains volume in water. Change the water after 12 hours.   After24 hours  put them in a wet towel and cover them from all around in a manner so that there is little bit of pressure on them too . put this whole thing is a pot.\n\nIf possible keep the pot at a dark place as seeds germinate in dark under the soil so just don’t put them at a well lighted area. Keep them rinsing after 12 hours.  In this way you are providing them fresh water and cleaning if any mucilaginous growth is starting. For good sprouting it is necessary. But if you forget for 36 hours too it is ok.\n\nAccording to season and temperature of your home. It will be well  sprouted within 4 to 7 days.  Depends on how long sprout do you want. In summer if you soak in water on Wednesday you will get good sprouted grains on Saturday morning. But in winter if you do on Monday Morning you will get on Saturday Morning.\n\nWhen it is sprouted the way you want rinse the raisins and mix them with the sprouted grains. And add the coriander levees after cutting very fine. You can add a few drops of fresh lemon juice too.\n\nFor fast sprouting in winter you can put your pot above the fridge.\n\nAnother way of eating the sprouted grains is cut one onion very fine  and mix them. Add a little bit of salt and few drops of fresh lemon juice. You can add coriander leaves but not resins.','Sprouted multi grain Salad','','inherit','closed','closed','','194-revision','','','2013-06-10 21:56:10','2013-06-11 01:56:10','',194,'http://divyayogamonteregie.org/web/?p=195',0,'revision','',0),(197,1,'2013-06-15 22:19:05','2013-06-16 02:19:05','<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image004.jpg\"><img class=\"aligncenter  wp-image-166\" alt=\"image004\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image004-300x168.jpg\" width=\"600\" height=\"836\" /></a></p>\n<strong>Ingredients:</strong>\n\n1/2 Kilo Boiled peeled and cut into 8 pieces Potato\n\n1 to 1/2 Tea spoon salt.\n\n1 tea spoon turmeric\n\n1 Tea spoon to 4 table spoon vegetable. Oil\n\n1 1/2 teaspoon cumin seed\n\nCrushed hot pepper 1 1/2 tea spoon or less\n\nAsafetida compound powder  is equal to 1 Chick pea\'s size\n\nMango Powder 2 tea spoon\n\n&nbsp;\n\nVery fine cut coriander leaves  20 grams coriander to garnish.\n\nOr\n\nFine cut dill leaves.\n\n&nbsp;\n\nPut a pan on the stove. Add oil according to your food habit (1 tea spoon or 4 table spoon) add cumin seeds in hot oil. Let it turn brown add asafetida and add turmeric and jt let is turn its color a bit. Then  put all the potato in that. Add salt, red hot crushed pepper and fine cut coriander and mix with light hand till everything is uniformly colored.\n\nYour salad is ready to serve.','Spicy potato salad or Aloo bhujiya ','','inherit','closed','closed','','192-autosave','','','2013-06-15 22:19:05','2013-06-16 02:19:05','',192,'http://divyayogamonteregie.org/web/?p=197',0,'revision','',0),(198,1,'2013-06-10 21:52:51','2013-06-11 01:52:51','<strong>Ingredients:</strong>\r\n\r\n1/2 Kilo Boiled peeled and cut into 8 pieces Potato\r\n\r\n1 to 1/2 Tea spoon salt.\r\n\r\n1 tea spoon turmeric\r\n\r\n1 Tea spoon to 4 table spoon vegetable. Oil\r\n\r\n1 1/2 teaspoon cumin seed\r\n\r\nCrushed hot pepper 1 1/2 tea spoon or less\r\n\r\nAsafetida compound powder  is equal to 1 Chick pea\'s size\r\n\r\nMango Powder 2 tea spoon\r\n\r\n&nbsp;\r\n\r\nVery fine ct coriander leaves  20 grams coriander to g arnish.\r\n\r\nOr\r\n\r\nFine cut dill leaves.\r\n\r\n&nbsp;\r\n\r\nPut a pan on the stove. Add oil according to your food habit (1 tea spoon or 4 table spoon) add cumin seeds in hot oil. Let it turn brown add asafetida and add turmeric and jt let is turn its color a bit. Then  put all the potato in that. Add salt, red hot crushed pepper and fine cut coriander and mix with light hand till everything is uniformly colored.\r\n\r\nYour salad is ready to serve.','Spicy potato salad or Aloo bhujiya ','','inherit','closed','closed','','192-revision-2','','','2013-06-10 21:52:51','2013-06-11 01:52:51','',192,'http://divyayogamonteregie.org/web/?p=198',0,'revision','',0),(230,1,'2013-06-10 22:04:30','2013-06-11 02:04:30','<a href=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image002.jpg\"><img class=\"aligncenter size-medium wp-image-165\" alt=\"image002\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image002-300x168.jpg\" width=\"300\" height=\"168\" /></a>\r\n\r\n<strong>Ingredients:</strong>\r\n\r\n1/2 Kilo Boiled peeled and cut into 8 pieces Potato\r\n\r\n1 to 1/2 Tea spoon salt.\r\n\r\n1 tea spoon turmeric\r\n\r\n1 Tea spoon to 4 table spoon vegetable. Oil\r\n\r\n1 1/2 teaspoon cumin seed\r\n\r\nCrushed hot pepper 1 1/2 tea spoon or less\r\n\r\nAsafetida compound powder  is equal to 1 Chick pea\'s size\r\n\r\nMango Powder 2 tea spoon\r\n\r\n&nbsp;\r\n\r\nVery fine ct coriander leaves  20 grams coriander to g arnish.\r\n\r\nOr\r\n\r\nFine cut dill leaves.\r\n\r\n&nbsp;\r\n\r\nPut a pan on the stove. Add oil according to your food habit (1 tea spoon or 4 table spoon) add cumin seeds in hot oil. Let it turn brown add asafetida and add turmeric and jt let is turn its color a bit. Then  put all the potato in that. Add salt, red hot crushed pepper and fine cut coriander and mix with light hand till everything is uniformly colored.\r\n\r\nYour salad is ready to serve.','Spicy potato salad or Aloo bhujiya ','','inherit','closed','closed','','192-revision-3','','','2013-06-10 22:04:30','2013-06-11 02:04:30','',192,'http://divyayogamonteregie.org/web/?p=230',0,'revision','',0),(199,1,'2013-06-10 22:16:33','2013-06-11 02:16:33','','image001','','inherit','closed','closed','','image001','','','2013-06-10 22:16:33','2013-06-11 02:16:33','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image001.jpg',0,'attachment','image/jpeg',0),(200,1,'2013-06-11 19:52:54','2013-06-11 23:52:54','<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image008.jpg\"><img class=\"aligncenter  wp-image-163\" alt=\"image008\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image008-300x168.jpg\" width=\"600\" height=\"336\" /></a></p>\r\n&nbsp;\r\n\r\n<span style=\"text-decoration: underline;\"><em><strong>Ingredients:-</strong></em></span>\r\n\r\n1 cup of Basmati rice\r\n\r\n2 cups of water\r\n\r\n1 ½ tea spoon of salt\r\n\r\n100 Grams of roasted Cashew nuts\r\n\r\n2 big  peeled potato\r\n\r\n½ Cauliflower\r\n\r\n2 big peeled Carrot\r\n\r\n1 Cup of green frozen  peas\r\n\r\n½ tea spoon of Cumin seeds\r\n\r\n3-4 Red dried hot pepper cut into small pieces.\r\n\r\n1 teaspoon of Turmeric\r\n\r\n2 Table Spoon of oil\r\n\r\n1 pinch of Asephatida compound\r\n\r\n½ bunch of coriander leaves.\r\n\r\n&nbsp;\r\n\r\nCut cauliflower, carrot and potato  into bite size and rinse them thoroughly.\r\n\r\nCut the coriander into fine pieces and rinse then in deep water because it contains soil and sands in deep water the soil and settle and the leaves will float on the surface.\r\n\r\nRinse two times basmati rice 2 times thoroughly. To remove excess of starch.\r\n\r\n&nbsp;\r\n\r\nPut pan on the stove.\r\n\r\nAdd oil into the pan.\r\n\r\nPut the stove into 6\r\n\r\nAdd cumin seeds into the oil. When it turns a little bit of brown add asaphatida and red hot dried pepper. Till now the cumin seeds have to be dark brown. Now add turmeric and stir it and add vegetables except peas and coriander. Stir it and add rice, salt, cashew nuts and 2 cups of water.\r\n\r\n&nbsp;\r\n\r\nTurn the stove to high and cover it with the lid and let it come to the boil. When it comes to boil turn it to 7. When you see that these is not water in the bottom. Turn it off and cover it . 5 minutes after use the fork to loosen the rice and let the extra vapor go away so that each grain of rice stays separate. Now add frozen peas and  coriander and keep your pot half covered so that The green color stays green.\r\n\r\n&nbsp;\r\n\r\nYour taharee is ready to be served.\r\n\r\nIF you like you can add  cut black olives. They will give a nice color to your Taharee.\r\n\r\n&nbsp;\r\n\r\nFood has 4 functions.\r\n\r\n1. Fill your stomach.\r\n\r\n2. Give you energy\r\n\r\n3. Make you happy by look &amp;\r\n\r\n4. Refresh your mood by aroma\r\n\r\nLet me know if your family started eating in happy mood or not?','Taharee or Stir Fried rice','','publish','closed','closed','','taharee-or-stir-fried-rice','','','2013-06-15 22:12:55','2013-06-16 02:12:55','',190,'http://divyayogamonteregie.org/web/?page_id=200',0,'page','',0),(201,1,'2013-06-11 19:50:12','2013-06-11 23:50:12','Ingrediants:-\n\n1 cup of Basmati rice\n\n2 cups of water\n\n1 ½ tea spoon of salt\n\n100 Grams of roasted Cashew nuts\n\n2 big  peeled potato\n\n½ Cauliflower\n\n2 big peeled Carrot\n\n1 Cup of green frozen  peas\n\n½ tea spoon of Cumin seeds\n\n3-4 Red dried hot pepper cut into small pieces.\n\n1 teaspoon of Turmeric\n\n2 Table Spoon of oil\n\n1 pinch of Asephatida compound\n\n½ bunch of coriander leaves.\n\n&nbsp;\n\nCut cauliflower, carrot and potato  into bite size and rinse them thoroughly.\n\nCut the coriander into fine pieces and rinse then in deep water because it contains soil and sands in deep water the soil and settle and the leaves will float on the surface.\n\nRinse two times basmati rice 2 times thoroughly. To remove excess of starch.\n\n&nbsp;\n\nPut pan on the stove.\n\nAdd oil into the pan.\n\nPut the stove into 6\n\nAdd cumin seeds into the oil. When it turns a little bit of brown add asaphatida and red hot dried pepper. Till now the cumin seeds have to be dark brown. Now add turmeric and stir it and add vegetables except peas and coriander. Stir it and add rice, salt, cashew nuts and 2 cups of water.\n\n&nbsp;\n\nTurn the stove to high and cover it with the lid and let it come to the boil. When it comes to boil turn it to 7. When you see that these is not water in the bottom. Turn it off and cover it . 5 minutes after use the fork to loosen the rice and let the extra vapor go away so that each grain of rice stays separate. Now add frozen peas and  coriander and keep your pot half covered so that The green color stays green.\n\n&nbsp;\n\nYour taharee is ready to be served.\n\nIF you like you can add  cut black olives. They will give a nice color to your Taharee.\n\n&nbsp;\n\nFood has 4 functions.\n\n1. Fill your stomach.\n\n2. Give you energy\n\n3. Make you happy by look &amp;\n\n4. Refresh your mood by aroma\n\nLet me know if your family started eating in happy mood or not?','Taharee or Stir Fried rice','','inherit','closed','closed','','200-revision','','','2013-06-11 19:50:12','2013-06-11 23:50:12','',200,'http://divyayogamonteregie.org/web/?p=201',0,'revision','',0),(202,1,'2013-06-11 19:56:18','2013-06-11 23:56:18','<b><span style=\"text-decoration: underline;\"> <a href=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image0022.jpg\"><img class=\"aligncenter size-medium wp-image-225\" alt=\"image002\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image0022-300x168.jpg\" width=\"450\" height=\"252\" /></a></span></b>\r\n\r\n&nbsp;\r\n\r\nWhite lentil 250 grams\r\n\r\nWater 1250 ml (5 times of lentil)\r\n\r\nTurmeric 1 tea spoon\r\n\r\nSalt 1 ½ tea spoon or according to taste\r\n\r\nGrated Ginger 1 ½ inch\r\n\r\nFine cut well washed in deep water Dill ¼ bundle/\r\n\r\nRinse the lentil twice because you don’t know how man hands it has changed till it is in your hands.\r\n\r\nPut it on the cooker\r\n\r\nAdd salt\r\n\r\nAdd turmeric\r\n\r\nAdd water\r\n\r\nPut the cooker on stove and put it on medium heat.\r\n\r\nLit the whistle to blow for 2 minutes.\r\n\r\nWhen it cools open the cooker. Add the dill and ginger.\r\n\r\nIf you like stir fry with one spoon of oil ¼ spoon of ginger and ¼ tea spoon of  Hot pepper . If not it is ready to be served without even stir frying.\r\n\r\nThe one shown in the picture is with 3 times water  not 5 times.',' Urad or white lentil with Dill and Ginger.','','publish','closed','closed','','urad-or-white-lentil-with-dill-and-ginger','','','2013-06-15 21:54:59','2013-06-16 01:54:59','',190,'http://divyayogamonteregie.org/web/?page_id=202',0,'page','',0),(203,1,'2013-06-11 19:56:08','2013-06-11 23:56:08','<b><span style=\"text-decoration: underline;\"> </span></b>\n\n&nbsp;\n\nWhite lentil 250 grams\n\nWater 1250 ml (5 times of lentil)\n\nTurmeric 1 tea spoon\n\nSalt 1 ½ tea spoon or according to taste\n\nGrated Ginger 1 ½ inch\n\nFine cut well washed in deep water Dill ¼ bundle/\n\nRinse the lentil twice because you don’t know how man hands it has changed till it is in your hands.\n\nPut it on the cooker\n\nAdd salt\n\nAdd turmeric\n\nAdd water\n\nPut the cooker on stove and put it on medium heat.\n\nLit the whistle to blow for 2 minutes.\n\nWhen it cools open the cooker. Add the dill and ginger.\n\nIf you like stir fry with one spoon of oil ¼ spoon of ginger and ¼ tea spoon of  Hot pepper . If not it is ready to be served without even stir frying.\n\nThe one shown in the picture is with 3 times water  not 5 times.',' Urad or white lentil with di and Ginger.','','inherit','closed','closed','','202-revision','','','2013-06-11 19:56:08','2013-06-11 23:56:08','',202,'http://divyayogamonteregie.org/web/?p=203',0,'revision','',0),(204,1,'2013-06-11 19:58:44','2013-06-11 23:58:44','<p style=\"text-align: center;\"><span style=\"color: #008000;\"><em><span style=\"text-decoration: underline;\">Organic  Salad</span></em></span></p>\r\n<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image012.jpg\"><img class=\"aligncenter  wp-image-169\" alt=\"Organic Salad\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image012-300x168.jpg\" width=\"600\" height=\"336\" /></a></p>\r\n&nbsp;\r\n\r\n1 box of Organic Salad\r\n\r\n5-6 Artichoke bottom\r\n\r\n1  pack Cherry Tomato\r\n\r\nHalf onion cut round and each ring separated.\r\n\r\nAlmond oil  2 tea spoon\r\n\r\nBlack pepper 1 tea spoon\r\n\r\nSalt ½ tea spoon\r\n\r\nAlmond chips 2 table spoon\r\n\r\nSalary bite size cut 1 cup\r\n\r\nRed pigment 1\r\n\r\nYellow pigment 1\r\n\r\nRinse the Salad twice in deep water.  (It is necessary to rinse the organic salad or organic food because organic manure is  generally made by animal dung or raw food). Put it on a towel for 5 minutes and cover it with all sides  So that extra water is absorbed by the towel. Add all the other ingredients in a bowl . The salad is ready to serve.','Organic Salad','','publish','closed','closed','','204-2','','','2013-06-15 22:57:29','2013-06-16 02:57:29','',190,'http://divyayogamonteregie.org/web/?page_id=204',0,'page','',0),(205,1,'2013-06-11 19:58:34','2013-06-11 23:58:34','<b>Organic  Salad</b>\n\n1 box of Organic Salad\n\n5-6 Artichoke bottom\n\n1  pack Cherry Tomato\n\nHalf onion cut round and each ring separated.\n\nAlmond oil  2 tea spoon\n\nBlack pepper 1 tea spoon\n\nSalt ½ tea spoon\n\nAlmond chips 2 table spoon\n\nSalary bite size cut 1 cup\n\nRed pigment 1\n\nYellow pigment 1\n\nRinse the Salad twice in deep water.  (It is necessary to rinse the organic salad or organic food because organic manure is  generally made by animal dung or raw food). Put it on a towel for 5 minutes and cover it with all sides  So that extra water is absorbed by the towel. Add all the other ingredients in a bowl . The salad is ready to serve.','.','','inherit','closed','closed','','204-revision','','','2013-06-11 19:58:34','2013-06-11 23:58:34','',204,'http://divyayogamonteregie.org/web/?p=205',0,'revision','',0),(206,1,'2013-06-15 22:56:14','2013-06-16 02:56:14','<p style=\"text-align: center;\"><em><span style=\"text-decoration: underline;\">Organic  Salad</span></em></p>\n<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image012.jpg\"><img class=\"aligncenter  wp-image-169\" alt=\"Organic Salad\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image012-300x168.jpg\" width=\"600\" height=\"336\" /></a></p>\n&nbsp;\n\n1 box of Organic Salad\n\n5-6 Artichoke bottom\n\n1  pack Cherry Tomato\n\nHalf onion cut round and each ring separated.\n\nAlmond oil  2 tea spoon\n\nBlack pepper 1 tea spoon\n\nSalt ½ tea spoon\n\nAlmond chips 2 table spoon\n\nSalary bite size cut 1 cup\n\nRed pigment 1\n\nYellow pigment 1   <a href=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image012.jpg\"><img class=\"aligncenter size-medium wp-image-169\" alt=\"Organic Salad\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image012-300x168.jpg\" width=\"300\" height=\"168\" /></a>\n\nRinse the Salad twice in deep water.  (It is necessary to rinse the organic salad or organic food because organic manure is  generally made by animal dung or raw food). Put it on a towel for 5 minutes and cover it with all sides  So that extra water is absorbed by the towel. Add all the other ingredients in a bowl . The salad is ready to serve.','Organic Salad','','inherit','closed','closed','','204-autosave','','','2013-06-15 22:56:14','2013-06-16 02:56:14','',204,'http://divyayogamonteregie.org/web/?p=206',0,'revision','',0),(207,1,'2013-06-11 19:58:44','2013-06-11 23:58:44','<b>Organic  Salad</b>\r\n\r\n1 box of Organic Salad\r\n\r\n5-6 Artichoke bottom\r\n\r\n1  pack Cherry Tomato\r\n\r\nHalf onion cut round and each ring separated.\r\n\r\nAlmond oil  2 tea spoon\r\n\r\nBlack pepper 1 tea spoon\r\n\r\nSalt ½ tea spoon\r\n\r\nAlmond chips 2 table spoon\r\n\r\nSalary bite size cut 1 cup\r\n\r\nRed pigment 1\r\n\r\nYellow pigment 1\r\n\r\nRinse the Salad twice in deep water.  (It is necessary to rinse the organic salad or organic food because organic manure is  generally made by animal dung or raw food). Put it on a towel for 5 minutes and cover it with all sides  So that extra water is absorbed by the towel. Add all the other ingredients in a bowl . The salad is ready to serve.','.','','inherit','closed','closed','','204-revision-2','','','2013-06-11 19:58:44','2013-06-11 23:58:44','',204,'http://divyayogamonteregie.org/web/?p=207',0,'revision','',0),(208,1,'2013-06-11 20:00:46','2013-06-12 00:00:46','<b>Organic  Salad</b>\r\n\r\n1 box of Organic Salad\r\n\r\n5-6 Artichoke bottom\r\n\r\n1  pack Cherry Tomato\r\n\r\nHalf onion cut round and each ring separated.\r\n\r\nAlmond oil  2 tea spoon\r\n\r\nBlack pepper 1 tea spoon\r\n\r\nSalt ½ tea spoon\r\n\r\nAlmond chips 2 table spoon\r\n\r\nSalary bite size cut 1 cup\r\n\r\nRed pigment 1\r\n\r\nYellow pigment 1   <a href=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image012.jpg\"><img class=\"aligncenter size-medium wp-image-169\" alt=\"Organic Salad\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image012-300x168.jpg\" width=\"300\" height=\"168\" /></a>\r\n\r\nRinse the Salad twice in deep water.  (It is necessary to rinse the organic salad or organic food because organic manure is  generally made by animal dung or raw food). Put it on a towel for 5 minutes and cover it with all sides  So that extra water is absorbed by the towel. Add all the other ingredients in a bowl . The salad is ready to serve.','.','','inherit','closed','closed','','204-revision-3','','','2013-06-11 20:00:46','2013-06-12 00:00:46','',204,'http://divyayogamonteregie.org/web/?p=208',0,'revision','',0),(209,1,'2013-06-11 20:12:27','2013-06-12 00:12:27','<b><i><span style=\"text-decoration: underline;\">Ingredients:</span></i></b>\r\n<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image003.jpg\"><img class=\"aligncenter  wp-image-253\" style=\"border: 1px solid black; margin: 1px;\" alt=\"image003\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image003-300x204.jpg\" width=\"600\" height=\"336\" /></a></p>\r\n<i>1 package tea biscuits -200 g</i>\r\n\r\n<i>1 package butter-soft 125 g</i>\r\n\r\n<i>1 jar- jam 300 g</i>\r\n\r\n<i>150 g ground walnuts</i>\r\n\r\n<i> Blending jam with half the chopped walnuts.</i>\r\n\r\n<i>Smear each biscuit with butter and jam and paste the other. With the rest of the mixture and smear countries.\r\nWrap in foil and put in the fridge for 30 minutes.</i>\r\n\r\n<i>Once the roll is tight little roll it in the remaining chopped walnuts.</i>\r\n\r\n<i>We\'re going to put the roll a few hours in the refrigerator.</i>\r\n\r\n<i> It\'s nice to make in the evening and eat the next day.</i>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Biscuit roll with jam','','publish','closed','closed','','biscuit-roll-with-jam','','','2013-06-16 01:01:04','2013-06-16 05:01:04','',190,'http://divyayogamonteregie.org/web/?page_id=209',0,'page','',0),(210,1,'2013-06-11 20:11:45','2013-06-12 00:11:45','<b><i><span style=\"text-decoration: underline;\">Ingredients:</span></i></b>\n\n<i>1 package tea biscuits -200 g</i>\n\n<i>1 package butter-soft 125 g</i>\n\n<i>1 jar- jam 300 g</i>\n\n<i>150 g ground walnuts</i>\n\n<i> Blending jam with half the chopped walnuts.</i>\n\n<i>Smear each biscuit with butter and jam and paste the other. With the rest of the mixture and smear countries.\nWrap in foil and put in the fridge for 30 minutes.</i>\n\n<i>Once the roll is tight little roll it in the remaining chopped walnuts.</i>\n\n<i>We\'re going to put the roll a few hours in the refrigerator.</i>\n\n<i> It\'s nice to make in the evening and eat the next day.</i>\n\n&nbsp;\n\n&nbsp;','Biscuit roll with jam','','inherit','closed','closed','','209-revision','','','2013-06-11 20:11:45','2013-06-12 00:11:45','',209,'http://divyayogamonteregie.org/web/?p=210',0,'revision','',0),(211,1,'2013-06-11 20:15:22','2013-06-12 00:15:22','<b></b>Local name for beans and puts Balkan countries\r\n\r\ningredients:\r\n\r\n450 gr large lima beans\r\n1kg diced yellow onion\r\n1 cup vegetable oil\r\n2 bay leaves\r\n2 c. tablespoon paprika\r\nSalt and pepper\r\n\r\nWash beans and soak in cold water overnight.\r\nDrain and rinse, then put the beans in a saucepan and cover with water.\r\nAdd salt and bring to a boil. Reduce heat and simmer for 1.5 h at\r\n2 h.\r\nDrain the beans and set aside.\r\n\r\nCut the onions into cubes and fry in vegetable oil. At the end of the\r\ncooking, add the paprika, salt and pepper. Stir in onion and\r\nlima beans and place in an ovenproof dish and bake for 1 hour at 350\r\n\r\nSauce brings taste in to meals. So here are some recopies for  making your meal  tasty.\r\n\r\n&nbsp;\r\n\r\nsauces are not to be eaten regularly and in large amount because with the lemon we have to add lots of salt which is not good. This kind of sauce you can keep for a week in your refrigerator.','Lima beans (Prebranac)','','publish','closed','closed','','lima-beans-prebranac','','','2013-06-11 20:15:22','2013-06-12 00:15:22','',190,'http://divyayogamonteregie.org/web/?page_id=211',0,'page','',0),(212,1,'2013-06-11 20:14:46','2013-06-12 00:14:46','<b></b>Local name for beans and puts Balkan countries\n\ningredients:\n\n450 gr large lima beans\n1kg diced yellow onion\n1 cup vegetable oil\n2 bay leaves\n2 c. tablespoon paprika\nSalt and pepper\n\nWash beans and soak in cold water overnight.\nDrain and rinse, then put the beans in a saucepan and cover with water.\nAdd salt and bring to a boil. Reduce heat and simmer for 1.5 h at\n2 h.\nDrain the beans and set aside.\n\nCut the onions into cubes and fry in vegetable oil. At the end of the\ncooking, add the paprika, salt and pepper. Stir in onion and\nlima beans and place in an ovenproof dish and bake for 1 hour at 350\n\nSauce brings taste in to meals. So here are some recopies for  making your meal  tasty.\n\n&nbsp;\n\nsauces are not to be eaten regularly and in large amount because with the lemon we have to add lots of salt which is not good. This kind of sauce you can keep for a week in your refrigerator.','Lima beans (Prebranac)','','inherit','closed','closed','','211-revision','','','2013-06-11 20:14:46','2013-06-12 00:14:46','',211,'http://divyayogamonteregie.org/web/?p=212',0,'revision','',0),(213,1,'2013-06-11 20:27:54','2013-06-12 00:27:54','&nbsp;\r\n\r\n<b> The word Chatni is made from the verb Chatna which means l</b><b>ic</b>k. It is eaten in small amount because mostly chatni or sauces are made with lemon juice <b>so to </b><b>subsidies</b> the sour taste we have to add more salt. That is why its l<b>ic</b>king is better in <b>comparison</b> to eating in large quantity.\r\n\r\n<span style=\"text-decoration: underline;\"><strong>1. Onion Sauce.</strong></span>\r\n\r\n<strong><span style=\"text-decoration: underline;\">Ingredients</span> </strong>\r\n\r\n2 onions\r\n3 Lemon juice\r\n1/2 tea spoon salt or according to your taste\r\n4 Red hot peppers.\r\n\r\nAfter peeling and cutting blend all the things into along with the lemon juice\r\nextracted from 3 lemons. Your sauce is ready to serve.\r\n\r\n<b><span style=\"text-decoration: underline;\">2. Mango Sauce</span></b>\r\n\r\n4 big mangoes ( green pr little bit ripening)\r\n4 Hot green peppers\r\n1 tea spoon of salt\r\n4 table spoon of olive oil\r\n\r\nPeel the mangoes and take out the seed. put in the blender. Add all other ingredients except oil. Blend it well. Put in a bottle. Add olive oil.\r\nYou can add mint into this to give a nice flavor.\r\nIf mangoes are totally green you can add little bit of sugar.\r\n\r\n<b><span style=\"text-decoration: underline;\">3. Peanut Sauce.\r\n</span></b>\r\n\r\n<b><span style=\"text-decoration: underline;\"><a href=\"http://www.youtube.com/watch?v=7Uqa8RTJrHM\">http://www.youtube.com/watch?v=7Uqa8RTJrHM</a></span></b>\r\n\r\n4 table spoon of peanuts\r\n1/2 tea spoon of salt\r\n8 tablespoon of natural plain yogurt\r\n3 red peppers or 1/2 tea spoon of red pepper powder.\r\n\r\nBlend them in blender like fine paste. Your sauce is ready to serve.\r\n\r\n<b><span style=\"text-decoration: underline;\">4. Coriander sauce\r\n</span></b>\r\n\r\n<b><span style=\"text-decoration: underline;\"><a href=\"http://www.youtube.com/watch?v=4IZFNI1rGrE\">http://www.youtube.com/watch?v=4IZFNI1rGrE</a>\r\n</span></b>\r\n1 bunch of coriander leaves well cut and washed.\r\n3-4 hot pepper\r\n\r\n2-3 fresh big lemons juice\r\n1/2 tea spoon of Salt\r\n\r\nblend salt, coriander leaves, and lemon juice in blender. If you feel bitter you\r\ncan add more lemon in it.\r\nYour sauce is ready to serve.\r\n\r\nCoriander is antiseptic. and fresh lemon is good for proper functioning of\r\nKidney But sauces are not to be eaten regularly and in large amount because with the lemon we have to add lots of salt which is not good. This kind of sauce you can keep for a week in your refrigerator.\r\n\r\n<b><span style=\"text-decoration: underline;\"> 5. Yogourt sauce</span></b>\r\n<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image014.jpg\"><img class=\"aligncenter  wp-image-164\" alt=\"image014\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image014-300x168.jpg\" width=\"600\" height=\"336\" /></a></p>\r\n<b></b>½ l of  plain yogourt\r\n\r\n¼ tea spoon of salt\r\n\r\n¼   tea spoon of Red hot pepper powder\r\n\r\n¼ tea spoon of roasted cumin seeds powder\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nWhen you have no sauce and you need sauce to eat with any thing This is the quickest sauce to be prepared at home.\r\n\r\n&nbsp;\r\n\r\nOn  stove put pan and add 100 grams of cumin seeds. Put the stove on medium. The seeds will start producing sound keep on stirring them when they turn brown. Stop roasting them wait for 5 minutes to cook down . Now blend them. Keep them in salt and pepper shaker for everyday use. Always keep roasted cumin seeds powder along with salt and pepper shaker\r\n\r\n&nbsp;\r\n\r\nThis is the healthiest sauce you can make within 5 minutes.\r\n\r\n&nbsp;\r\n\r\nAdd salt roasted cumin seeds powder red pepper powder in the yougurt  mix them and your sauce is ready  .\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<b>6. Mint sauce or chatni</b>\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://www.youtube.com/watch?v=gLwHF7OdeY0\">http://www.youtube.com/watch?v=gLwHF7OdeY0</a>\r\n\r\nOne pack of well washed Mint leaves.\r\n\r\n2 lemons\r\n\r\n4 hot pepper\r\n\r\n1 tea spoon salt.\r\n\r\nAll blend together your sauce is ready to refresh your mood and increase your hunger.','Different  kind of fresh aromatic sauses or chatni','','publish','closed','closed','','different-kind-of-fresh-aromatic-sauses-or-chatni','','','2013-06-15 23:19:22','2013-06-16 03:19:22','',190,'http://divyayogamonteregie.org/web/?page_id=213',0,'page','',0),(214,1,'2013-06-11 20:27:35','2013-06-12 00:27:35','&nbsp;\n\n<b> The word Chatni is made from the verb Chatna which means l</b><b>ic</b>k. It is eaten in small amount because mostly chatni or sauces are made with lemon juice <b>so to </b><b>subsidies</b> the sour taste we have to add more salt. That is why its l<b>ic</b>king is better in <b>comparison</b> of eating in large quantity. \n\n<span style=\"text-decoration: underline;\"><strong>1. Onion Sauce.</strong></span>\n\n<strong><span style=\"text-decoration: underline;\">Ingredients</span> </strong>\n\n2 onions\n3 Lemon juice\n1/2 tea spoon salt or according to your taste\n4 Red hot peppers.\n\n\nAfter peeling and cutting blend all the things into along with the lemon juice\nextracted from 3 lemons. Your sauce is ready to serve.\n\n&nbsp;\n\n&nbsp;\n\n<b><span style=\"text-decoration: underline;\">2. Mango Sauce</span></b>\n\n4 big mangoes ( green pr little bit ripening)\n4 Hot green peppers\n1 tea spoon of salt\n4 table spoon of olive oil\n\nPeel the mangoes and take out the seed. put in the blender. Add all other ingredients except oil. Blend it well. Put in a bottle. Add olive oil.\nYou can add mint into this to give a nice flavor.\nIf mangoes are totally green you can add little bit of sugar.\n\n<b><span style=\"text-decoration: underline;\">3. Peanut Sauce.</span></b>\n\n<b><span style=\"text-decoration: underline;\"> </span></b>\n\n<b><span style=\"text-decoration: underline;\"><a href=\"http://www.youtube.com/watch?v=7Uqa8RTJrHM\">http://www.youtube.com/watch?v=7Uqa8RTJrHM</a> </span></b>\n\n&nbsp;\n\n4 table spoon of peanuts\n1/2 tea spoon of salt\n8 tablespoon of natural plain yogurt\n3 red peppers or 1/2 tea spoon of red pepper powder.\n\nBlend them in blender like fine paste. Your sauce is ready to serve.\n\n<b><span style=\"text-decoration: underline;\">4. Coriander sauce</span></b>\n\n<b><span style=\"text-decoration: underline;\"> </span></b>\n\n<b><span style=\"text-decoration: underline;\"><a href=\"http://www.youtube.com/watch?v=4IZFNI1rGrE\">http://www.youtube.com/watch?v=4IZFNI1rGrE</a>\n</span></b>\n1 bunch of coriander leaves well cut and washed.\n3-4 hot pepper\n\n2-3 fresh big lemons juice\n1/2 tea spoon of Salt\n\n\nblend salt, coriander leaves, and lemon juice in blender. If you feel bitter you\ncan add more lemon in it.\nYour sauce is ready to serve.\n\nCoriander is antiseptic. and fresh lemon is good for proper functioning of\nKidney But sauces are not to be eaten regularly and in large amount because with the lemon we have to add lots of salt which is not good. This kind of sauce you can keep for a week in\nyour refrigerator.\n\n<b><span style=\"text-decoration: underline;\"> </span></b>\n\n<b><span style=\"text-decoration: underline;\">5. Yogourt sauce</span></b>\n\n<b><span style=\"text-decoration: underline;\"> </span></b>½ l of  plain yogourt\n\n¼ tea spoon of salt\n\n¼   tea spoon of Red hot pepper powder\n\n¼ tea spoon of roasted cumin seeds powder\n\n&nbsp;\n\n&nbsp;\n\nWhen you have no sauce and you need sauce to eat with any thing This is the quickest sauce to be prepared at home.\n\n&nbsp;\n\nOn  stove put pan and add 100 grams of cumin seeds. Put the stove on medium. The seeds will start producing sound keep on stirring them when they turn brown. Stop roasting them wait for 5 minutes to cook down . Now blend them. Keep them in salt and pepper shaker for everyday use. Always keep roasted cumin seeds powder along with salt and pepper shaker\n\n&nbsp;\n\nThis is the healthiest sauce you can make within 5 minutes.\n\n&nbsp;\n\nAdd salt roasted cumin seeds powder red pepper powder in the yougurt  mix them and your sauce is ready  .\n\n&nbsp;\n\n&nbsp;\n\n<b>6. Mint sauce or chatni</b>\n\n&nbsp;\n\n<a href=\"http://www.youtube.com/watch?v=gLwHF7OdeY0\">http://www.youtube.com/watch?v=gLwHF7OdeY0</a>\n\nOne pack of well washed Mint leaves.\n\n2 lemons 4 hot pepper 1 tea spoon salt. All blend together your sauce is ready to refresh your mood and increase your hunger.','Different  kind of fresh aromatic sauses or chatni','','inherit','closed','closed','','213-revision','','','2013-06-11 20:27:35','2013-06-12 00:27:35','',213,'http://divyayogamonteregie.org/web/?p=214',0,'revision','',0),(293,1,'2013-06-23 13:47:29','2013-06-23 17:47:29','','20130315_99_2','','inherit','closed','closed','','20130315_99_2','','','2013-06-23 13:47:29','2013-06-23 17:47:29','',25,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/20130315_99_2.jpg',0,'attachment','image/jpeg',0),(218,1,'2013-06-15 21:33:21','2013-06-16 01:33:21','','image002','','inherit','closed','closed','','image002-2','','','2013-06-15 21:33:21','2013-06-16 01:33:21','',190,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image0021.jpg',0,'attachment','image/jpeg',0),(220,1,'2013-06-10 21:45:08','2013-06-11 01:45:08','<b>Vegetarian Food- Served and shared on last Saturday of the month</b>\r\n\r\nThe vegetarian main dishes are made by Meera Trivedi bt the  members of our yoga community also bring food items/fruits etc for sharing.\r\n\r\nThe Top kind of food is raw food. Early man used to eat fruits and nuts and survived for a long time\r\n\r\nThen he invented fire and started cooking. Which gave him a different taste of the same food and he liked and ate. The cooked food value has less food value than the raw one because some of the nutritional value is lost in cooking.\r\n\r\nThe third kind of food is preserved food, in which companies add preservatives to keep its color as it is. Food need to be digested in our body not to be preserved. Even if we rinse the food its preservative are not 100% washed away. They are harmful for our system. That is why it is best to eat fresh food then to eat cooked food and avoid preserved foods which are sold for convenience.\r\n\r\nIt is good to spend time in kitchen and cook good healthy food for the family. Food should have lots of aroma. Because aroma refreshes the mind.  The aromatic herbs should be added in the food after the food is cooked for it’s full effect. We should eat least amount of salt and minimize/cut off the intake of processed sugar. Instead we should eat different types of fruits each day.','Some vegetarian recipes','','inherit','closed','closed','','190-revision-v1','','','2013-06-10 21:45:08','2013-06-11 01:45:08','',190,'http://divyayogamonteregie.org/web/?p=220',0,'revision','',0),(223,1,'2013-06-15 21:38:00','2013-06-16 01:38:00','&nbsp;\r\n\r\n<b>Vegetarian Food- Served and shared on last Saturday of the month</b>\r\n\r\nThe vegetarian main dishes are made by Meera Trivedi bt the  members of our yoga community also bring food items/fruits etc for sharing.\r\n\r\nThe Top kind of food is raw food. Early man used to eat fruits and nuts and survived for a long time\r\n\r\nThen he invented fire and started cooking. Which gave him a different taste of the same food and he liked and ate. The cooked food value has less food value than the raw one because some of the nutritional value is lost in cooking.\r\n\r\nThe third kind of food is preserved food, in which companies add preservatives to keep its color as it is. Food need to be digested in our body not to be preserved. Even if we rinse the food its preservative are not 100% washed away. They are harmful for our system. That is why it is best to eat fresh food then to eat cooked food and avoid preserved foods which are sold for convenience.\r\n\r\nIt is good to spend time in kitchen and cook good healthy food for the family. Food should have lots of aroma. Because aroma refreshes the mind.  The aromatic herbs should be added in the food after the food is cooked for it’s full effect. We should eat least amount of salt and minimize/cut off the intake of processed sugar. Instead we should eat different types of fruits each day.','Some vegetarian recipes','','inherit','closed','closed','','190-revision-v1','','','2013-06-15 21:38:00','2013-06-16 01:38:00','',190,'http://divyayogamonteregie.org/web/?p=223',0,'revision','',0),(221,1,'2013-06-15 21:36:31','2013-06-16 01:36:31','<a href=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image0021.jpg\"><img class=\"aligncenter size-medium wp-image-218\" alt=\"image002\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image0021-300x141.jpg\" width=\"300\" height=\"141\" /></a>\r\n\r\n<b>Vegetarian Food- Served and shared on last Saturday of the month</b>\r\n\r\nThe vegetarian main dishes are made by Meera Trivedi bt the  members of our yoga community also bring food items/fruits etc for sharing.\r\n\r\nThe Top kind of food is raw food. Early man used to eat fruits and nuts and survived for a long time\r\n\r\nThen he invented fire and started cooking. Which gave him a different taste of the same food and he liked and ate. The cooked food value has less food value than the raw one because some of the nutritional value is lost in cooking.\r\n\r\nThe third kind of food is preserved food, in which companies add preservatives to keep its color as it is. Food need to be digested in our body not to be preserved. Even if we rinse the food its preservative are not 100% washed away. They are harmful for our system. That is why it is best to eat fresh food then to eat cooked food and avoid preserved foods which are sold for convenience.\r\n\r\nIt is good to spend time in kitchen and cook good healthy food for the family. Food should have lots of aroma. Because aroma refreshes the mind.  The aromatic herbs should be added in the food after the food is cooked for it’s full effect. We should eat least amount of salt and minimize/cut off the intake of processed sugar. Instead we should eat different types of fruits each day.','Some vegetarian recipes','','inherit','closed','closed','','190-revision-v1','','','2013-06-15 21:36:31','2013-06-16 01:36:31','',190,'http://divyayogamonteregie.org/web/?p=221',0,'revision','',0),(222,1,'2013-06-15 21:37:30','2013-06-16 01:37:30','<a href=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image0021.jpg\"><img class=\"aligncenter size-medium wp-image-218\" alt=\"image002\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image0021-300x141.jpg\" width=\"300\" height=\"141\" /></a>\r\n<p style=\"text-align: justify;\"><b>Vegetarian Food- Served and shared on last Saturday of the month</b></p>\r\n<p style=\"text-align: justify;\">The vegetarian main dishes are made by Meera Trivedi bt the  members of our yoga community also bring food items/fruits etc for sharing.</p>\r\n<p style=\"text-align: justify;\">The Top kind of food is raw food. Early man used to eat fruits and nuts and survived for a long time</p>\r\n<p style=\"text-align: justify;\">Then he invented fire and started cooking. Which gave him a different taste of the same food and he liked and ate. The cooked food value has less food value than the raw one because some of the nutritional value is lost in cooking.</p>\r\n<p style=\"text-align: justify;\">The third kind of food is preserved food, in which companies add preservatives to keep its color as it is. Food need to be digested in our body not to be preserved. Even if we rinse the food its preservative are not 100% washed away. They are harmful for our system. That is why it is best to eat fresh food then to eat cooked food and avoid preserved foods which are sold for convenience.</p>\r\n<p style=\"text-align: justify;\">It is good to spend time in kitchen and cook good healthy food for the family. Food should have lots of aroma. Because aroma refreshes the mind.  The aromatic herbs should be added in the food after the food is cooked for it’s full effect. We should eat least amount of salt and minimize/cut off the intake of processed sugar. Instead we should eat different types of fruits each day.</p>','Some vegetarian recipes','','inherit','closed','closed','','190-revision-v1','','','2013-06-15 21:37:30','2013-06-16 01:37:30','',190,'http://divyayogamonteregie.org/web/?p=222',0,'revision','',0),(224,1,'2013-06-15 21:57:18','2013-06-16 01:57:18','<b><span style=\"text-decoration: underline;\"> <a href=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image0022.jpg\"><img class=\"aligncenter size-medium wp-image-225\" alt=\"image002\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image0022-300x168.jpg\" width=\"450\" height=\"252\" /></a></span></b>\n\n&nbsp;\n\nWhite lentil 250 grams\n\nWater 1250 ml (5 times of lentil)\n\nTurmeric 1 tea spoon\n\nSalt 1 ½ tea spoon or according to taste\n\nGrated Ginger 1 ½ inch\n\nFine cut well washed in deep water Dill ¼ bundle/\n\nRinse the lentil twice because you don’t know how man hands it has changed till it is in your hands.\n\nPut it on the cooker\n\nAdd salt\n\nAdd turmeric\n\nAdd water\n\nPut the cooker on stove and put it on medium heat.\n\nLit the whistle to blow for 2 minutes.\n\nWhen it cools open the cooker. Add the dill and ginger.\n\nIf you like stir fry with one spoon of oil ¼ spoon of ginger and ¼ tea spoon of  Hot pepper . If not it is ready to be served without even stir frying.\n\nThe one shown in the picture is with 3 times water  not 5 times.',' Urad or white lentil with Dill and Ginger.','','inherit','closed','closed','','202-autosave','','','2013-06-15 21:57:18','2013-06-16 01:57:18','',202,'http://divyayogamonteregie.org/web/?p=224',0,'revision','',0),(225,1,'2013-06-15 21:52:49','2013-06-16 01:52:49','','image002','','inherit','closed','closed','','image002-3','','','2013-06-15 21:52:49','2013-06-16 01:52:49','',202,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image0022.jpg',0,'attachment','image/jpeg',0),(226,1,'2013-06-11 19:56:18','2013-06-11 23:56:18','<b><span style=\"text-decoration: underline;\"> </span></b>\r\n\r\n&nbsp;\r\n\r\nWhite lentil 250 grams\r\n\r\nWater 1250 ml (5 times of lentil)\r\n\r\nTurmeric 1 tea spoon\r\n\r\nSalt 1 ½ tea spoon or according to taste\r\n\r\nGrated Ginger 1 ½ inch\r\n\r\nFine cut well washed in deep water Dill ¼ bundle/\r\n\r\nRinse the lentil twice because you don’t know how man hands it has changed till it is in your hands.\r\n\r\nPut it on the cooker\r\n\r\nAdd salt\r\n\r\nAdd turmeric\r\n\r\nAdd water\r\n\r\nPut the cooker on stove and put it on medium heat.\r\n\r\nLit the whistle to blow for 2 minutes.\r\n\r\nWhen it cools open the cooker. Add the dill and ginger.\r\n\r\nIf you like stir fry with one spoon of oil ¼ spoon of ginger and ¼ tea spoon of  Hot pepper . If not it is ready to be served without even stir frying.\r\n\r\nThe one shown in the picture is with 3 times water  not 5 times.',' Urad or white lentil with Dill and Ginger.','','inherit','closed','closed','','202-revision-2','','','2013-06-11 19:56:18','2013-06-11 23:56:18','',202,'http://divyayogamonteregie.org/web/?p=226',0,'revision','',0),(227,1,'2013-06-15 21:53:14','2013-06-16 01:53:14','<b><span style=\"text-decoration: underline;\"> <a href=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image0022.jpg\"><img class=\"aligncenter size-medium wp-image-225\" alt=\"image002\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image0022-300x168.jpg\" width=\"300\" height=\"168\" /></a></span></b>\r\n\r\n&nbsp;\r\n\r\nWhite lentil 250 grams\r\n\r\nWater 1250 ml (5 times of lentil)\r\n\r\nTurmeric 1 tea spoon\r\n\r\nSalt 1 ½ tea spoon or according to taste\r\n\r\nGrated Ginger 1 ½ inch\r\n\r\nFine cut well washed in deep water Dill ¼ bundle/\r\n\r\nRinse the lentil twice because you don’t know how man hands it has changed till it is in your hands.\r\n\r\nPut it on the cooker\r\n\r\nAdd salt\r\n\r\nAdd turmeric\r\n\r\nAdd water\r\n\r\nPut the cooker on stove and put it on medium heat.\r\n\r\nLit the whistle to blow for 2 minutes.\r\n\r\nWhen it cools open the cooker. Add the dill and ginger.\r\n\r\nIf you like stir fry with one spoon of oil ¼ spoon of ginger and ¼ tea spoon of  Hot pepper . If not it is ready to be served without even stir frying.\r\n\r\nThe one shown in the picture is with 3 times water  not 5 times.',' Urad or white lentil with Dill and Ginger.','','inherit','closed','closed','','202-revision-3','','','2013-06-15 21:53:14','2013-06-16 01:53:14','',202,'http://divyayogamonteregie.org/web/?p=227',0,'revision','',0),(228,1,'2013-06-15 21:41:37','2013-06-16 01:41:37','<a href=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image0021.jpg\"><img class=\"aligncenter size-medium wp-image-218\" alt=\"image002\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image0021-300x141.jpg\" width=\"300\" height=\"141\" /></a>\r\n\r\n<b>Vegetarian Food- Served and shared on last Saturday of the month</b>\r\n\r\nThe vegetarian main dishes are made by Meera Trivedi bt the  members of our yoga community also bring food items/fruits etc for sharing.\r\n\r\nThe Top kind of food is raw food. Early man used to eat fruits and nuts and survived for a long time\r\n\r\nThen he invented fire and started cooking. Which gave him a different taste of the same food and he liked and ate. The cooked food value has less food value than the raw one because some of the nutritional value is lost in cooking.\r\n\r\nThe third kind of food is preserved food, in which companies add preservatives to keep its color as it is. Food need to be digested in our body not to be preserved. Even if we rinse the food its preservative are not 100% washed away. They are harmful for our system. That is why it is best to eat fresh food then to eat cooked food and avoid preserved foods which are sold for convenience.\r\n\r\nIt is good to spend time in kitchen and cook good healthy food for the family. Food should have lots of aroma. Because aroma refreshes the mind.  The aromatic herbs should be added in the food after the food is cooked for it’s full effect. We should eat least amount of salt and minimize/cut off the intake of processed sugar. Instead we should eat different types of fruits each day.','Some vegetarian recipes','','inherit','closed','closed','','190-revision-v1','','','2013-06-15 21:41:37','2013-06-16 01:41:37','',190,'http://divyayogamonteregie.org/web/?p=228',0,'revision','',0),(229,1,'2013-06-15 22:01:04','2013-06-16 02:01:04','<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image0021.jpg\"><img class=\"aligncenter  wp-image-218\" alt=\"image002\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image0021-300x141.jpg\" width=\"450\" height=\"211\" /></a></p>\r\n<b>Vegetarian Food- Served and shared on last Saturday of the month</b>\r\n\r\nThe vegetarian main dishes are made by Meera Trivedi bt the  members of our yoga community also bring food items/fruits etc for sharing.\r\n\r\nThe Top kind of food is raw food. Early man used to eat fruits and nuts and survived for a long time\r\n\r\nThen he invented fire and started cooking. Which gave him a different taste of the same food and he liked and ate. The cooked food value has less food value than the raw one because some of the nutritional value is lost in cooking.\r\n\r\nThe third kind of food is preserved food, in which companies add preservatives to keep its color as it is. Food need to be digested in our body not to be preserved. Even if we rinse the food its preservative are not 100% washed away. They are harmful for our system. That is why it is best to eat fresh food then to eat cooked food and avoid preserved foods which are sold for convenience.\r\n\r\nIt is good to spend time in kitchen and cook good healthy food for the family. Food should have lots of aroma. Because aroma refreshes the mind.  The aromatic herbs should be added in the food after the food is cooked for it’s full effect. We should eat least amount of salt and minimize/cut off the intake of processed sugar. Instead we should eat different types of fruits each day.','Some vegetarian recipes','','inherit','closed','closed','','190-revision-v1','','','2013-06-15 22:01:04','2013-06-16 02:01:04','',190,'http://divyayogamonteregie.org/web/?p=229',0,'revision','',0),(231,1,'2013-06-15 22:08:51','2013-06-16 02:08:51','<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image002.jpg\"><img class=\"aligncenter  wp-image-165\" alt=\"image002\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image002-300x168.jpg\" width=\"500\" height=\"242\" /></a></p>\r\n<strong>Ingredients:</strong>\r\n\r\n1/2 Kilo Boiled peeled and cut into 8 pieces Potato\r\n\r\n1 to 1/2 Tea spoon salt.\r\n\r\n1 tea spoon turmeric\r\n\r\n1 Tea spoon to 4 table spoon vegetable. Oil\r\n\r\n1 1/2 teaspoon cumin seed\r\n\r\nCrushed hot pepper 1 1/2 tea spoon or less\r\n\r\nAsafetida compound powder  is equal to 1 Chick pea\'s size\r\n\r\nMango Powder 2 tea spoon\r\n\r\n&nbsp;\r\n\r\nVery fine ct coriander leaves  20 grams coriander to g arnish.\r\n\r\nOr\r\n\r\nFine cut dill leaves.\r\n\r\n&nbsp;\r\n\r\nPut a pan on the stove. Add oil according to your food habit (1 tea spoon or 4 table spoon) add cumin seeds in hot oil. Let it turn brown add asafetida and add turmeric and jt let is turn its color a bit. Then  put all the potato in that. Add salt, red hot crushed pepper and fine cut coriander and mix with light hand till everything is uniformly colored.\r\n\r\nYour salad is ready to serve.','Spicy potato salad or Aloo bhujiya ','','inherit','closed','closed','','192-revision-4','','','2013-06-15 22:08:51','2013-06-16 02:08:51','',192,'http://divyayogamonteregie.org/web/?p=231',0,'revision','',0),(232,1,'2013-06-15 22:10:39','2013-06-16 02:10:39','&nbsp;\n\n<a href=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image006.jpg\"><img class=\"aligncenter size-medium wp-image-167\" alt=\"image006\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image006-300x168.jpg\" width=\"300\" height=\"168\" /></a>\n\n&nbsp;\n\n&nbsp;\n\nProtein is best in raw form So sprouted salad is the best salad.\n\n50 Grams of whole yellow lentil\n\n50 Grams of whole red lentil\n\n50 Grams of whole green lentil\n\n50 Grams of red kidney beans\n\n50 Grams of Chick peas\n\n50 grams of Bengal gram\n\n50 grams of Almond\n\n50 grams of black beans\n\n200 grams of raisins\n\nCoriander leaves ¼ of the bunch.\n\nadd as many grains you like. Measure the total with a measuring cup and estimate the amount. Because it swells up 3 times after sprouting.. So reduce or add the amount you will need at the end.\n\nAll the grains except raisins in 1.1/2 times of grains volume in water. Change the water after 12 hours.   After24 hours  put them in a wet towel and cover them from all around in a manner so that there is little bit of pressure on them too . put this whole thing is a pot.\n\nIf possible keep the pot at a dark place as seeds germinate in dark under the soil so just don’t put them at a well lighted area. Keep them rinsing after 12 hours.  In this way you are providing them fresh water and cleaning if any mucilaginous growth is starting. For good sprouting it is necessary. But if you forget for 36 hours too it is ok.\n\nAccording to season and temperature of your home. It will be well  sprouted within 4 to 7 days.  Depends on how long sprout do you want. In summer if you soak in water on Wednesday you will get good sprouted grains on Saturday morning. But in winter if you do on Monday Morning you will get on Saturday Morning.\n\nWhen it is sprouted the way you want rinse the raisins and mix them with the sprouted grains. And add the coriander levees after cutting very fine. You can add a few drops of fresh lemon juice too.\n\nFor fast sprouting in winter you can put your pot above the fridge.\n\nAnother way of eating the sprouted grains is cut one onion very fine  and mix them. Add a little bit of salt and few drops of fresh lemon juice. You can add coriander leaves but not resins.','Sprouted multi grain Salad','','inherit','closed','closed','','194-autosave','','','2013-06-15 22:10:39','2013-06-16 02:10:39','',194,'http://divyayogamonteregie.org/web/?p=232',0,'revision','',0),(233,1,'2013-06-10 21:56:22','2013-06-11 01:56:22','Protein is best in raw form So sprouted salad is the best salad.\r\n\r\n50 Grams of whole yellow lentil\r\n\r\n50 Grams of whole red lentil\r\n\r\n50 Grams of whole green lentil\r\n\r\n50 Grams of red kidney beans\r\n\r\n50 Grams of Chick peas\r\n\r\n50 grams of Bengal gram\r\n\r\n50 grams of Almond\r\n\r\n50 grams of black beans\r\n\r\n200 grams of raisins\r\n\r\nCoriander leaves ¼ of the bunch.\r\n\r\nadd as many grains you like. Measure the total with a measuring cup and estimate the amount. Because it swells up 3 times after sprouting.. So reduce or add the amount you will need at the end.\r\n\r\nAll the grains except raisins in 1.1/2 times of grains volume in water. Change the water after 12 hours.   After24 hours  put them in a wet towel and cover them from all around in a manner so that there is little bit of pressure on them too . put this whole thing is a pot.\r\n\r\nIf possible keep the pot at a dark place as seeds germinate in dark under the soil so just don’t put them at a well lighted area. Keep them rinsing after 12 hours.  In this way you are providing them fresh water and cleaning if any mucilaginous growth is starting. For good sprouting it is necessary. But if you forget for 36 hours too it is ok.\r\n\r\nAccording to season and temperature of your home. It will be well  sprouted within 4 to 7 days.  Depends on how long sprout do you want. In summer if you soak in water on Wednesday you will get good sprouted grains on Saturday morning. But in winter if you do on Monday Morning you will get on Saturday Morning.\r\n\r\nWhen it is sprouted the way you want rinse the raisins and mix them with the sprouted grains. And add the coriander levees after cutting very fine. You can add a few drops of fresh lemon juice too.\r\n\r\nFor fast sprouting in winter you can put your pot above the fridge.\r\n\r\nAnother way of eating the sprouted grains is cut one onion very fine  and mix them. Add a little bit of salt and few drops of fresh lemon juice. You can add coriander leaves but not resins.','Sprouted multi grain Salad','','inherit','closed','closed','','194-revision-2','','','2013-06-10 21:56:22','2013-06-11 01:56:22','',194,'http://divyayogamonteregie.org/web/?p=233',0,'revision','',0),(234,1,'2013-06-15 22:12:43','2013-06-16 02:12:43','<a href=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image008.jpg\"><img class=\"aligncenter size-medium wp-image-163\" alt=\"image008\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image008-300x168.jpg\" width=\"300\" height=\"168\" /></a>\n\n&nbsp;\n\n<span style=\"text-decoration: underline;\"><em><strong>Ingredients:-</strong></em></span>\n\n1 cup of Basmati rice\n\n2 cups of water\n\n1 ½ tea spoon of salt\n\n100 Grams of roasted Cashew nuts\n\n2 big  peeled potato\n\n½ Cauliflower\n\n2 big peeled Carrot\n\n1 Cup of green frozen  peas\n\n½ tea spoon of Cumin seeds\n\n3-4 Red dried hot pepper cut into small pieces.\n\n1 teaspoon of Turmeric\n\n2 Table Spoon of oil\n\n1 pinch of Asephatida compound\n\n½ bunch of coriander leaves.\n\n&nbsp;\n\nCut cauliflower, carrot and potato  into bite size and rinse them thoroughly.\n\nCut the coriander into fine pieces and rinse then in deep water because it contains soil and sands in deep water the soil and settle and the leaves will float on the surface.\n\nRinse two times basmati rice 2 times thoroughly. To remove excess of starch.\n\n&nbsp;\n\nPut pan on the stove.\n\nAdd oil into the pan.\n\nPut the stove into 6\n\nAdd cumin seeds into the oil. When it turns a little bit of brown add asaphatida and red hot dried pepper. Till now the cumin seeds have to be dark brown. Now add turmeric and stir it and add vegetables except peas and coriander. Stir it and add rice, salt, cashew nuts and 2 cups of water.\n\n&nbsp;\n\nTurn the stove to high and cover it with the lid and let it come to the boil. When it comes to boil turn it to 7. When you see that these is not water in the bottom. Turn it off and cover it . 5 minutes after use the fork to loosen the rice and let the extra vapor go away so that each grain of rice stays separate. Now add frozen peas and  coriander and keep your pot half covered so that The green color stays green.\n\n&nbsp;\n\nYour taharee is ready to be served.\n\nIF you like you can add  cut black olives. They will give a nice color to your Taharee.\n\n&nbsp;\n\nFood has 4 functions.\n\n1. Fill your stomach.\n\n2. Give you energy\n\n3. Make you happy by look &amp;\n\n4. Refresh your mood by aroma\n\nLet me know if your family started eating in happy mood or not?','Taharee or Stir Fried rice','','inherit','closed','closed','','200-autosave','','','2013-06-15 22:12:43','2013-06-16 02:12:43','',200,'http://divyayogamonteregie.org/web/?p=234',0,'revision','',0),(235,1,'2013-06-11 19:52:54','2013-06-11 23:52:54','<span style=\"text-decoration: underline;\"><em><strong>Ingredients:-</strong></em></span>\r\n\r\n1 cup of Basmati rice\r\n\r\n2 cups of water\r\n\r\n1 ½ tea spoon of salt\r\n\r\n100 Grams of roasted Cashew nuts\r\n\r\n2 big  peeled potato\r\n\r\n½ Cauliflower\r\n\r\n2 big peeled Carrot\r\n\r\n1 Cup of green frozen  peas\r\n\r\n½ tea spoon of Cumin seeds\r\n\r\n3-4 Red dried hot pepper cut into small pieces.\r\n\r\n1 teaspoon of Turmeric\r\n\r\n2 Table Spoon of oil\r\n\r\n1 pinch of Asephatida compound\r\n\r\n½ bunch of coriander leaves.\r\n\r\n&nbsp;\r\n\r\nCut cauliflower, carrot and potato  into bite size and rinse them thoroughly.\r\n\r\nCut the coriander into fine pieces and rinse then in deep water because it contains soil and sands in deep water the soil and settle and the leaves will float on the surface.\r\n\r\nRinse two times basmati rice 2 times thoroughly. To remove excess of starch.\r\n\r\n&nbsp;\r\n\r\nPut pan on the stove.\r\n\r\nAdd oil into the pan.\r\n\r\nPut the stove into 6\r\n\r\nAdd cumin seeds into the oil. When it turns a little bit of brown add asaphatida and red hot dried pepper. Till now the cumin seeds have to be dark brown. Now add turmeric and stir it and add vegetables except peas and coriander. Stir it and add rice, salt, cashew nuts and 2 cups of water.\r\n\r\n&nbsp;\r\n\r\nTurn the stove to high and cover it with the lid and let it come to the boil. When it comes to boil turn it to 7. When you see that these is not water in the bottom. Turn it off and cover it . 5 minutes after use the fork to loosen the rice and let the extra vapor go away so that each grain of rice stays separate. Now add frozen peas and  coriander and keep your pot half covered so that The green color stays green.\r\n\r\n&nbsp;\r\n\r\nYour taharee is ready to be served.\r\n\r\nIF you like you can add  cut black olives. They will give a nice color to your Taharee.\r\n\r\n&nbsp;\r\n\r\nFood has 4 functions.\r\n\r\n1. Fill your stomach.\r\n\r\n2. Give you energy\r\n\r\n3. Make you happy by look &amp;\r\n\r\n4. Refresh your mood by aroma\r\n\r\nLet me know if your family started eating in happy mood or not?','Taharee or Stir Fried rice','','inherit','closed','closed','','200-revision-2','','','2013-06-11 19:52:54','2013-06-11 23:52:54','',200,'http://divyayogamonteregie.org/web/?p=235',0,'revision','',0),(236,1,'2013-06-15 23:18:25','2013-06-16 03:18:25','&nbsp;\n\n<b> The word Chatni is made from the verb Chatna which means l</b><b>ic</b>k. It is eaten in small amount because mostly chatni or sauces are made with lemon juice <b>so to </b><b>subsidies</b> the sour taste we have to add more salt. That is why its l<b>ic</b>king is better in <b>comparison</b> of eating in large quantity.\n\n<span style=\"text-decoration: underline;\"><strong>1. Onion Sauce.</strong></span>\n\n<strong><span style=\"text-decoration: underline;\">Ingredients</span> </strong>\n\n2 onions\n3 Lemon juice\n1/2 tea spoon salt or according to your taste\n4 Red hot peppers.\n\nAfter peeling and cutting blend all the things into along with the lemon juice\nextracted from 3 lemons. Your sauce is ready to serve.\n\n<b><span style=\"text-decoration: underline;\">2. Mango Sauce</span></b>\n\n4 big mangoes ( green pr little bit ripening)\n4 Hot green peppers\n1 tea spoon of salt\n4 table spoon of olive oil\n\nPeel the mangoes and take out the seed. put in the blender. Add all other ingredients except oil. Blend it well. Put in a bottle. Add olive oil.\nYou can add mint into this to give a nice flavor.\nIf mangoes are totally green you can add little bit of sugar.\n\n<b><span style=\"text-decoration: underline;\">3. Peanut Sauce.\n</span></b>\n\n<b><span style=\"text-decoration: underline;\"><a href=\"http://www.youtube.com/watch?v=7Uqa8RTJrHM\">http://www.youtube.com/watch?v=7Uqa8RTJrHM</a></span></b>\n\n4 table spoon of peanuts\n1/2 tea spoon of salt\n8 tablespoon of natural plain yogurt\n3 red peppers or 1/2 tea spoon of red pepper powder.\n\nBlend them in blender like fine paste. Your sauce is ready to serve.\n\n<b><span style=\"text-decoration: underline;\">4. Coriander sauce\n</span></b>\n\n<b><span style=\"text-decoration: underline;\"><a href=\"http://www.youtube.com/watch?v=4IZFNI1rGrE\">http://www.youtube.com/watch?v=4IZFNI1rGrE</a>\n</span></b>\n1 bunch of coriander leaves well cut and washed.\n3-4 hot pepper\n\n2-3 fresh big lemons juice\n1/2 tea spoon of Salt\n\nblend salt, coriander leaves, and lemon juice in blender. If you feel bitter you\ncan add more lemon in it.\nYour sauce is ready to serve.\n\nCoriander is antiseptic. and fresh lemon is good for proper functioning of\nKidney But sauces are not to be eaten regularly and in large amount because with the lemon we have to add lots of salt which is not good. This kind of sauce you can keep for a week in your refrigerator.\n\n<b><span style=\"text-decoration: underline;\"> 5. Yogourt sauce</span></b>\n\n<a href=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image014.jpg\"><img class=\"aligncenter size-medium wp-image-164\" alt=\"image014\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image014-300x168.jpg\" width=\"300\" height=\"168\" /></a>\n<p style=\"text-align: center;\"></p>\n<b></b>½ l of  plain yogourt\n\n¼ tea spoon of salt\n\n¼   tea spoon of Red hot pepper powder\n\n¼ tea spoon of roasted cumin seeds powder\n\n&nbsp;\n\n&nbsp;\n\nWhen you have no sauce and you need sauce to eat with any thing This is the quickest sauce to be prepared at home.\n\n&nbsp;\n\nOn  stove put pan and add 100 grams of cumin seeds. Put the stove on medium. The seeds will start producing sound keep on stirring them when they turn brown. Stop roasting them wait for 5 minutes to cook down . Now blend them. Keep them in salt and pepper shaker for everyday use. Always keep roasted cumin seeds powder along with salt and pepper shaker\n\n&nbsp;\n\nThis is the healthiest sauce you can make within 5 minutes.\n\n&nbsp;\n\nAdd salt roasted cumin seeds powder red pepper powder in the yougurt  mix them and your sauce is ready  .\n\n&nbsp;\n\n&nbsp;\n\n<b>6. Mint sauce or chatni</b>\n\n&nbsp;\n\n<a href=\"http://www.youtube.com/watch?v=gLwHF7OdeY0\">http://www.youtube.com/watch?v=gLwHF7OdeY0</a>\n\nOne pack of well washed Mint leaves.\n\n2 lemons\n\n4 hot pepper\n\n1 tea spoon salt.\n\nAll blend together your sauce is ready to refresh your mood and increase your hunger.','Different  kind of fresh aromatic sauses or chatni','','inherit','closed','closed','','213-autosave','','','2013-06-15 23:18:25','2013-06-16 03:18:25','',213,'http://divyayogamonteregie.org/web/?p=236',0,'revision','',0),(237,1,'2013-06-15 22:09:13','2013-06-16 02:09:13','<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image002.jpg\"><img class=\"aligncenter  wp-image-165\" alt=\"image002\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image002-300x168.jpg\" width=\"500\" height=\"242\" /></a></p>\r\n<strong>Ingredients:</strong>\r\n\r\n1/2 Kilo Boiled peeled and cut into 8 pieces Potato\r\n\r\n1 to 1/2 Tea spoon salt.\r\n\r\n1 tea spoon turmeric\r\n\r\n1 Tea spoon to 4 table spoon vegetable. Oil\r\n\r\n1 1/2 teaspoon cumin seed\r\n\r\nCrushed hot pepper 1 1/2 tea spoon or less\r\n\r\nAsafetida compound powder  is equal to 1 Chick pea\'s size\r\n\r\nMango Powder 2 tea spoon\r\n\r\n&nbsp;\r\n\r\nVery fine ct coriander leaves  20 grams coriander to g arnish.\r\n\r\nOr\r\n\r\nFine cut dill leaves.\r\n\r\n&nbsp;\r\n\r\nPut a pan on the stove. Add oil according to your food habit (1 tea spoon or 4 table spoon) add cumin seeds in hot oil. Let it turn brown add asafetida and add turmeric and jt let is turn its color a bit. Then  put all the potato in that. Add salt, red hot crushed pepper and fine cut coriander and mix with light hand till everything is uniformly colored.\r\n\r\nYour salad is ready to serve.','Spicy potato salad or Aloo bhujiya ','','inherit','closed','closed','','192-revision-5','','','2013-06-15 22:09:13','2013-06-16 02:09:13','',192,'http://divyayogamonteregie.org/web/?p=237',0,'revision','',0),(471,1,'2013-06-15 22:28:27','2013-06-16 02:28:27','<h2 align=\"center\"><span style=\"color: #0000ff;\"><em><strong>Believe in Yourself,and Remember that Anything Is Possible</strong></em></span></h2>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">Believe in what makes you feel good.</span>\r\n<span style=\"color: #0000ff;\"> Believe in what makes you happy.</span>\r\n<span style=\"color: #0000ff;\"> Believe in the dreams you\'ve always wanted to come true,</span>\r\n<span style=\"color: #0000ff;\"> and give them every chance to.</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">Life holds no promises to what will come your way.</span>\r\n<span style=\"color: #0000ff;\"> You must search for your own ideals</span>\r\n<span style=\"color: #0000ff;\"> and work towards reaching them.</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">Life makes no guarantees as to what you\'ll have.</span>\r\n<span style=\"color: #0000ff;\"> It just gives you time to make choices</span>\r\n<span style=\"color: #0000ff;\"> and to take chances</span>\r\n<span style=\"color: #0000ff;\"> and to discover whatever secrets might come your way.</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">If you are willing to take the opportunities you are given</span>\r\n<span style=\"color: #0000ff;\"> and utilize the abilities you have,</span>\r\n<span style=\"color: #0000ff;\"> you will constantly fill your life</span>\r\n<span style=\"color: #0000ff;\"> with special moments and unforgettable times.</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">No one knows the mysteries of life or its ultimate meaning,</span>\r\n<span style=\"color: #0000ff;\"> but for those who are willing</span>\r\n<span style=\"color: #0000ff;\"> to believe in their dreams and in themselves,</span>\r\n<span style=\"color: #0000ff;\"> life is a precious gift in which anything is possible.</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">~ Dena DiIaconi ~</span></p>','Anything Is Possible','','inherit','closed','closed','','53-revision-v1','','','2013-06-15 22:28:27','2013-06-16 02:28:27','',53,'http://divyayogamonteregie.org/web/?p=471',0,'revision','',0),(239,1,'2013-05-09 07:23:52','2013-05-09 11:23:52','<p align=\"center\">Believe in Yourself,and Remember that Anything Is Possible</p>\r\n<p align=\"center\">Believe in what makes you feel good.\r\nBelieve in what makes you happy.\r\nBelieve in the dreams you\'ve always wanted to come true,\r\nand give them every chance to.</p>\r\n<p align=\"center\">Life holds no promisesas to what will come your way.\r\nYou must search for your own ideals\r\nand work towards reaching them.</p>\r\n<p align=\"center\">Life makes no guarantees as to what you\'ll have.\r\nIt just gives you time to make choices\r\nand to take chances\r\nand to discover whatever secrets might come your way.</p>\r\n<p align=\"center\">If you are willing to take the opportunities you are given\r\nand utilize the abilities you have,\r\nyou will constantly fill your life\r\nwith special moments and unforgettable times.</p>\r\n<p align=\"center\">No one knows the mysteries of life or its ultimate meaning,\r\nbut for those who are willing\r\nto believe in their dreams and in themselves,\r\nlife is a precious gift in which anything is possible.</p>\r\n<p align=\"center\">~ Dena DiIaconi ~</p>','Anything Is Possible','','inherit','closed','closed','','53-revision-v1','','','2013-05-09 07:23:52','2013-05-09 11:23:52','',53,'http://divyayogamonteregie.org/web/?p=239',0,'revision','',0),(240,1,'2013-05-09 07:27:22','2013-05-09 11:27:22','<p align=\"center\"><strong>You Can Be Whatever </strong>\r\n<strong> You Want To Be!</strong></p>\r\n<p align=\"center\">There is inside you\r\nall of the potential\r\nto be whatever you want to be,\r\nall of the energy\r\nto do whatever you want to do.</p>\r\n<p align=\"center\">Imagine yourself as you would like to be,\r\ndoing what you want to do,\r\nand each day, take one step\r\ntowards your dream.</p>\r\n<p align=\"center\">And though at times it may seem too\r\ndifficult to continue,\r\nhold on to your dream.</p>\r\n<p align=\"center\">One morning you will awake to find\r\nthat you are the person you dreamed of,\r\ndoing what you wanted to do,\r\nsimply because you had the courage\r\nto believe in your potential\r\nand to hold on to your dream</p>','Be Whatever  You Want To Be !','','inherit','closed','closed','','59-revision-2','','','2013-05-09 07:27:22','2013-05-09 11:27:22','',59,'http://divyayogamonteregie.org/web/?p=240',0,'revision','',0),(242,1,'2013-06-15 22:30:49','2013-06-16 02:30:49','<p align=\"center\"><span style=\"color: #0000ff;\"><strong>You Can Be Whatever </strong></span>\r\n<span style=\"color: #0000ff;\"> <strong> You Want To Be!</strong></span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">There is inside you</span>\r\n<span style=\"color: #0000ff;\"> all of the potential</span>\r\n<span style=\"color: #0000ff;\"> to be whatever you want to be,</span>\r\n<span style=\"color: #0000ff;\"> all of the energy</span>\r\n<span style=\"color: #0000ff;\"> to do whatever you want to do.</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">Imagine yourself as you would like to be,</span>\r\n<span style=\"color: #0000ff;\"> doing what you want to do,</span>\r\n<span style=\"color: #0000ff;\"> and each day, take one step</span>\r\n<span style=\"color: #0000ff;\"> towards your dream.</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">And though at times it may seem too</span>\r\n<span style=\"color: #0000ff;\"> difficult to continue,</span>\r\n<span style=\"color: #0000ff;\"> hold on to your dream.</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">One morning you will awake to find</span>\r\n<span style=\"color: #0000ff;\"> that you are the person you dreamed of,</span>\r\n<span style=\"color: #0000ff;\"> doing what you wanted to do,</span>\r\n<span style=\"color: #0000ff;\"> simply because you had the courage</span>\r\n<span style=\"color: #0000ff;\"> to believe in your potential</span>\r\n<span style=\"color: #0000ff;\"> and to hold on to your dream</span></p>','Be Whatever  You Want To Be !','','inherit','closed','closed','','59-revision-4','','','2013-06-15 22:30:49','2013-06-16 02:30:49','',59,'http://divyayogamonteregie.org/web/?p=242',0,'revision','',0),(241,1,'2013-06-15 22:30:01','2013-06-16 02:30:01','<p align=\"center\"><span style=\"color: #0000ff;\"><strong>You Can Be Whatever </strong></span>\r\n<span style=\"color: #0000ff;\"> <strong> You Want To Be!</strong></span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">There is inside you</span>\r\n<span style=\"color: #0000ff;\"> all of the potential</span>\r\n<span style=\"color: #0000ff;\"> to be whatever you want to be,</span>\r\n<span style=\"color: #0000ff;\"> all of the energy</span>\r\n<span style=\"color: #0000ff;\"> to do whatever you want to do.</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">Imagine yourself as you would like to be,</span>\r\n<span style=\"color: #0000ff;\"> doing what you want to do,</span>\r\n<span style=\"color: #0000ff;\"> and each day, take one step</span>\r\n<span style=\"text-decoration: underline;\"><strong><span style=\"color: #0000ff; text-decoration: underline;\"> towards your dream.</span></strong></span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">And though at times it may seem too</span>\r\n<span style=\"color: #0000ff;\"> difficult to continue,</span>\r\n<span style=\"color: #0000ff;\"> hold on to your dream.</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">One morning you will awake to find</span>\r\n<span style=\"color: #0000ff;\"> that you are the person you dreamed of,</span>\r\n<span style=\"color: #0000ff;\"> doing what you wanted to do,</span>\r\n<span style=\"color: #0000ff;\"> simply because you had the courage</span>\r\n<span style=\"color: #0000ff;\"> to believe in your potential</span>\r\n<span style=\"color: #0000ff;\"> and to hold on to your dream</span></p>','Be Whatever  You Want To Be !','','inherit','closed','closed','','59-revision-3','','','2013-06-15 22:30:01','2013-06-16 02:30:01','',59,'http://divyayogamonteregie.org/web/?p=241',0,'revision','',0),(243,1,'2013-06-15 22:42:39','2013-06-16 02:42:39','<p align=\"center\"><span style=\"color: #0000ff;\"><strong>You Can Be Whatever </strong></span>\r\n<span style=\"color: #0000ff;\"> <strong> You Want To Be!</strong></span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">There is inside you</span>\r\n<span style=\"color: #0000ff;\"> all of the potential</span>\r\n<span style=\"color: #0000ff;\"> to be whatever you want to be,</span>\r\n<span style=\"color: #0000ff;\"> all of the energy</span>\r\n<span style=\"color: #0000ff;\"> to do whatever you want to do.</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">Imagine yourself as you would like to be,</span>\r\n<span style=\"color: #0000ff;\"> doing what you want to do,</span>\r\n<span style=\"color: #0000ff;\"> and each day, take one step</span>\r\n<span style=\"color: #0000ff;\"> towards your dream.</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">And though at times it may seem too</span>\r\n<span style=\"color: #0000ff;\"> difficult to continue,</span>\r\n<span style=\"color: #0000ff;\"> hold on to your dream.</span></p>\r\n<p align=\"center\"><span style=\"color: #0000ff;\">One morning you will awake to find</span>\r\n<span style=\"color: #0000ff;\"> that you are the person you dreamed of,</span>\r\n<span style=\"color: #0000ff;\"> doing what you wanted to do,</span>\r\n<span style=\"color: #0000ff;\"> simply because you had the courage</span>\r\n<span style=\"color: #0000ff;\"> to believe in your potential</span>\r\n<span style=\"color: #0000ff;\"> and to hold on to your dream</span></p>','Be Whatever  You Want To Be !','','inherit','closed','closed','','59-revision-5','','','2013-06-15 22:42:39','2013-06-16 02:42:39','',59,'http://divyayogamonteregie.org/web/?p=243',0,'revision','',0),(244,1,'2013-06-11 20:01:33','2013-06-12 00:01:33','<b>Organic  Salad</b>\r\n\r\n1 box of Organic Salad\r\n\r\n5-6 Artichoke bottom\r\n\r\n1  pack Cherry Tomato\r\n\r\nHalf onion cut round and each ring separated.\r\n\r\nAlmond oil  2 tea spoon\r\n\r\nBlack pepper 1 tea spoon\r\n\r\nSalt ½ tea spoon\r\n\r\nAlmond chips 2 table spoon\r\n\r\nSalary bite size cut 1 cup\r\n\r\nRed pigment 1\r\n\r\nYellow pigment 1   <a href=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image012.jpg\"><img class=\"aligncenter size-medium wp-image-169\" alt=\"Organic Salad\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image012-300x168.jpg\" width=\"300\" height=\"168\" /></a>\r\n\r\nRinse the Salad twice in deep water.  (It is necessary to rinse the organic salad or organic food because organic manure is  generally made by animal dung or raw food). Put it on a towel for 5 minutes and cover it with all sides  So that extra water is absorbed by the towel. Add all the other ingredients in a bowl . The salad is ready to serve.','Organic Salad','','inherit','closed','closed','','204-revision-4','','','2013-06-11 20:01:33','2013-06-12 00:01:33','',204,'http://divyayogamonteregie.org/web/?p=244',0,'revision','',0),(246,1,'2013-06-15 22:57:10','2013-06-16 02:57:10','<p style=\"text-align: center;\"><span style=\"color: #008000;\"><em><span style=\"text-decoration: underline;\">Organic  Salad</span></em></span></p>\r\n<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image012.jpg\"><img class=\"aligncenter  wp-image-169\" alt=\"Organic Salad\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image012-300x168.jpg\" width=\"600\" height=\"336\" /></a></p>\r\n&nbsp;\r\n\r\n1 box of Organic Salad\r\n\r\n5-6 Artichoke bottom\r\n\r\n1  pack Cherry Tomato\r\n\r\nHalf onion cut round and each ring separated.\r\n\r\nAlmond oil  2 tea spoon\r\n\r\nBlack pepper 1 tea spoon\r\n\r\nSalt ½ tea spoon\r\n\r\nAlmond chips 2 table spoon\r\n\r\nSalary bite size cut 1 cup\r\n\r\nRed pigment 1\r\n\r\nYellow pigment 1\r\n\r\nRinse the Salad twice in deep water.  (It is necessary to rinse the organic salad or organic food because organic manure is  generally made by animal dung or raw food). Put it on a towel for 5 minutes and cover it with all sides  So that extra water is absorbed by the towel. Add all the other ingredients in a bowl . The salad is ready to serve.','Organic Salad','','inherit','closed','closed','','204-revision-6','','','2013-06-15 22:57:10','2013-06-16 02:57:10','',204,'http://divyayogamonteregie.org/web/?p=246',0,'revision','',0),(245,1,'2013-06-15 22:55:11','2013-06-16 02:55:11','<b>Organic  Salad</b>\r\n\r\n<a href=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image012.jpg\"><img class=\"aligncenter size-medium wp-image-169\" alt=\"Organic Salad\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image012-300x168.jpg\" width=\"300\" height=\"168\" /></a>\r\n\r\n&nbsp;\r\n\r\n1 box of Organic Salad\r\n\r\n5-6 Artichoke bottom\r\n\r\n1  pack Cherry Tomato\r\n\r\nHalf onion cut round and each ring separated.\r\n\r\nAlmond oil  2 tea spoon\r\n\r\nBlack pepper 1 tea spoon\r\n\r\nSalt ½ tea spoon\r\n\r\nAlmond chips 2 table spoon\r\n\r\nSalary bite size cut 1 cup\r\n\r\nRed pigment 1\r\n\r\nYellow pigment 1   <a href=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image012.jpg\"><img class=\"aligncenter size-medium wp-image-169\" alt=\"Organic Salad\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image012-300x168.jpg\" width=\"300\" height=\"168\" /></a>\r\n\r\nRinse the Salad twice in deep water.  (It is necessary to rinse the organic salad or organic food because organic manure is  generally made by animal dung or raw food). Put it on a towel for 5 minutes and cover it with all sides  So that extra water is absorbed by the towel. Add all the other ingredients in a bowl . The salad is ready to serve.','Organic Salad','','inherit','closed','closed','','204-revision-5','','','2013-06-15 22:55:11','2013-06-16 02:55:11','',204,'http://divyayogamonteregie.org/web/?p=245',0,'revision','',0),(249,1,'2013-06-15 23:16:22','2013-06-16 03:16:22','&nbsp;\r\n\r\n<b> The word Chatni is made from the verb Chatna which means l</b><b>ic</b>k. It is eaten in small amount because mostly chatni or sauces are made with lemon juice <b>so to </b><b>subsidies</b> the sour taste we have to add more salt. That is why its l<b>ic</b>king is better in <b>comparison</b> of eating in large quantity.\r\n\r\n<span style=\"text-decoration: underline;\"><strong>1. Onion Sauce.</strong></span>\r\n\r\n<strong><span style=\"text-decoration: underline;\">Ingredients</span> </strong>\r\n\r\n2 onions\r\n3 Lemon juice\r\n1/2 tea spoon salt or according to your taste\r\n4 Red hot peppers.\r\n\r\nAfter peeling and cutting blend all the things into along with the lemon juice\r\nextracted from 3 lemons. Your sauce is ready to serve.\r\n\r\n<b><span style=\"text-decoration: underline;\">2. Mango Sauce</span></b>\r\n\r\n4 big mangoes ( green pr little bit ripening)\r\n4 Hot green peppers\r\n1 tea spoon of salt\r\n4 table spoon of olive oil\r\n\r\nPeel the mangoes and take out the seed. put in the blender. Add all other ingredients except oil. Blend it well. Put in a bottle. Add olive oil.\r\nYou can add mint into this to give a nice flavor.\r\nIf mangoes are totally green you can add little bit of sugar.\r\n\r\n<b><span style=\"text-decoration: underline;\">3. Peanut Sauce.</span></b>\r\n\r\n<b><span style=\"text-decoration: underline;\"> </span></b>\r\n\r\n<b><span style=\"text-decoration: underline;\"><a href=\"http://www.youtube.com/watch?v=7Uqa8RTJrHM\">http://www.youtube.com/watch?v=7Uqa8RTJrHM</a> </span></b>\r\n\r\n&nbsp;\r\n\r\n4 table spoon of peanuts\r\n1/2 tea spoon of salt\r\n8 tablespoon of natural plain yogurt\r\n3 red peppers or 1/2 tea spoon of red pepper powder.\r\n\r\nBlend them in blender like fine paste. Your sauce is ready to serve.\r\n\r\n<b><span style=\"text-decoration: underline;\">4. Coriander sauce</span></b>\r\n\r\n<b><span style=\"text-decoration: underline;\"> </span></b>\r\n\r\n<b><span style=\"text-decoration: underline;\"><a href=\"http://www.youtube.com/watch?v=4IZFNI1rGrE\">http://www.youtube.com/watch?v=4IZFNI1rGrE</a>\r\n</span></b>\r\n1 bunch of coriander leaves well cut and washed.\r\n3-4 hot pepper\r\n\r\n2-3 fresh big lemons juice\r\n1/2 tea spoon of Salt\r\n\r\nblend salt, coriander leaves, and lemon juice in blender. If you feel bitter you\r\ncan add more lemon in it.\r\nYour sauce is ready to serve.\r\n\r\nCoriander is antiseptic. and fresh lemon is good for proper functioning of\r\nKidney But sauces are not to be eaten regularly and in large amount because with the lemon we have to add lots of salt which is not good. This kind of sauce you can keep for a week in\r\nyour refrigerator.\r\n\r\n<b><span style=\"text-decoration: underline;\"> </span></b>\r\n\r\n<b><span style=\"text-decoration: underline;\">5. Yogourt sauce</span></b>\r\n<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image014.jpg\"><img class=\"aligncenter  wp-image-164\" alt=\"image014\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image014-300x168.jpg\" width=\"600\" height=\"336\" /></a></p>\r\n&nbsp;\r\n\r\n<b><span style=\"text-decoration: underline;\"> </span></b>½ l of  plain yogourt\r\n\r\n¼ tea spoon of salt\r\n\r\n¼   tea spoon of Red hot pepper powder\r\n\r\n¼ tea spoon of roasted cumin seeds powder\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nWhen you have no sauce and you need sauce to eat with any thing This is the quickest sauce to be prepared at home.\r\n\r\n&nbsp;\r\n\r\nOn  stove put pan and add 100 grams of cumin seeds. Put the stove on medium. The seeds will start producing sound keep on stirring them when they turn brown. Stop roasting them wait for 5 minutes to cook down . Now blend them. Keep them in salt and pepper shaker for everyday use. Always keep roasted cumin seeds powder along with salt and pepper shaker\r\n\r\n&nbsp;\r\n\r\nThis is the healthiest sauce you can make within 5 minutes.\r\n\r\n&nbsp;\r\n\r\nAdd salt roasted cumin seeds powder red pepper powder in the yougurt  mix them and your sauce is ready  .\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<b>6. Mint sauce or chatni</b>\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://www.youtube.com/watch?v=gLwHF7OdeY0\">http://www.youtube.com/watch?v=gLwHF7OdeY0</a>\r\n\r\nOne pack of well washed Mint leaves.\r\n\r\n2 lemons\r\n\r\n4 hot pepper\r\n\r\n1 tea spoon salt.\r\n\r\nAll blend together your sauce is ready to refresh your mood and increase your hunger.','Different  kind of fresh aromatic sauses or chatni','','inherit','closed','closed','','213-revision-4','','','2013-06-15 23:16:22','2013-06-16 03:16:22','',213,'http://divyayogamonteregie.org/web/?p=249',0,'revision','',0),(247,1,'2013-06-11 20:27:54','2013-06-12 00:27:54','&nbsp;\r\n\r\n<b> The word Chatni is made from the verb Chatna which means l</b><b>ic</b>k. It is eaten in small amount because mostly chatni or sauces are made with lemon juice <b>so to </b><b>subsidies</b> the sour taste we have to add more salt. That is why its l<b>ic</b>king is better in <b>comparison</b> of eating in large quantity. \r\n\r\n<span style=\"text-decoration: underline;\"><strong>1. Onion Sauce.</strong></span>\r\n\r\n<strong><span style=\"text-decoration: underline;\">Ingredients</span> </strong>\r\n\r\n2 onions\r\n3 Lemon juice\r\n1/2 tea spoon salt or according to your taste\r\n4 Red hot peppers.\r\n\r\n\r\nAfter peeling and cutting blend all the things into along with the lemon juice\r\nextracted from 3 lemons. Your sauce is ready to serve.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<b><span style=\"text-decoration: underline;\">2. Mango Sauce</span></b>\r\n\r\n4 big mangoes ( green pr little bit ripening)\r\n4 Hot green peppers\r\n1 tea spoon of salt\r\n4 table spoon of olive oil\r\n\r\nPeel the mangoes and take out the seed. put in the blender. Add all other ingredients except oil. Blend it well. Put in a bottle. Add olive oil.\r\nYou can add mint into this to give a nice flavor.\r\nIf mangoes are totally green you can add little bit of sugar.\r\n\r\n<b><span style=\"text-decoration: underline;\">3. Peanut Sauce.</span></b>\r\n\r\n<b><span style=\"text-decoration: underline;\"> </span></b>\r\n\r\n<b><span style=\"text-decoration: underline;\"><a href=\"http://www.youtube.com/watch?v=7Uqa8RTJrHM\">http://www.youtube.com/watch?v=7Uqa8RTJrHM</a> </span></b>\r\n\r\n&nbsp;\r\n\r\n4 table spoon of peanuts\r\n1/2 tea spoon of salt\r\n8 tablespoon of natural plain yogurt\r\n3 red peppers or 1/2 tea spoon of red pepper powder.\r\n\r\nBlend them in blender like fine paste. Your sauce is ready to serve.\r\n\r\n<b><span style=\"text-decoration: underline;\">4. Coriander sauce</span></b>\r\n\r\n<b><span style=\"text-decoration: underline;\"> </span></b>\r\n\r\n<b><span style=\"text-decoration: underline;\"><a href=\"http://www.youtube.com/watch?v=4IZFNI1rGrE\">http://www.youtube.com/watch?v=4IZFNI1rGrE</a>\r\n</span></b>\r\n1 bunch of coriander leaves well cut and washed.\r\n3-4 hot pepper\r\n\r\n2-3 fresh big lemons juice\r\n1/2 tea spoon of Salt\r\n\r\n\r\nblend salt, coriander leaves, and lemon juice in blender. If you feel bitter you\r\ncan add more lemon in it.\r\nYour sauce is ready to serve.\r\n\r\nCoriander is antiseptic. and fresh lemon is good for proper functioning of\r\nKidney But sauces are not to be eaten regularly and in large amount because with the lemon we have to add lots of salt which is not good. This kind of sauce you can keep for a week in\r\nyour refrigerator.\r\n\r\n<b><span style=\"text-decoration: underline;\"> </span></b>\r\n\r\n<b><span style=\"text-decoration: underline;\">5. Yogourt sauce</span></b>\r\n\r\n<b><span style=\"text-decoration: underline;\"> </span></b>½ l of  plain yogourt\r\n\r\n¼ tea spoon of salt\r\n\r\n¼   tea spoon of Red hot pepper powder\r\n\r\n¼ tea spoon of roasted cumin seeds powder\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nWhen you have no sauce and you need sauce to eat with any thing This is the quickest sauce to be prepared at home.\r\n\r\n&nbsp;\r\n\r\nOn  stove put pan and add 100 grams of cumin seeds. Put the stove on medium. The seeds will start producing sound keep on stirring them when they turn brown. Stop roasting them wait for 5 minutes to cook down . Now blend them. Keep them in salt and pepper shaker for everyday use. Always keep roasted cumin seeds powder along with salt and pepper shaker\r\n\r\n&nbsp;\r\n\r\nThis is the healthiest sauce you can make within 5 minutes.\r\n\r\n&nbsp;\r\n\r\nAdd salt roasted cumin seeds powder red pepper powder in the yougurt  mix them and your sauce is ready  .\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<b>6. Mint sauce or chatni</b>\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://www.youtube.com/watch?v=gLwHF7OdeY0\">http://www.youtube.com/watch?v=gLwHF7OdeY0</a>\r\n\r\nOne pack of well washed Mint leaves.\r\n\r\n2 lemons\r\n\r\n4 hot pepper\r\n\r\n1 tea spoon salt.\r\n\r\nAll blend together your sauce is ready to refresh your mood and increase your hunger.','Different  kind of fresh aromatic sauses or chatni','','inherit','closed','closed','','213-revision-2','','','2013-06-11 20:27:54','2013-06-12 00:27:54','',213,'http://divyayogamonteregie.org/web/?p=247',0,'revision','',0),(250,1,'2013-06-15 23:18:37','2013-06-16 03:18:37','&nbsp;\r\n\r\n<b> The word Chatni is made from the verb Chatna which means l</b><b>ic</b>k. It is eaten in small amount because mostly chatni or sauces are made with lemon juice <b>so to </b><b>subsidies</b> the sour taste we have to add more salt. That is why its l<b>ic</b>king is better in <b>comparison</b> of eating in large quantity.\r\n\r\n<span style=\"text-decoration: underline;\"><strong>1. Onion Sauce.</strong></span>\r\n\r\n<strong><span style=\"text-decoration: underline;\">Ingredients</span> </strong>\r\n\r\n2 onions\r\n3 Lemon juice\r\n1/2 tea spoon salt or according to your taste\r\n4 Red hot peppers.\r\n\r\nAfter peeling and cutting blend all the things into along with the lemon juice\r\nextracted from 3 lemons. Your sauce is ready to serve.\r\n\r\n<b><span style=\"text-decoration: underline;\">2. Mango Sauce</span></b>\r\n\r\n4 big mangoes ( green pr little bit ripening)\r\n4 Hot green peppers\r\n1 tea spoon of salt\r\n4 table spoon of olive oil\r\n\r\nPeel the mangoes and take out the seed. put in the blender. Add all other ingredients except oil. Blend it well. Put in a bottle. Add olive oil.\r\nYou can add mint into this to give a nice flavor.\r\nIf mangoes are totally green you can add little bit of sugar.\r\n\r\n<b><span style=\"text-decoration: underline;\">3. Peanut Sauce.\r\n</span></b>\r\n\r\n<b><span style=\"text-decoration: underline;\"><a href=\"http://www.youtube.com/watch?v=7Uqa8RTJrHM\">http://www.youtube.com/watch?v=7Uqa8RTJrHM</a></span></b>\r\n\r\n4 table spoon of peanuts\r\n1/2 tea spoon of salt\r\n8 tablespoon of natural plain yogurt\r\n3 red peppers or 1/2 tea spoon of red pepper powder.\r\n\r\nBlend them in blender like fine paste. Your sauce is ready to serve.\r\n\r\n<b><span style=\"text-decoration: underline;\">4. Coriander sauce\r\n</span></b>\r\n\r\n<b><span style=\"text-decoration: underline;\"><a href=\"http://www.youtube.com/watch?v=4IZFNI1rGrE\">http://www.youtube.com/watch?v=4IZFNI1rGrE</a>\r\n</span></b>\r\n1 bunch of coriander leaves well cut and washed.\r\n3-4 hot pepper\r\n\r\n2-3 fresh big lemons juice\r\n1/2 tea spoon of Salt\r\n\r\nblend salt, coriander leaves, and lemon juice in blender. If you feel bitter you\r\ncan add more lemon in it.\r\nYour sauce is ready to serve.\r\n\r\nCoriander is antiseptic. and fresh lemon is good for proper functioning of\r\nKidney But sauces are not to be eaten regularly and in large amount because with the lemon we have to add lots of salt which is not good. This kind of sauce you can keep for a week in your refrigerator.\r\n\r\n<b><span style=\"text-decoration: underline;\"> 5. Yogourt sauce</span></b>\r\n<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image014.jpg\"><img class=\"aligncenter  wp-image-164\" alt=\"image014\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image014-300x168.jpg\" width=\"600\" height=\"336\" /></a></p>\r\n<p style=\"text-align: center;\"></p>\r\n<b></b>½ l of  plain yogourt\r\n\r\n¼ tea spoon of salt\r\n\r\n¼   tea spoon of Red hot pepper powder\r\n\r\n¼ tea spoon of roasted cumin seeds powder\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nWhen you have no sauce and you need sauce to eat with any thing This is the quickest sauce to be prepared at home.\r\n\r\n&nbsp;\r\n\r\nOn  stove put pan and add 100 grams of cumin seeds. Put the stove on medium. The seeds will start producing sound keep on stirring them when they turn brown. Stop roasting them wait for 5 minutes to cook down . Now blend them. Keep them in salt and pepper shaker for everyday use. Always keep roasted cumin seeds powder along with salt and pepper shaker\r\n\r\n&nbsp;\r\n\r\nThis is the healthiest sauce you can make within 5 minutes.\r\n\r\n&nbsp;\r\n\r\nAdd salt roasted cumin seeds powder red pepper powder in the yougurt  mix them and your sauce is ready  .\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<b>6. Mint sauce or chatni</b>\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://www.youtube.com/watch?v=gLwHF7OdeY0\">http://www.youtube.com/watch?v=gLwHF7OdeY0</a>\r\n\r\nOne pack of well washed Mint leaves.\r\n\r\n2 lemons\r\n\r\n4 hot pepper\r\n\r\n1 tea spoon salt.\r\n\r\nAll blend together your sauce is ready to refresh your mood and increase your hunger.','Different  kind of fresh aromatic sauses or chatni','','inherit','closed','closed','','213-revision-5','','','2013-06-15 23:18:37','2013-06-16 03:18:37','',213,'http://divyayogamonteregie.org/web/?p=250',0,'revision','',0),(248,1,'2013-06-15 23:08:41','2013-06-16 03:08:41','&nbsp;\r\n\r\n<b> The word Chatni is made from the verb Chatna which means l</b><b>ic</b>k. It is eaten in small amount because mostly chatni or sauces are made with lemon juice <b>so to </b><b>subsidies</b> the sour taste we have to add more salt. That is why its l<b>ic</b>king is better in <b>comparison</b> of eating in large quantity.\r\n\r\n<span style=\"text-decoration: underline;\"><strong>1. Onion Sauce.</strong></span>\r\n\r\n<strong><span style=\"text-decoration: underline;\">Ingredients</span> </strong>\r\n\r\n2 onions\r\n3 Lemon juice\r\n1/2 tea spoon salt or according to your taste\r\n4 Red hot peppers.\r\n\r\nAfter peeling and cutting blend all the things into along with the lemon juice\r\nextracted from 3 lemons. Your sauce is ready to serve.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<b><span style=\"text-decoration: underline;\">2. Mango Sauce</span></b>\r\n\r\n4 big mangoes ( green pr little bit ripening)\r\n4 Hot green peppers\r\n1 tea spoon of salt\r\n4 table spoon of olive oil\r\n\r\nPeel the mangoes and take out the seed. put in the blender. Add all other ingredients except oil. Blend it well. Put in a bottle. Add olive oil.\r\nYou can add mint into this to give a nice flavor.\r\nIf mangoes are totally green you can add little bit of sugar.\r\n\r\n<b><span style=\"text-decoration: underline;\">3. Peanut Sauce.</span></b>\r\n\r\n<b><span style=\"text-decoration: underline;\"> </span></b>\r\n\r\n<b><span style=\"text-decoration: underline;\"><a href=\"http://www.youtube.com/watch?v=7Uqa8RTJrHM\">http://www.youtube.com/watch?v=7Uqa8RTJrHM</a> </span></b>\r\n\r\n&nbsp;\r\n\r\n4 table spoon of peanuts\r\n1/2 tea spoon of salt\r\n8 tablespoon of natural plain yogurt\r\n3 red peppers or 1/2 tea spoon of red pepper powder.\r\n\r\nBlend them in blender like fine paste. Your sauce is ready to serve.\r\n\r\n<b><span style=\"text-decoration: underline;\">4. Coriander sauce</span></b>\r\n\r\n<b><span style=\"text-decoration: underline;\"> </span></b>\r\n\r\n<b><span style=\"text-decoration: underline;\"><a href=\"http://www.youtube.com/watch?v=4IZFNI1rGrE\">http://www.youtube.com/watch?v=4IZFNI1rGrE</a>\r\n</span></b>\r\n1 bunch of coriander leaves well cut and washed.\r\n3-4 hot pepper\r\n\r\n2-3 fresh big lemons juice\r\n1/2 tea spoon of Salt\r\n\r\nblend salt, coriander leaves, and lemon juice in blender. If you feel bitter you\r\ncan add more lemon in it.\r\nYour sauce is ready to serve.\r\n\r\nCoriander is antiseptic. and fresh lemon is good for proper functioning of\r\nKidney But sauces are not to be eaten regularly and in large amount because with the lemon we have to add lots of salt which is not good. This kind of sauce you can keep for a week in\r\nyour refrigerator.\r\n\r\n<b><span style=\"text-decoration: underline;\"> </span></b>\r\n\r\n<b><span style=\"text-decoration: underline;\">5. Yogourt sauce</span></b>\r\n<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image014.jpg\"><img class=\"aligncenter  wp-image-164\" alt=\"image014\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image014-300x168.jpg\" width=\"600\" height=\"336\" /></a></p>\r\n&nbsp;\r\n\r\n<b><span style=\"text-decoration: underline;\"> </span></b>½ l of  plain yogourt\r\n\r\n¼ tea spoon of salt\r\n\r\n¼   tea spoon of Red hot pepper powder\r\n\r\n¼ tea spoon of roasted cumin seeds powder\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nWhen you have no sauce and you need sauce to eat with any thing This is the quickest sauce to be prepared at home.\r\n\r\n&nbsp;\r\n\r\nOn  stove put pan and add 100 grams of cumin seeds. Put the stove on medium. The seeds will start producing sound keep on stirring them when they turn brown. Stop roasting them wait for 5 minutes to cook down . Now blend them. Keep them in salt and pepper shaker for everyday use. Always keep roasted cumin seeds powder along with salt and pepper shaker\r\n\r\n&nbsp;\r\n\r\nThis is the healthiest sauce you can make within 5 minutes.\r\n\r\n&nbsp;\r\n\r\nAdd salt roasted cumin seeds powder red pepper powder in the yougurt  mix them and your sauce is ready  .\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<b>6. Mint sauce or chatni</b>\r\n\r\n&nbsp;\r\n\r\n<a href=\"http://www.youtube.com/watch?v=gLwHF7OdeY0\">http://www.youtube.com/watch?v=gLwHF7OdeY0</a>\r\n\r\nOne pack of well washed Mint leaves.\r\n\r\n2 lemons\r\n\r\n4 hot pepper\r\n\r\n1 tea spoon salt.\r\n\r\nAll blend together your sauce is ready to refresh your mood and increase your hunger.','Different  kind of fresh aromatic sauses or chatni','','inherit','closed','closed','','213-revision-3','','','2013-06-15 23:08:41','2013-06-16 03:08:41','',213,'http://divyayogamonteregie.org/web/?p=248',0,'revision','',0),(251,1,'2013-05-09 07:13:29','2013-05-09 11:13:29','Coming soon','Testimony from Participants','','inherit','closed','closed','','31-revision-2','','','2013-05-09 07:13:29','2013-05-09 11:13:29','',31,'http://divyayogamonteregie.org/web/?p=251',0,'revision','',0),(252,1,'2013-06-15 23:34:40','2013-06-16 03:34:40','<div>\r\n<div>\r\n\r\n<em><span style=\"text-decoration: underline;\"><strong>From volunteers</strong></span></em>\r\n\r\n<em><strong>Monique</strong></em>\r\n\r\nSuite à un accident de voiture survenu il y a plusieurs années, mon corps était dans une souffrance chronique, mon esprit était pris dans des blocages inconscients de perturbations, de découragement, de tourment, de peur, et d’angoisse.  Puis un jour, j’ai fait la découverte du yoga.\r\n\r\nAu début, lors de mes pratiques, je n’arrivais pas à synchroniser les mouvements, mon corps était rigide et tendu,  je n’étais pas concentrée.  Après un certain temps, j’ai abandonné  les cours en me disant que je n’y arriverai jamais, que mon corps ne pouvait pas suivre, j’avais trop mal, je n’avais pas la dextérité  pour faire les postures, ni la flexibilité, l’attention, la concentration, etc., etc.\r\n\r\nUn peu plus tard, j’ai vu une annonce dans le journal qu’il y avait des cours de yoga offerts gratuitement à St-Lambert.  J’ai décidé de faire un autre essai.  Puis voilà  que ma vie s’est transformée.  J’ai commencé le yoga une fois semaine. Après quelques semaines de pratique,  j’ai été approchée par le professeur de yoga pour être bénévole, pour accueillir les gens. J’ai accepté de m’engager dans cette belle aventure dont je fais toujours partie depuis déjà presque 3 ans. Depuis,  j’ai exploré différentes approches de yoga qui m’ont amenée à un changement positif de vie complète.  Une bonne hygiène alimentaire, une flexibilité de mon corps et de mon esprit, de mes attitudes et comportements. J’ai appris à  cultiver le calme mental et ma force vitale intérieure par les exercices de respiration et de méditation. J’ai amélioré mon équilibre mental et physique,  l’écoute de mon corps, ma concentration et ma mémoire, ma coordination et l’acceptation de ce qui est.\r\n\r\nJe vis maintenant mon quotidien dans un mieux-être. Il y a encore place à l’amélioration, mais chaque jour j’intègre un style de vie de yoga qui m’amène de plus en plus à faire l’expérience d’une paix intérieure.\r\n\r\n*****************************<wbr></wbr>******************************<wbr></wbr>******************\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Michel …. 74</strong></span>\r\n\r\nMy duties:-\r\n\r\nTo be always ready to help\r\n\r\nAbout me\r\n\r\nI am a very happy man. I enjoy the company of nice people.\r\n\r\nWhat yoga means to me? How it has affected my life?\r\n\r\nYoga is for me an extraordinary choice of movements and exercices created by people who knew the human body and soul.\r\n\r\nTwo hours of yoga per week complement my daily exercices that I do since 50 years plus. My body appreciate yoga and I feel balanced.\r\n\r\nMarathon Runner\r\n\r\nBénévole (mes tâches)\r\nÊtre toujours prêt à aider\r\n\r\nÀ propos de moi\r\nJe suis un homme très heureux. J\'aime la compagnie des gens sympathiques.\r\n\r\nCe que le yoga signifie pour moi? Comment cela a affecté ma vie?\r\n\r\nLe yoga est pour moi un choix extraordinaire de mouvements et d\'exercices créés par des gens qui connaissaient le corps humain et l\'âme.\r\nDeux heures de yoga par semaine complètent mes exercices quotidiens que je fais depuis 50 ans et plus. Mon corps apprécie le yoga et je me sens équilibrée.\r\n\r\n<strong><span style=\"text-decoration: underline;\"> ******************************<wbr></wbr>******************************<wbr></wbr>******************</span></strong>\r\n\r\n<strong><span style=\"text-decoration: underline;\">Bénévole : Mihaela Frandes</span></strong>\r\n\r\nMon rôle\r\n\r\nJ’arrive chaque samedi matin à 8.30am à l’Académie Chambly pour accueillir les nouvelles personnes. Je leur demande de compléter une fiche d’inscription et leur explique un peu comment se déroulent les cours.\r\n\r\nÀ propos de moi\r\n\r\nJ’ai commencé les cours de yoga offerts par Meera Trivedi et Vinesh Saxena en juin 2010 et depuis j’y suis toujours fidèle J’avoue que le samedi est ma journée de la semaine la plus heureuse. Depuis, je fais du yoga régulièrement. Je suis d’origine roumaine, ma formation est en biochimie et dans la vie quotidienne je me préoccupe beaucoup de ma nutrition et j’aime beaucoup la nature. En été  je fais du vélo et en hiver j’adore faire du ski de fond. J’aime beaucoup aider les gens et le yoga m’aide à accomplir le bonheur dans ma vie. Ma dernière passion est la préparation de pain au levain – faire du bon pain est pour moi un immense plaisir.\r\n\r\n&nbsp;\r\n\r\nQu’est que yoga signifie pour moi. Comment a-t-elle affecte ma vie\r\n\r\nLe yoga a amélioré la flexibilité de mon corps et esprit ainsi que ma santé. J’adore faire du yoga et je sens que le yoga est une marche dans mon évolution.\r\n\r\n&nbsp;\r\n\r\nVolunteer\r\n\r\nMy duties: I came every Saturday morning at 8.30 at Chambly Academy in Saint Lambert to accommodate the new peoples. I give them the form to fill-up and explain a little bit how we function here.\r\n\r\nAbout me: I started the yoga classes given by Meera Trivedi and Vinesh Saxena in July 2010 and since then I do yoga on a regular basis. Saturday is the happiest day of my week. I am Rumanian, I studied biochemistry and I am interested in nutrition, healthy eating, I try to come closer to nature. In summer I do a lot of bike and in winter I love the cross-country sky. I love helping people; yoga is helping me to maintain a happy mood. Now I’m in love with making sourdough bread, making bread makes me happy.\r\n\r\nWhat yoga means for me. How it has affected my life: Yoga gave me a happiness that I cannot explain; friends, a more conscious life, a flexible body, and a healthy body, a clear mind. I love doing yoga, and I am pretty sure that yoga is only a step in my evolution.\r\n\r\n******************************<wbr></wbr>******************************<wbr></wbr>******************\r\n\r\n<span style=\"text-decoration: underline;\"><strong>From other participants</strong></span>\r\n\r\nThis yoga class is a precious time for me. I may arrive out of breath or lacking of energy, or a bit annoyed at my brain « monkey chatter » but I always leave rejuvenated physically, mentally and emotionally. Joining in, I am giving my whole body the royal treatment from head to toes, stretching out the kinks and limbering up muscles and joints I was not aware of. It is quality time I give to myself. When I am there, I have my own space. But there are people around me and I feel I belong, that I am surrounded by positive energy. The space we are in fills, it feels to me, with well being respect, silent communication. Thank you to all who make this possible. I was hooked the first time I went.\r\n\r\n<strong><span style=\"text-decoration: underline;\">Charlene Olse</span></strong>\r\n\r\n------------------------------<wbr></wbr>------------------------------<wbr></wbr>------------------------------<wbr></wbr>---------------------------\r\n\r\nJe passais des moments très difficiles suite à un deuil, mon amie m’a conseillé de faire du yoga.\r\n\r\nJ’ai essayé une première séance et je me suis sentie vraiment bien, les mouvements accompagnés de la respiration fluide ont effectivement apaisé mon âme, mon esprit et mon corps et depuis je ne peux rater une séance. Je fais du yoga seule à la maison, mais je m’arrête au bout de 5 minutes, cependant du yoga en groupe avec la belle ambiance, la bonne motivation et l’encouragement de l’entraîneur m’a permis de bien vivre mon deuil et surtout de bien gérer mes sentiments et mes émotions.\r\n\r\nUn grand merci pour ce que vous faites pour le groupe de yoga.\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Lynda</strong></span>\r\n\r\n------------------------------<wbr></wbr>------------------------------<wbr></wbr>------------------------------<wbr></wbr>---------------------------\r\n\r\nLe yoga diminue mon stress, assouplit mon corps et lubrifie mes articulations. Certaines positions ou exercices libèrent des structures énergétiques associées à des mémoires antérieures. L’énergie circule plus librement dans mon corps et je me sens revivifié. J’apprécie aussi le fait que ce soit une activité non compétitive.\r\n\r\nJe remercie M. Saxena de sa très grande disponibilité ainsi que toute son équipe de bénévoles.\r\n\r\n<span style=\"text-decoration: underline;\"><strong> Marcel Baril</strong></span>\r\n\r\n------------------------------<wbr></wbr>------------------------------<wbr></wbr>------------------------------<wbr></wbr>---------------------------\r\n\r\nLe yoga m’a apporté beaucoup de paix intérieure. J’aime la combinaison de l’exercice physique et le mental, le rire…. Cela équilibre mon moral, améliore mon corps physique, m’aide à  pratiquer la méditation et la relaxation et surtout à mieux respirer. J’aime beaucoup l’ambiance généreuse, le don de soi des bénévoles. Je crois de plus en plus à la bonté de l’être humain.\r\n\r\nMerci\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Colette</strong></span>\r\n\r\n------------------------------<wbr></wbr>------------------------------<wbr></wbr>------------------------------<wbr></wbr>---------------------------\r\n\r\nMon mari est décédé il y a trois ans. Je fus effondrée. Depuis ce temps je pratique le yoga avec Monsieur Saxena. Cet exercice m’a apporté l’équilibre physique et la paix de l’âme.\r\n\r\nGinette Paradis\r\n\r\n------------------------------<wbr></wbr>------------------------------<wbr></wbr>------------------------------<wbr></wbr>---------------------------\r\n\r\nJe dois remercier Mr et Mme Saxena pout leur dévouement et leur disponibilité  apportés chaque samedi.\r\n\r\nPour moi,ce que j\'aime le plus c\'est bien ses histoires qui m\'amênent a penser positivement,ensuite il y a les exercises\r\n\r\nqui aident a calmer le mental et a controler le stress,c\'est bien.\r\n\r\nMais tant qu\'aux exercises d\'accupressions pour les sinus ,j\'en vois pas d\'effet immédiat, c\'est probablement a long\r\n\r\nterme que l\'effet se fait sentir.\r\n\r\nLes nouveaux mouvements ou exercises sont les bienvenues ,j\'en suis certain, pour la pluparts des participants.\r\n\r\nApres deux heures de participations la position a l\'horizontale (shawaseen)ou repos est très bien appréciée.\r\n\r\nC\'est durant le reste de la journée qu\'on sent une certaine fatigue et qu\'il faut récupérer,en un mot c\'est sûrement\r\n\r\nbénifique pour la santé.\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Renald Couture</strong></span>\r\n\r\n------------------------------<wbr></wbr>------------------------------<wbr></wbr>------------------------------<wbr></wbr>-----------------\r\n\r\nWhat would I do without Yoga? it has helped me to live a fulfilling life!\r\n\r\nWhen I was 12 years old, I was one day about to sit down on a kitchen chair when my brother took it away from underneath me. I fell had on my coccyx and thought nothing more of it, thinking that my pride was hurt more than my back. But by the age of 18 I started getting persistent backaches, and from then on I became a \'back sufferer\'. By the age of 30 I wasn\'t able to wash a kitchen floor or do an hour\'s gardening without a backache for the rest of the day, and few days after. I wasn\'t even sure I could have children with such a bad back, so I did a series of adjustments over a year and a half at a chiropractor\'s, and tried acupuncture. Both helped somewhat, but certainly did not cure my condition. I did have two children and a full time job teaching, but backaches became a fact of life, always there in the background.\r\n\r\nI came across Yoga in my middle 30\'s but never had enough time to pursue it diligently. It was only after I retired that I started doing it seriously, and I now wish I had allowed no excuses to not do it consistently earlier. I now do Yoga for an hour every day, following the type of Mr. Saxena\'s exercises on Saturday mornings, and take exercises out of books. I have never felt better! Today at 68 I feel better that I did at 30. I can now do gardening all day, shovel snow, wash floors, and walk good long walks with no consequent pain. The injury to my back is still there, but my back mussels are now strong enough to support me in my activities.\r\n\r\nDoing the exercises is only part of my Yoga practice. I am careful to eat only food that is nutritious for my body, and I try to keep as much as possible a positive outlook on life.\r\n\r\nYoga is a lifestyle - it takes care of every aspect of one\'s being, and I intend to keep well and healthy to my dying day.\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Mary Brunet</strong></span>\r\n\r\n------------------------------<wbr></wbr>------------------------------<wbr></wbr>------------------------------<wbr></wbr>---------\r\n\r\n</div>\r\n</div>','Testimony from Participants','','inherit','closed','closed','','31-revision-3','','','2013-06-15 23:34:40','2013-06-16 03:34:40','',31,'http://divyayogamonteregie.org/web/?p=252',0,'revision','',0),(253,1,'2013-06-16 00:58:25','2013-06-16 04:58:25','','image003','','inherit','closed','closed','','image003','','','2013-06-16 00:58:25','2013-06-16 04:58:25','',209,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image003.jpg',0,'attachment','image/jpeg',0),(254,1,'2013-06-16 01:00:13','2013-06-16 05:00:13','<b><i><span style=\"text-decoration: underline;\">Ingredients:</span></i></b>\n\n<a href=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image003.jpg\"><img class=\"aligncenter size-medium wp-image-253\" alt=\"image003\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image003-300x204.jpg\" width=\"300\" height=\"204\" /></a>\n\n<i>1 package tea biscuits -200 g</i>\n\n<i>1 package butter-soft 125 g</i>\n\n<i>1 jar- jam 300 g</i>\n\n<i>150 g ground walnuts</i>\n\n<i> Blending jam with half the chopped walnuts.</i>\n\n<i>Smear each biscuit with butter and jam and paste the other. With the rest of the mixture and smear countries.\nWrap in foil and put in the fridge for 30 minutes.</i>\n\n<i>Once the roll is tight little roll it in the remaining chopped walnuts.</i>\n\n<i>We\'re going to put the roll a few hours in the refrigerator.</i>\n\n<i> It\'s nice to make in the evening and eat the next day.</i>\n\n&nbsp;\n\n&nbsp;','Biscuit roll with jam','','inherit','closed','closed','','209-autosave','','','2013-06-16 01:00:13','2013-06-16 05:00:13','',209,'http://divyayogamonteregie.org/web/?p=254',0,'revision','',0),(255,1,'2013-06-11 20:12:27','2013-06-12 00:12:27','<b><i><span style=\"text-decoration: underline;\">Ingredients:</span></i></b>\r\n\r\n<i>1 package tea biscuits -200 g</i>\r\n\r\n<i>1 package butter-soft 125 g</i>\r\n\r\n<i>1 jar- jam 300 g</i>\r\n\r\n<i>150 g ground walnuts</i>\r\n\r\n<i> Blending jam with half the chopped walnuts.</i>\r\n\r\n<i>Smear each biscuit with butter and jam and paste the other. With the rest of the mixture and smear countries.\r\nWrap in foil and put in the fridge for 30 minutes.</i>\r\n\r\n<i>Once the roll is tight little roll it in the remaining chopped walnuts.</i>\r\n\r\n<i>We\'re going to put the roll a few hours in the refrigerator.</i>\r\n\r\n<i> It\'s nice to make in the evening and eat the next day.</i>\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Biscuit roll with jam','','inherit','closed','closed','','209-revision-2','','','2013-06-11 20:12:27','2013-06-12 00:12:27','',209,'http://divyayogamonteregie.org/web/?p=255',0,'revision','',0),(291,1,'2013-06-19 18:38:41','2013-06-19 22:38:41','','banner_aum','','inherit','closed','closed','','banner_aum','','','2013-06-19 18:38:41','2013-06-19 22:38:41','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/banner_aum.jpg',0,'attachment','image/jpeg',0),(292,1,'2013-06-19 18:40:06','2013-06-19 22:40:06','http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/cropped-banner_aum1.jpg','cropped-banner_aum1.jpg','','inherit','closed','closed','','cropped-banner_aum1-jpg','','','2013-06-19 18:40:06','2013-06-19 22:40:06','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/cropped-banner_aum1.jpg',0,'attachment','image/jpeg',0),(294,1,'2013-06-23 13:50:35','2013-06-23 17:50:35','','20130601_99_1','','inherit','closed','closed','','20130601_99_1','','','2013-06-23 13:50:35','2013-06-23 17:50:35','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/20130601_99_1.jpg',0,'attachment','image/jpeg',0),(295,1,'2013-06-23 13:57:17','2013-06-23 17:57:17','','Meera\'s kitchen','','inherit','closed','closed','','meeras-kitchen','','','2013-06-23 13:57:17','2013-06-23 17:57:17','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/Meeras-kitchen.jpg',0,'attachment','image/jpeg',0),(297,1,'2013-05-08 21:19:24','2013-05-08 21:19:24','<strong>Vinesh Saxena</strong> is yoga instructor trained by Patanjali yoga peeth. He has been practicing yoga since his childhood. Mr. Saxena is “self made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarship while he was student. He holds a Masters degree in Engineering and Masters in business administration along with an Accounting designation. He has worked a long time in engineering and has taught on part time basis in Concordia and McGill universities.\r\n\r\nHe retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his web site of foundation he also describes “Seven simple principals of life” if people follow these principals they can gain control of their life, be happy and self sufficient beings.\r\n\r\nAs a second objective of the foundation he also challenges to find answers to unanswered questions. i.e. “is there a soul” “Is there life after death”  “Does God exist”\r\n\r\nWith continuing theme of “help the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people.\r\n\r\n&nbsp;\r\n\r\n<strong>Meera Trivedi</strong> is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.\r\n\r\nShe believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.','Instructors','','inherit','closed','closed','','6-revision-v1','','','2013-05-08 21:19:24','2013-05-08 21:19:24','',6,'http://divyayogamonteregie.org/web/?p=297',0,'revision','',0),(266,1,'2013-06-19 17:38:39','2013-06-19 21:38:39','','20121123_48','','inherit','closed','closed','','20121123_48','','','2013-06-19 17:38:39','2013-06-19 21:38:39','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/20121123_48.jpg',0,'attachment','image/jpeg',0),(267,1,'2013-06-19 17:38:53','2013-06-19 21:38:53','','20121123_50','','inherit','closed','closed','','20121123_50','','','2013-06-19 17:38:53','2013-06-19 21:38:53','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/20121123_50.jpg',0,'attachment','image/jpeg',0),(268,1,'2013-06-19 17:39:24','2013-06-19 21:39:24','','20121123_49','','inherit','closed','closed','','20121123_49','','','2013-06-19 17:39:24','2013-06-19 21:39:24','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/20121123_49.jpg',0,'attachment','image/jpeg',0),(269,1,'2013-06-19 17:39:37','2013-06-19 21:39:37','','20121123_51','','inherit','closed','closed','','20121123_51','','','2013-06-19 17:39:37','2013-06-19 21:39:37','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/20121123_51.jpg',0,'attachment','image/jpeg',0),(270,1,'2013-06-19 17:39:49','2013-06-19 21:39:49','','20121123_46','','inherit','closed','closed','','20121123_46','','','2013-06-19 17:39:49','2013-06-19 21:39:49','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/20121123_46.jpg',0,'attachment','image/jpeg',0),(271,1,'2013-06-19 17:40:03','2013-06-19 21:40:03','','20121123_44','','inherit','closed','closed','','20121123_44','','','2013-06-19 17:40:03','2013-06-19 21:40:03','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/20121123_44.jpg',0,'attachment','image/jpeg',0),(272,1,'2013-06-19 17:40:17','2013-06-19 21:40:17','','20121123_40','','inherit','closed','closed','','20121123_40','','','2013-06-19 17:40:17','2013-06-19 21:40:17','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/20121123_40.jpg',0,'attachment','image/jpeg',0),(273,1,'2013-06-19 17:40:32','2013-06-19 21:40:32','','20121123_39','','inherit','closed','closed','','20121123_39','','','2013-06-19 17:40:32','2013-06-19 21:40:32','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/20121123_39.jpg',0,'attachment','image/jpeg',0),(274,1,'2013-06-19 17:40:47','2013-06-19 21:40:47','','20121123_41','','inherit','closed','closed','','20121123_41','','','2013-06-19 17:40:47','2013-06-19 21:40:47','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/20121123_41.jpg',0,'attachment','image/jpeg',0),(275,1,'2013-06-19 17:41:07','2013-06-19 21:41:07','','20121123_43','','inherit','closed','closed','','20121123_43','','','2013-06-19 17:41:07','2013-06-19 21:41:07','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/20121123_43.jpg',0,'attachment','image/jpeg',0),(276,1,'2013-06-19 17:41:26','2013-06-19 21:41:26','','20121123_36','','inherit','closed','closed','','20121123_36','','','2013-06-19 17:41:26','2013-06-19 21:41:26','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/20121123_36.jpg',0,'attachment','image/jpeg',0),(277,1,'2013-06-19 17:41:43','2013-06-19 21:41:43','','20121123_33','','inherit','closed','closed','','20121123_33','','','2013-06-19 17:41:43','2013-06-19 21:41:43','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/20121123_33.jpg',0,'attachment','image/jpeg',0),(278,1,'2013-06-19 17:41:56','2013-06-19 21:41:56','','20121123_34','','inherit','closed','closed','','20121123_34','','','2013-06-19 17:41:56','2013-06-19 21:41:56','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/20121123_34.jpg',0,'attachment','image/jpeg',0),(279,1,'2013-06-19 17:42:13','2013-06-19 21:42:13','','20121123_31','','inherit','closed','closed','','20121123_31','','','2013-06-19 17:42:13','2013-06-19 21:42:13','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/20121123_31.jpg',0,'attachment','image/jpeg',0),(280,1,'2013-06-19 17:42:30','2013-06-19 21:42:30','','20121123_32','','inherit','closed','closed','','20121123_32','','','2013-06-19 17:42:30','2013-06-19 21:42:30','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/20121123_32.jpg',0,'attachment','image/jpeg',0),(281,1,'2013-06-19 17:42:42','2013-06-19 21:42:42','','20121123_30','','inherit','closed','closed','','20121123_30','','','2013-06-19 17:42:42','2013-06-19 21:42:42','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/20121123_30.jpg',0,'attachment','image/jpeg',0),(282,1,'2013-06-19 17:42:58','2013-06-19 21:42:58','','20121123_25','','inherit','closed','closed','','20121123_25','','','2013-06-19 17:42:58','2013-06-19 21:42:58','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/20121123_25.jpg',0,'attachment','image/jpeg',0),(283,1,'2013-06-19 17:43:17','2013-06-19 21:43:17','','20121123_24','','inherit','closed','closed','','20121123_24','','','2013-06-19 17:43:17','2013-06-19 21:43:17','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/20121123_24.jpg',0,'attachment','image/jpeg',0),(284,1,'2013-06-19 17:49:52','2013-06-19 21:49:52','','20121123_24','','inherit','closed','closed','','20121123_24-2','','','2013-06-19 17:49:52','2013-06-19 21:49:52','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/20121123_241.jpg',0,'attachment','image/jpeg',0),(285,1,'2013-06-19 17:53:18','2013-06-19 21:53:18','','20121123_18','','inherit','closed','closed','','20121123_18','','','2013-06-19 17:53:18','2013-06-19 21:53:18','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/20121123_18.jpg',0,'attachment','image/jpeg',0),(286,1,'2013-06-19 18:07:16','2013-06-19 22:07:16','','food1','','inherit','closed','closed','','food1','','','2013-06-19 18:07:16','2013-06-19 22:07:16','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/food1.jpg',0,'attachment','image/jpeg',0),(287,1,'2013-06-19 18:07:33','2013-06-19 22:07:33','','food7','','inherit','closed','closed','','food7','','','2013-06-19 18:07:33','2013-06-19 22:07:33','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/food7.jpg',0,'attachment','image/jpeg',0),(333,1,'2013-06-10 20:22:33','2013-06-11 00:22:33','This is a  parable of a farmer who owned an old mule. The mule fell into the farmer\'s well. The farmer heard the mule \'braying\' -- or whatever mules do when they fall into wells. After carefully assessing the situation, the farmer felt sorry for the mule, but decided that neither the mule nor the well was worth saving. Instead, he called his neighbors together and told them what had happened and asked them to help haul dirt to bury the old mule in the well and put him out of his misery.\r\n\r\nInitially, the old mule was hysterical! But as the farmer and his neighbors continued shoveling and the dirt hit his back, a thought struck him. It suddenly dawned on him that every time a shovel load of dirt landed on his back: he should shake it off and step up! This is what the old mule did, blow after blow. \"Shake it off and step up... shake it off and step up... shake it off and step up!\" he repeated to encourage himself.\r\n\r\nNo matter how painful the blows, or distressing the situation seemed, the old mule fought \"panic\" and just kept right on shaking it off and stepping up! You guessed it! It wasn\'t long before the old mule, battered and exhausted, stepped triumphantly over the wall of that well! What seemed like it would bury him, actually end up blessing him. All because of the manner in which he handled his adversity.','Shake it off and step up','','inherit','closed','closed','','150-revision-2','','','2013-06-10 20:22:33','2013-06-11 00:22:33','',150,'http://divyayogamonteregie.org/web/?p=333',0,'revision','',0),(290,1,'2013-06-19 18:26:50','2013-06-19 22:26:50','','IMG_4135','','inherit','closed','closed','','img_4135','','','2013-06-19 18:26:50','2013-06-19 22:26:50','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/IMG_4135.jpg',0,'attachment','image/jpeg',0),(298,1,'2013-07-09 16:53:25','2013-07-09 20:53:25','<strong>Vinesh Saxena</strong> is yoga instructor trained by Patanjali yoga peeth. He has been practicing yoga since his childhood. Mr. Saxena is “self made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarship while he was student. He holds a Masters degree in Engineering and Masters in business administration along with an Accounting designation. He has worked a long time in engineering and has taught on part time basis in Concordia and McGill universities.\r\n\r\nHe retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his web site of foundation he also describes “Seven simple principals of life” if people follow these principals they can gain control of their life, be happy and self sufficient beings.\r\n\r\nAs a second objective of the foundation he also challenges to find answers to unanswered questions. i.e. “is there a soul” “Is there life after death”  “Does God exist”\r\n\r\nWith continuing theme of “help the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .\r\n\r\n&nbsp;\r\n\r\n<strong>Meera Trivedi</strong> is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.\r\n\r\nShe believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.','Instructors','','inherit','closed','closed','','6-revision-v1','','','2013-07-09 16:53:25','2013-07-09 20:53:25','',6,'http://divyayogamonteregie.org/web/?p=298',0,'revision','',0),(475,1,'2013-07-09 20:07:50','2013-07-10 00:07:50','<h6><span style=\"color: #0000ff;\"><span style=\"color: #000000;\">Every last Saturday of the month we invite a guest speaker to talk on a relevant topic related to our mission. He talks to the people for 30-45 minutes.And then 15 minutes question answer period. After that we have vegetarian brunch.</span>\r\n</span></h6>','Month end conferences','','inherit','closed','closed','','25-revision-v1','','','2013-07-09 20:07:50','2013-07-10 00:07:50','',25,'http://divyayogamonteregie.org/web/?p=475',0,'revision','',0),(299,1,'2013-05-08 22:07:32','2013-05-09 02:07:32','<h6><span style=\"color: #0000ff;\">Every last Saturday of the month we invite a guest speaker who is related to Alternative way of healing. He talks to the people for 30 minutes.And then 15 minutes question answer period. After that we have brunch. Which is vegetarian.</span></h6>','Month end conferences','','inherit','closed','closed','','25-revision-v1','','','2013-05-08 22:07:32','2013-05-09 02:07:32','',25,'http://divyayogamonteregie.org/web/?p=299',0,'revision','',0),(301,1,'2013-05-18 22:59:14','2013-05-19 02:59:14','<div><strong>Saturday 9h-11h</strong></div>\r\n<div>675 Rue Green, Saint-Lambert, QC J4P 1V9, Canada</div>\r\n<div><strong>[codepeople-post-map]</strong></div>\r\n&nbsp;\r\n\r\n<strong>and</strong>\r\n\r\n<strong>Thursday  6:30 to 7:30</strong>\r\n\r\n1648 Langevin, St. Hubert, Quebec J4T 1X7','Schedule & Location','','inherit','closed','closed','','9-revision-v1','','','2013-05-18 22:59:14','2013-05-19 02:59:14','',9,'http://divyayogamonteregie.org/web/?p=301',0,'revision','',0),(302,1,'2013-05-08 22:25:35','2013-05-08 22:25:35','Every Saturday morning from 9.00 to 11.00 am we practice Divya Yoga- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with positive affirmations, wise stories, motivational poem and our mantra. Yoga is a complete lifestyle\r\n\r\nEvery last Saturday of month we have a guest speaker from 11.00 to 11.30 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is cooking for us amazing Indian food, and if you want to share with us a little plate you are welcome.\r\n\r\nIf it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.\r\n\r\nSubsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.\r\n\r\n&nbsp;\r\n\r\nPlease see below a short description of exercises that we practice every Saturday.\r\n<ol>\r\n	<li><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li>\r\n	<li><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li>\r\n	<li><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, movitated and fulfilling life.</li>\r\n	<li><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li>\r\n	<li><b>Eyes and neck exercises</b> – we take care of every part of the body.\r\nEyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>     </b>\r\nNeck: bend left, right, forward, and backward, rotate clockwise, then      counter clockwise, look to the right and look to the left.</li>\r\n	<li><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li>\r\n	<li><b>6 mudras </b>(positioning of fingers) - are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li>\r\n	<li><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, gingers, arms, hips, knees and feet.\r\nWe do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li>\r\n	<li><b>Laughter yoga </b>– with Meera - a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.\r\nWe also do <b>Super Brain yoga</b> to stimulate brain cells. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li>\r\n	<li><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li>\r\n	<li><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li>\r\n	<li><b>Mantra</b> – at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li>\r\n</ol>\r\n<p style=\"text-align: center;\"><span style=\"color: #0000ff;\"><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00 </strong></span>\r\n<span style=\"color: #0000ff;\"><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9</strong></span></p>','What we do !','','inherit','closed','closed','','12-revision-5','','','2013-05-08 22:25:35','2013-05-08 22:25:35','',12,'http://divyayogamonteregie.org/web/?p=302',0,'revision','',0),(303,1,'2013-07-09 17:43:02','2013-07-09 21:43:02','Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with word of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle\r\n\r\nEvery last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.\r\n\r\nIf it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.\r\n\r\nSubsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.\r\n\r\n&nbsp;\r\n\r\nPlease see below a short description of exercises that we practice every Saturday.\r\n<ol>\r\n	<li><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li>\r\n	<li><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li>\r\n	<li><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.</li>\r\n	<li><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li>\r\n	<li><b>Eyes and neck exercises</b> – we take care of every part of the body.\r\nEyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>     </b>\r\nNeck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.</li>\r\n	<li><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li>\r\n	<li><b>6 mudras </b>(positioning of fingers) - are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li>\r\n	<li><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.\r\nWe do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li>\r\n	<li><b>Laughter yoga </b>– with Meera - a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.\r\nWe also do <b>Super Brain yoga</b> to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li>\r\n	<li><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li>\r\n	<li><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li>\r\n	<li><b>Mantra</b> – at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li>\r\n</ol>\r\n<p style=\"text-align: center;\"><span style=\"color: #0000ff;\"><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00 </strong></span>\r\n<span style=\"color: #0000ff;\"><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9</strong></span></p>','What we do !','','inherit','closed','closed','','12-revision-6','','','2013-07-09 17:43:02','2013-07-09 21:43:02','',12,'http://divyayogamonteregie.org/web/?p=303',0,'revision','',0),(304,1,'2013-05-09 08:31:02','2013-05-09 12:31:02','These poems should help to enhance our morale and  in boosting energy. We need to keep our batteries charged and continuously encourage ourselves towards success and achieving our goals.\r\n\r\nThese poems are compiled here for easy reference. We would like to thank the respective  original authors for their contribution.','Poems','','inherit','closed','closed','','39-revision-4','','','2013-05-09 08:31:02','2013-05-09 12:31:02','',39,'http://divyayogamonteregie.org/web/?p=304',0,'revision','',0),(305,1,'2013-07-09 17:51:11','2013-07-09 21:51:11','These poems should help to enhance our morale and  in boosting energy. We need to keep our batteries charged and continuously encourage ourselves towards happiness, success and achieving our goals.\r\n\r\nThese poems are compiled here for easy reference. We would like to thank the respective  original authors for their contribution.','Poems','','inherit','closed','closed','','39-revision-5','','','2013-07-09 17:51:11','2013-07-09 21:51:11','',39,'http://divyayogamonteregie.org/web/?p=305',0,'revision','',0),(306,1,'2013-07-09 20:33:45','2013-07-10 00:33:45','<p style=\"text-align: justify;\"><b>\r\n</b><b>\r\n</b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.</p>\r\n<p style=\"text-align: justify;\">The Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.</p>\r\n<p style=\"text-align: justify;\">Here\'s what you do,\" said the Doctor, \"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\"</p>\r\n<p style=\"text-align: justify;\">That evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \"I\'m about 40 feet away, let\'s see what happens.\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\"</p>\r\n<p style=\"text-align: justify;\">No response.</p>\r\n<p style=\"text-align: justify;\">So the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \"Honey, what\'s for dinner?\"</p>\r\n<p style=\"text-align: justify;\">Still no response.</p>\r\n<p style=\"text-align: justify;\">Next he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\"</p>\r\n<p style=\"text-align: justify;\">Again he gets no response.</p>\r\n<p style=\"text-align: justify;\">So he walks up to the kitchen door, about 10 feet away. \"Honey, what\'s for dinner?\"</p>\r\n<p style=\"text-align: justify;\">Again there is no response.</p>\r\n<p style=\"text-align: justify;\">So he walks right up behind her. \"Honey, what\'s for dinner?\"</p>\r\n<p style=\"text-align: justify;\">\"James, for the FIFTH time I\'ve said, Lima Beans!\"</p>\r\n<p style=\"text-align: justify;\"><b>The problem may not be with the other person as we always think, could be very much within us!</b></p>\r\n&nbsp;','A problem may be me not other ','','inherit','closed','closed','','179-autosave','','','2013-07-09 20:33:45','2013-07-10 00:33:45','',179,'http://divyayogamonteregie.org/web/?p=306',0,'revision','',0),(307,1,'2013-06-10 21:27:02','2013-06-11 01:27:02','<b>\r\n</b><b>\r\n</b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.\r\n\r\nThe Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.\r\n\r\nHere\'s what you do,\" said the Doctor, \"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\"\r\n\r\nThat evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \"I\'m about 40 feet away, let\'s see what happens.\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\"\r\n\r\nNo response.\r\n\r\nSo the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \"Honey, what\'s for dinner?\"\r\n\r\nStill no response.\r\n\r\nNext he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\"\r\n\r\nAgain he gets no response.\r\n\r\nSo he walks up to the kitchen door, about 10 feet away. \"Honey, what\'s for dinner?\"\r\n\r\nAgain there is no response.\r\n\r\nSo he walks right up behind her. \"Honey, what\'s for dinner?\"\r\n\r\n\"James, for the FIFTH time I\'ve said, CHICKEN!\"\r\n\r\n<b>The problem may not be with the other person as we always think, could be very much within us!</b>\r\n\r\n&nbsp;','A problem may be me not other ','','inherit','closed','closed','','179-revision-2','','','2013-06-10 21:27:02','2013-06-11 01:27:02','',179,'http://divyayogamonteregie.org/web/?p=307',0,'revision','',0),(308,1,'2013-07-09 20:34:47','2013-07-10 00:34:47','<p style=\"text-align: justify;\">A well known speaker started off his seminar by holding up a $20 bill. In the room of 200, he asked, \"Who would like this $20 bill?\"</p>\r\n<p style=\"text-align: justify;\">Hands started going up.</p>\r\n<p style=\"text-align: justify;\">He said, \"I am going to give this $20 to one of you but first, let me do this.\" He proceeded to crumple the dollar bill up.</p>\r\n<p style=\"text-align: justify;\">He then asked, \"Who still wants it?\"</p>\r\n<p style=\"text-align: justify;\">Still the hands were up in the air.</p>\r\n<p style=\"text-align: justify;\">\"Well,\" he replied, \"What if I do this?\" And he dropped it on the ground and started to grind it into the floor with his shoe.</p>\r\n<p style=\"text-align: justify;\">He picked it up, now all crumpled and dirty. \"Now who still wants it?\" Still the hands went into the air.</p>\r\n<p style=\"text-align: justify;\">\"My friends, you have all learned a very valuable lesson. No matter what I did to the money, you still wanted it because it did not decrease in value. It was still worth $20.</p>\r\n<p style=\"text-align: justify;\">Many times in our lives, we are dropped, crumpled, and ground into the dirt by the decisions we make and the circumstances that come our way.</p>\r\n<p style=\"text-align: justify;\">We feel as though we are worthless. But no matter what has happened or what will happen, you will never lose your value. You have divine soul. You are special - Don\'t ever forget it!</p>','A value','','inherit','closed','closed','','156-autosave','','','2013-07-09 20:34:47','2013-07-10 00:34:47','',156,'http://divyayogamonteregie.org/web/?p=308',0,'revision','',0),(309,1,'2013-06-10 20:28:21','2013-06-11 00:28:21','<b></b>\r\n\r\nA well known speaker started off his seminar by holding up a $20 bill. In the room of 200, he asked, \"Who would like this $20 bill?\"\r\n\r\nHands started going up.\r\n\r\nHe said, \"I am going to give this $20 to one of you but first, let me do this.\" He proceeded to crumple the dollar bill up.\r\n\r\nHe then asked, \"Who still wants it?\"\r\n\r\nStill the hands were up in the air.\r\n\r\n\"Well,\" he replied, \"What if I do this?\" And he dropped it on the ground and started to grind it into the floor with his shoe.\r\n\r\nHe picked it up, now all crumpled and dirty. \"Now who still wants it?\" Still the hands went into the air.\r\n\r\n\"My friends, you have all learned a very valuable lesson. No matter what I did to the money, you still wanted it because it did not decrease in value. It was still worth $20.\r\n\r\nMany times in our lives, we are dropped, crumpled, and ground into the dirt by the decisions we make and the circumstances that come our way.\r\n\r\nWe feel as though we are worthless. But no matter what has happened or what will happen, you will never lose your value. You are special - Don\'t ever forget it!','A value','','inherit','closed','closed','','156-revision-2','','','2013-06-10 20:28:21','2013-06-11 00:28:21','',156,'http://divyayogamonteregie.org/web/?p=309',0,'revision','',0),(310,1,'2013-07-09 20:35:59','2013-07-10 00:35:59','<p style=\"text-align: justify;\">Three farmers gathered to evaluate and share their experiences from the year passed. Each had a hundred square meter of land on which they farmed. At the end of the meeting, the first farmer said, \"The situation was very hard and it will be much worse for next year.\"</p>\r\n<p style=\"text-align: justify;\">The second replied, \"You are certainly right. As a matter of fact, after working very hard the whole year, from sunrise to sunset, I only gained 1% profit after all expenses.\"</p>\r\n<p style=\"text-align: justify;\">Calculating his own numbers, the first farmer replied, \"I believe that my total profit is exactly the same as yours, which is 1%.\"</p>\r\n<p style=\"text-align: justify;\">The two of them looked at the third farmer and asked, \"How much profit did you make during this year?\"</p>\r\n<p style=\"text-align: justify;\">The third farmer kindly replied, \"Gentleman, with all due respect, I obtained a 5% profit during this year.\"</p>\r\n<p style=\"text-align: justify;\">That was followed by a long silence...</p>\r\n<p style=\"text-align: justify;\">\"How come? 5% profit?? That is impossible!!!! How did you do that???\"</p>\r\n<p style=\"text-align: justify;\">\"Very easy and simple math,\" said the third farmer. \"I made the very same 1% profit as you did. ... plus 4% that represents the immense pleasure to be able to enjoy this view, milk my cows and enjoy the most of my farm. That gives me 5% total profit.\"</p>\r\n<p style=\"text-align: justify;\"><b>Moral Of the Story:</b> All of us have to take care of our farm (that is our hundred square meter land) and get the maximum profit while enjoying every instant of our lives and work!!!</p>','Beginning A New Year','','inherit','closed','closed','','185-autosave','','','2013-07-09 20:35:59','2013-07-10 00:35:59','',185,'http://divyayogamonteregie.org/web/?p=310',0,'revision','',0),(311,1,'2013-06-10 21:35:47','2013-06-11 01:35:47','Three farmers gathered to evaluate and share their experiences from 2008. Each had a square meter of land on which they farmed. At the end of the meeting, the first farmer said, \"The situation was very hard and it will be much worse for 2009.\"\r\n\r\nThe second replied, \"You are certainly right. As a matter of fact, after working very hard the whole year, from sunrise to sunset, I only gained 1% profit after all expenses.\"\r\n\r\nCalculating his own numbers, the first farmer replied, \"I believe that my total profit is exactly the same as yours, which is 1%.\"\r\n\r\nThe two of them looked at the third farmer and asked, \"How much profit did you make during 2008?\"\r\n\r\nThe third farmer kindly replied, \"Gentleman, with all due respect, I obtained a 5% profit during 2008.\"\r\n\r\nThat was followed by a long silence...\r\n\r\n\"How come? 5% profit?? That is impossible!!!! How did you do that???\"\r\n\r\n\"Very easy and simple math,\" said the third farmer. \"I made the very same 1% profit as you did. ... plus 4% that represents the immense pleasure to be able to enjoy this view, milk my cows and enjoy the most of my farm. That gives me 5% total profit.\"\r\n\r\n<b>Moral Of the Story:</b> All of us have to take care of our farm (that is our square meter in this 2009) and get the maximum profit while enjoying every instant of our lives and work!!!','Beginning A New Year','','inherit','closed','closed','','185-revision-2','','','2013-06-10 21:35:47','2013-06-11 01:35:47','',185,'http://divyayogamonteregie.org/web/?p=311',0,'revision','',0),(312,1,'2013-07-09 18:05:13','2013-07-09 22:05:13','Three farmers gathered to evaluate and share their experiences from 2008. Each had a hundred square meter of land on which they farmed. At the end of the meeting, the first farmer said, \"The situation was very hard and it will be much worse for next year.\"\r\n\r\nThe second replied, \"You are certainly right. As a matter of fact, after working very hard the whole year, from sunrise to sunset, I only gained 1% profit after all expenses.\"\r\n\r\nCalculating his own numbers, the first farmer replied, \"I believe that my total profit is exactly the same as yours, which is 1%.\"\r\n\r\nThe two of them looked at the third farmer and asked, \"How much profit did you make during this year?\"\r\n\r\nThe third farmer kindly replied, \"Gentleman, with all due respect, I obtained a 5% profit during this year.\"\r\n\r\nThat was followed by a long silence...\r\n\r\n\"How come? 5% profit?? That is impossible!!!! How did you do that???\"\r\n\r\n\"Very easy and simple math,\" said the third farmer. \"I made the very same 1% profit as you did. ... plus 4% that represents the immense pleasure to be able to enjoy this view, milk my cows and enjoy the most of my farm. That gives me 5% total profit.\"\r\n\r\n<b>Moral Of the Story:</b> All of us have to take care of our farm (that is our hundred square meter land) and get the maximum profit while enjoying every instant of our lives and work!!!','Beginning A New Year','','inherit','closed','closed','','185-revision-3','','','2013-07-09 18:05:13','2013-07-09 22:05:13','',185,'http://divyayogamonteregie.org/web/?p=312',0,'revision','',0),(313,1,'2013-07-09 20:38:17','2013-07-10 00:38:17','<img class=\"alignnone size-full wp-image-90\" style=\"font-family: \'Open Sans\', sans-serif; font-size: 15px; font-style: normal; font-variant: normal; line-height: 1.62em;\" alt=\"giraffle\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/05/giraffle.png\" width=\"256\" height=\"265\" />\r\n<p style=\"text-align: justify;\">Bringing a giraffe into the world is a tall order. A baby giraffe falls 10 feet from its mother\'s womb and usually lands on its back. Within seconds it rolls over and tucks its legs under its body. From this position it considers the world for the first time and shakes off the last vestiges of the birthing fluid from its eyes and ears. Then the mother giraffe rudely introduces its offspring to the reality of life. In his book, \"A View from the Zoo\", Gary Richmond describes</p>\r\n<p style=\"text-align: justify;\">how a newborn giraffe learns its first lesson.\r\nThe mother giraffe lowers her head long enough to take a quick look. Then she positions herself directly over her calf. She waits for about a minute, and then she does the most unreasonable thing. She swings her long, pendulous leg outward and kicks her baby, so that it is sent sprawling head over heels.</p>\r\n<p style=\"text-align: justify;\">When it doesn\'t get up, the violent process is repeated over and over again. The struggle to rise is momentous. As the baby calf grows tired, the mother kicks it again to stimulate its efforts. Finally, the calf stands for the first time on its wobbly legs.</p>\r\n<p style=\"text-align: justify;\">Then the mother giraffe does the most remarkable thing. She kicks it off its feet again. Why? She wants it to remember how it got up. In the wild, baby giraffes must be able to get up as quickly as possible to stay with the herd, where there is safety. Lions, hyenas, leopards, and wild hunting dogs all enjoy young giraffes, and they\'d get it too, if the mother didn\'t teach her calf to get up quickly and get with it.</p>\r\n<p style=\"text-align: justify;\">The late Irving Stone understood this. He spent a lifetime studying greatness, writing novelized biographies of such men as Michelangelo, Vincent van Gogh, Sigmund Freud, and Charles Darwin.</p>\r\n<p style=\"text-align: justify;\">Stone was once asked if he had found a thread that runs through the lives of all these exceptional people. He said, \"I write about people who sometime in their life have a vision or dream of something that should be accomplished and they go to work.</p>\r\n<p style=\"text-align: justify;\">\"They are beaten over the head, knocked down, vilified, and for years they get nowhere. But every time they\'re knocked down they stand up. You cannot destroy these people. And at the end of their lives they\'ve accomplished some modest part of what they set out to do.\"</p>','Giraffe-mother and baby','','inherit','closed','closed','','89-autosave','','','2013-07-09 20:38:17','2013-07-10 00:38:17','',89,'http://divyayogamonteregie.org/web/?p=313',0,'revision','',0),(314,1,'2013-05-09 08:29:53','2013-05-09 12:29:53','<img class=\"alignnone size-full wp-image-90\" style=\"font-family: \'Open Sans\', sans-serif; font-size: 15px; font-style: normal; font-variant: normal; line-height: 1.62em;\" alt=\"giraffle\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/05/giraffle.png\" width=\"256\" height=\"265\" />\r\n\r\nBringing a giraffe into the world is a tall order. A baby giraffe falls 10 feet from its mother\'s womb and usually lands on its back. Within seconds it rolls over and tucks its legs under its body. From this position it considers the world for the first time and shakes off the last vestiges of the birthing fluid from its eyes and ears. Then the mother giraffe rudely introduces its offspring to the reality of life. In his book, \"A View from the Zoo\", Gary Richmond describes\r\n\r\nhow a newborn giraffe learns its first lesson.\r\nThe mother giraffe lowers her head long enough to take a quick look. Then she positions herself directly over her calf. She waits for about a minute, and then she does the most unreasonable thing. She swings her long, pendulous leg outward and kicks her baby, so that it is sent sprawling head over heels.\r\n\r\nWhen it doesn\'t get up, the violent process is repeated over and over again. The struggle to rise is momentous. As the baby calf grows tired, the mother kicks it again to stimulate its efforts. Finally, the calf stands for the first time on its wobbly legs.\r\n\r\nThen the mother giraffe does the most remarkable thing. She kicks it off its feet again. Why? She wants it to remember how it got up. In the wild, baby giraffes must be able to get up as quickly as possible to stay with the herd, where there is safety. Lions, hyenas, leopards, and wild hunting dogs all enjoy young giraffes, and they\'d get it too, if the mother didn\'t teach her calf to get up quickly and get with it.\r\n\r\nThe late Irving Stone understood this. He spent a lifetime studying greatness, writing novelized biographies of such men as Michelangelo, Vincent van Gogh, Sigmund Freud, and Charles Darwin.\r\n\r\nStone was once asked if he had found a thread that runs through the lives of all these exceptional people. He said, \"I write about people who sometime in their life have a vision or dream of something that should be accomplished and they go to work.\r\n\r\n\"They are beaten over the head, knocked down, vilified, and for years they get nowhere. But every time they\'re knocked down they stand up. You cannot destroy these people. And at the end of their lives they\'ve accomplished some modest part of what they set out to do.\"','Giraffe-mother and baby','','inherit','closed','closed','','89-revision-7','','','2013-05-09 08:29:53','2013-05-09 12:29:53','',89,'http://divyayogamonteregie.org/web/?p=314',0,'revision','',0),(316,1,'2013-07-09 20:08:45','2013-07-10 00:08:45','<p style=\"text-align: justify;\">These poems should help to enhance our morale and  in boosting energy. We need to keep our batteries charged and continuously encourage ourselves towards happiness, success and achieving our goals.</p>\r\n<p style=\"text-align: justify;\">These poems are compiled here for easy reference. We would like to thank the respective  original authors for their contribution.</p>','Poems','','inherit','closed','closed','','39-autosave','','','2013-07-09 20:08:45','2013-07-10 00:08:45','',39,'http://divyayogamonteregie.org/web/?p=316',0,'revision','',0),(317,1,'2013-07-09 19:37:46','2013-07-09 23:37:46','<p align=\"center\"><strong>Believe In Yourself And Your </strong>\n<strong> Dreams Will Come True</strong></p>\n<p align=\"center\">Know what you can and want to do in life.</p>\n<p align=\"center\">Set goals for yourself and work hard to achieve them.</p>\n<p align=\"center\">Strive to have fun every day.</p>\n<p align=\"center\">Use your creativity as a means of expressing your feelings.</p>\n<p align=\"center\">Be sensitive in viewing the world.</p>\n<p align=\"center\">Develop a sense of confidence.</p>\n<p align=\"center\">Be honest with yourself and with others.</p>\n<p align=\"center\">Follow your heart and adhere to your own truths.</p>\n<p align=\"center\">Know that the more you give the more you will receive.</p>\n<p align=\"center\">Believe in yourself and your dreams will come true</p>','Believe In Yourself ','','inherit','closed','closed','','55-autosave','','','2013-07-09 19:37:46','2013-07-09 23:37:46','',55,'http://divyayogamonteregie.org/web/?p=317',0,'revision','',0),(318,1,'2013-07-09 16:54:23','2013-07-09 20:54:23','<strong>Vinesh Saxena</strong> is yoga instructor trained by Patanjali yoga peeth. He has been practicing yoga since his childhood. Mr. Saxena is “self made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarship while he was student. He holds a Masters degree in Engineering and Masters in business administration along with an Accounting designation. He has worked a long time in engineering and has taught on part time basis in Concordia and McGill universities.\r\n\r\nHe retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his web site of foundation he also describes “Seven simple principals of life” if people follow these principals they can gain control of their life, be happy and self sufficient beings.\r\n\r\nAs a second objective of the foundation he also challenges to find answers to unanswered questions. i.e. “is there a soul” “Is there life after death”  “Does God exist”\r\n\r\nWith continuing theme of “help the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .\r\n\r\n&nbsp;\r\n\r\n<strong>Meera Trivedi</strong> is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.\r\n\r\nShe believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.','Instructors','','inherit','closed','closed','','6-revision-v1','','','2013-07-09 16:54:23','2013-07-09 20:54:23','',6,'http://divyayogamonteregie.org/web/?p=318',0,'revision','',0),(473,1,'2013-11-02 19:05:11','2013-11-02 23:05:11','<p style=\"text-align: justify;\"><strong>Vinesh Saxena</strong> is a Yoga instructor trained by Patanjali Yoga peeth. He has been practicing Yoga since his childhood. Mr. Saxena is “self-made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarships while he was a student. He holds a Masters degree in Engineering and Masters in business Administration along with an Accounting designation. He has worked an engineer and has taught on a part-time basis at Concordia and McGill Universities.</p>\r\n<p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his foundation web site he also “Seven simple principals of life”. If people follow these principals, they can gain control of their lives, be happy and self sufficient beings.</p>\r\n<p style=\"text-align: justify;\">As a second objective the foundation he also challenges to find answers to unanswered questions including “Is there a soul”? “Is there life after death”  “Does God exist”?</p>\r\n<p style=\"text-align: justify;\">With the continuing themes of “ helping the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>\r\n<p style=\"text-align: justify;\"><strong>Meera Trivedi</strong> is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p>\r\n<p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>','Instructors','','inherit','closed','closed','','6-revision-v1','','','2013-11-02 19:05:11','2013-11-02 23:05:11','',6,'http://divyayogamonteregie.org/web/?p=473',0,'revision','',0),(319,1,'2013-07-09 17:13:31','2013-07-09 21:13:31','<span style=\"color: #0000ff;\">To make basic yoga practice easily accessible to everyone without charge.</span>\r\n\r\n<span style=\"color: #0000ff;\">Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</span>\r\n\r\n<span style=\"color: #0000ff;\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</span>\r\n\r\n<span style=\"color: #0000ff;\">After yoga super food i. e. grapes and banana are available for Yogies.</span>\r\n\r\n<span style=\"color: #0000ff;\">Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</span>','Our mission','','inherit','closed','closed','','2-revision-v1','','','2013-07-09 17:13:31','2013-07-09 21:13:31','',2,'http://divyayogamonteregie.org/web/?p=319',0,'revision','',0),(321,1,'2013-07-09 17:04:54','2013-07-09 21:04:54','<h6><span style=\"color: #0000ff;\">Every last Saturday of the month we invite a guest speaker to talk on a relevant topic related to our mission. He talks to the people for 30-45 minutes.And then 15 minutes question answer period. After that we have vegetarian brunch.\r\n</span></h6>','Month end conferences','','inherit','closed','closed','','25-revision-v1','','','2013-07-09 17:04:54','2013-07-09 21:04:54','',25,'http://divyayogamonteregie.org/web/?p=321',0,'revision','',0),(320,1,'2013-07-09 20:05:01','2013-07-10 00:05:01','<p style=\"text-align: justify;\"><span style=\"color: #0000ff;\">To make basic yoga practice easily accessible to everyone without charge.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #0000ff;\">Founder of Divya Yoga Swami Ram Dev says “Good Health is birth right of mankind”. By performing yoga postures,/asanas,<b><i> </i></b>exercise<b>s<i>, </i></b> mudras, pranayams, meditation and by providing practical motivational discourse assist in developing stress free mind and disease free body. Help in taking care of body, mind and soul and living a happy, healthy and fulfilling life. Emphasize that the key to healthy physical body and sound mental state is under one’s control. By getting in touch with one’s inner self we can experience state of “Bliss and Anand”</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #0000ff;\">This Divya yoga is for people of all ages. We start out with warm-up exercises ( 12-15), sun salute and motivational discourse. Then we practice 90-100 combination of asanas, postures and exercises. We also perform some acupressure, 6 mudras, 7 pranayams and micro exercises for eyes, fingers, toes, face and neck. Also included is laughter yoga and super brain yoga. We end with ‘Shav Asana’, motivational poem, mantra and prayer,</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #0000ff;\">After yoga super food i. e. grapes and banana are available for Yogies.</span></p>\r\n<p style=\"text-align: justify;\"><span style=\"color: #0000ff;\">Yoga is a marvelous means of exercising, stretching, and relaxing the body/mind so it can be a healthy and long-lived. It helps in the co-ordination of the body,mind and soul. We also create an environment where people can interact for their betterment and good of society.</span></p>','Our mission','','inherit','closed','closed','','2-revision-v1','','','2013-07-09 20:05:01','2013-07-10 00:05:01','',2,'http://divyayogamonteregie.org/web/?p=320',0,'revision','',0),(322,1,'2013-07-09 17:53:42','2013-07-09 21:53:42','These poems should help to enhance our morale and  in boosting energy. We need to keep our batteries charged and continuously encourage ourselves towards happiness, success and achieving our goals.\r\n\r\nThese poems are compiled here for easy reference. We would like to thank the respective  original authors for their contribution.','Poems','','inherit','closed','closed','','39-revision-6','','','2013-07-09 17:53:42','2013-07-09 21:53:42','',39,'http://divyayogamonteregie.org/web/?p=322',0,'revision','',0),(323,1,'2013-06-15 22:01:25','2013-06-16 02:01:25','<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image0021.jpg\"><img class=\"aligncenter  wp-image-218\" alt=\"image002\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image0021-300x141.jpg\" width=\"450\" height=\"211\" /></a></p>\r\n<b>Vegetarian Food- Served and shared on last Saturday of the month</b>\r\n\r\nThe vegetarian main dishes are made by Meera Trivedi bt the  members of our yoga community also bring food items/fruits etc for sharing.\r\n\r\nThe Top kind of food is raw food. Early man used to eat fruits and nuts and survived for a long time\r\n\r\nThen he invented fire and started cooking. Which gave him a different taste of the same food and he liked and ate. The cooked food value has less food value than the raw one because some of the nutritional value is lost in cooking.\r\n\r\nThe third kind of food is preserved food, in which companies add preservatives to keep its color as it is. Food need to be digested in our body not to be preserved. Even if we rinse the food its preservative are not 100% washed away. They are harmful for our system. That is why it is best to eat fresh food then to eat cooked food and avoid preserved foods which are sold for convenience.\r\n\r\nIt is good to spend time in kitchen and cook good healthy food for the family. Food should have lots of aroma. Because aroma refreshes the mind.  The aromatic herbs should be added in the food after the food is cooked for it’s full effect. We should eat least amount of salt and minimize/cut off the intake of processed sugar. Instead we should eat different types of fruits each day.','Some vegetarian recipes','','inherit','closed','closed','','190-revision-v1','','','2013-06-15 22:01:25','2013-06-16 02:01:25','',190,'http://divyayogamonteregie.org/web/?p=323',0,'revision','',0),(488,1,'2013-07-09 20:12:50','2013-07-10 00:12:50','<p style=\"text-align: center;\"><a href=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image0021.jpg\"><img class=\"aligncenter  wp-image-218\" alt=\"image002\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/image0021-300x141.jpg\" width=\"450\" height=\"211\" /></a></p>\r\n<p style=\"text-align: justify;\"><b>Vegetarian Food- Served and shared on last Saturday of the month</b></p>\r\n<p style=\"text-align: justify;\">The vegetarian main dishes are made by Meera Trivedi bt the  members of our yoga community also bring food items/fruits etc for sharing.</p>\r\n<p style=\"text-align: justify;\">The Top kind of food is raw food. Early man used to eat fruits and nuts and survived for a long time</p>\r\n<p style=\"text-align: justify;\">Then he invented fire and started cooking. Which gave him a different taste of the same food and he liked and ate. The cooked food value has less food value than the raw one because some of the nutritional value is lost in cooking.</p>\r\n<p style=\"text-align: justify;\">The third kind of food is preserved food, in which companies add preservatives to keep its color as it is. Food need to be digested in our body not to be preserved. Even if we rinse the food its preservative are not 100% washed away. They are harmful for our system. That is why it is best to eat fresh food then to eat cooked food and avoid preserved foods which are sold for convenience.</p>\r\n<p style=\"text-align: justify;\">It is good to spend time in kitchen and cook good healthy food for the family. Food should have lots of aroma. Because aroma refreshes the mind.  The aromatic herbs should be added in the food after the food is cooked for it’s full effect. We should eat least amount of salt and minimize/cut off the intake of processed sugar. Instead we should eat different types of fruits each day.</p>','Some vegetarian recipes','','inherit','closed','closed','','190-revision-v1','','','2013-07-09 20:12:50','2013-07-10 00:12:50','',190,'http://divyayogamonteregie.org/web/?p=488',0,'revision','',0),(324,1,'2013-05-09 08:32:02','2013-05-09 12:32:02','These stories should help us in following two of the limbs of yoga –Yama and Niyama. They should help in our overall well being and positive affirmations.\r\n\r\nThese stories are compiled here for easy reference. We would like to thank the respective  original authors for their contribution','Stories','','inherit','closed','closed','','79-revision-10','','','2013-05-09 08:32:02','2013-05-09 12:32:02','',79,'http://divyayogamonteregie.org/web/?p=324',0,'revision','',0),(325,1,'2013-07-09 17:49:10','2013-07-09 21:49:10','Every Saturday morning from 9.00 to 11.00 am we participate in the session- a series of physical and breathing exercises in order to make the body flexible. We take care of our body, mind and soul with words of wisdom, positive affirmations, wise stories, motivational poem ,prayer and our mantra. Yoga is a complete lifestyle\r\n\r\nEvery last Saturday of month we have a guest speaker from 11.00 to 11.45 and after that we eat together. The food is provided by Vinesh Saxena Family foundation, Meera is preparing for us amazing vegetarian Indian food, and if you want to share with us a little plate you are welcome.\r\n\r\nIf it is your first day, please come earlier at 8.30am to take time to complete a information sheet. Mihaela is happy to meet you.\r\n\r\nSubsequently please come 10-15 minutes earlier in order to have time to arrange your mat etc, so we can start at 9.00am.\r\n\r\n&nbsp;\r\n\r\nPlease see below a short description of exercises that we practice every Saturday.\r\n<ol>\r\n	<li><b>Workout</b> – a series of 12-15 exercises to warm up your body: i. e. bend knee, bend forward, bend backward, bend right, bend left, stretch shoulders, jump, move hands, bend right knee, bend left knee, jumping jack, shake your body, downward/upward dog etc.</li>\r\n	<li><b>Sun Salutation</b> – Surya Namaskar, a flowing series of 12 postures which helps improve strength and flexibility of the muscles and spinal column. These postures also warm up the body and tone the abdominal muscles.</li>\r\n	<li><b>Motivational discourse</b> – our teacher Vinesh Saxena shares with us wise stories and practical advices for a happy, healthy, motivated and fulfilling life.</li>\r\n	<li><b>Acupressure</b> (an alternative medicine technique derived from acupuncture)– pressing with rotation your fingertips to relieve sinus problems,  middle of your palm for kidney problems and  under the thumb for the well being of thyroid.</li>\r\n	<li><b>Eyes and neck exercises</b> – we take care of every part of the body.\r\nEyes: move pupil right, left, up and down; rotate clockwise, then counter clockwise. Stretch right arm in front, thumb up, focus on thumb when bringing hand towards nose and then take it away. Extend both arms infront, gaze on middle of thumb. Move arms apart until you still see-stay in this position for 30 seconds, move arms back<b>     </b>\r\nNeck: bend left, right, forward, and backward, rotate clockwise, then counter clockwise, look to the right and look to the left.</li>\r\n	<li><b>Seven Pranayamas (</b> breathing exercises) When we do yoga 75% of benefit comes from breathing exercises and 25% from asanas. We integrate 7 breathing exercises during our practice: Bhastrika, Kapal Bhati, Anulom Vilom, bahya(Agnisar Kriya), Bhramari, Ujjayi and Udgeeth.</li>\r\n	<li><b>6 mudras </b>(positioning of fingers) - are used in conjunction with pranayama, generally while seated , to stimulate different parts of the body involved with breathing and to affect the flow of prana in the body.</li>\r\n	<li><b>100 postures, exercises and asanas</b> – with these we increase flexibility from head to toe. We are also doing <b>stretching</b> exercises to help our bodies to stimulate the lymphatic system, focus on key areas of the body including the head and neck area, shoulders, fingers, arms, abdomen, hips, knees and feet.\r\nWe do exercises for relieving arthritis, diabetes, heart diseases, cholesterol, back pains, insomnia etc.</li>\r\n	<li><b>Laughter yoga </b>– with Meera - a revolutionary idea – simple and profound. Invented by Dr. Madan Kataria, a Physician from Mumbai. Today, it has become a worldwide phenomenon with more than 6000 Social Laughter Clubs in about 60 countries. We combine Unconditional Laughter with Pranayama. The concept of Laughter Yoga is based on a scientific fact that the body cannot differentiate between fake and real laughter. One gets the same physiological and psychological benefit.\r\nWe also do <b>Super Brain yoga</b> to stimulate brain cells and improve memory. This form of yoga has been invented by a Virginia doctor and is very popular in medical community.</li>\r\n	<li><b>Shavasana </b>– After the yoga session lie flat on back on the mat:. Shavasana allows the body a chance to regroup and reset itself. After a balanced practice, the entire body has been stretched, contracted, twisted and inverted. The body, mind and soul gets complete rest, power, motivation and happiness.</li>\r\n	<li><b>Motivational poem</b> – is read at the end of the session to keep us motivated, focused and recharge our batteries.</li>\r\n	<li><b>Mantra</b> – at the end we repeat and acknowledge our mantra – IF IT IS TO BE IT IS UP TO ME.</li>\r\n</ol>\r\n<p style=\"text-align: center;\"><span style=\"color: #0000ff;\"><strong>You are welcome to join us every Saturday morning from 9.00 to 11.00 </strong></span>\r\n<span style=\"color: #0000ff;\"><strong>at Chambly Academy 675 Green, St. Lambert, QC, J4P 1V9</strong></span></p>','What we do !','','inherit','closed','closed','','12-revision-7','','','2013-07-09 17:49:10','2013-07-09 21:49:10','',12,'http://divyayogamonteregie.org/web/?p=325',0,'revision','',0),(327,1,'2013-07-09 17:56:52','2013-07-09 21:56:52','<b>\r\n</b><b>\r\n</b>A man feared his wife wasn\'t hearing as well as she used to and he thought she might need a hearing aid. Not quite sure how to approach her, he called the family Doctor to discuss the problem.\r\n\r\nThe Doctor told him there is a simple informal test the husband could perform to give the Doctor a better idea about her hearing loss.\r\n\r\nHere\'s what you do,\" said the Doctor, \"stand about 40 feet away from her, and in a normal conversational speaking tone see if she hears you. If not, go to 30 feet, then 20 feet, and so on until you get a response.\"\r\n\r\nThat evening, the wife is in the kitchen cooking dinner, and he was in the den. He says to himself, \"I\'m about 40 feet away, let\'s see what happens.\" Then in a normal tone he asks, \'Honey, what\'s for dinner?\"\r\n\r\nNo response.\r\n\r\nSo the husband moves to closer to the kitchen, about 30 feet from his wife and repeats, \"Honey, what\'s for dinner?\"\r\n\r\nStill no response.\r\n\r\nNext he moves into the dining room where he is about 20 feet from his wife and asks, Honey, what\'s for dinner?\"\r\n\r\nAgain he gets no response.\r\n\r\nSo he walks up to the kitchen door, about 10 feet away. \"Honey, what\'s for dinner?\"\r\n\r\nAgain there is no response.\r\n\r\nSo he walks right up behind her. \"Honey, what\'s for dinner?\"\r\n\r\n\"James, for the FIFTH time I\'ve said, Lima Beans!\"\r\n\r\n<b>The problem may not be with the other person as we always think, could be very much within us!</b>\r\n\r\n&nbsp;','A problem may be me not other ','','inherit','closed','closed','','179-revision-3','','','2013-07-09 17:56:52','2013-07-09 21:56:52','',179,'http://divyayogamonteregie.org/web/?p=327',0,'revision','',0),(326,1,'2013-06-15 23:34:59','2013-06-16 03:34:59','<div>\r\n<div>\r\n\r\n<em><span style=\"text-decoration: underline;\"><strong>From volunteers</strong></span></em>\r\n\r\n<em><strong>Monique</strong></em>\r\n\r\nSuite à un accident de voiture survenu il y a plusieurs années, mon corps était dans une souffrance chronique, mon esprit était pris dans des blocages inconscients de perturbations, de découragement, de tourment, de peur, et d’angoisse.  Puis un jour, j’ai fait la découverte du yoga.\r\n\r\nAu début, lors de mes pratiques, je n’arrivais pas à synchroniser les mouvements, mon corps était rigide et tendu,  je n’étais pas concentrée.  Après un certain temps, j’ai abandonné  les cours en me disant que je n’y arriverai jamais, que mon corps ne pouvait pas suivre, j’avais trop mal, je n’avais pas la dextérité  pour faire les postures, ni la flexibilité, l’attention, la concentration, etc., etc.\r\n\r\nUn peu plus tard, j’ai vu une annonce dans le journal qu’il y avait des cours de yoga offerts gratuitement à St-Lambert.  J’ai décidé de faire un autre essai.  Puis voilà  que ma vie s’est transformée.  J’ai commencé le yoga une fois semaine. Après quelques semaines de pratique,  j’ai été approchée par le professeur de yoga pour être bénévole, pour accueillir les gens. J’ai accepté de m’engager dans cette belle aventure dont je fais toujours partie depuis déjà presque 3 ans. Depuis,  j’ai exploré différentes approches de yoga qui m’ont amenée à un changement positif de vie complète.  Une bonne hygiène alimentaire, une flexibilité de mon corps et de mon esprit, de mes attitudes et comportements. J’ai appris à  cultiver le calme mental et ma force vitale intérieure par les exercices de respiration et de méditation. J’ai amélioré mon équilibre mental et physique,  l’écoute de mon corps, ma concentration et ma mémoire, ma coordination et l’acceptation de ce qui est.\r\n\r\nJe vis maintenant mon quotidien dans un mieux-être. Il y a encore place à l’amélioration, mais chaque jour j’intègre un style de vie de yoga qui m’amène de plus en plus à faire l’expérience d’une paix intérieure.\r\n\r\n*****************************<wbr></wbr>******************************<wbr></wbr>******************\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Michel …. 74</strong></span>\r\n\r\nMy duties:-\r\n\r\nTo be always ready to help\r\n\r\nAbout me\r\n\r\nI am a very happy man. I enjoy the company of nice people.\r\n\r\nWhat yoga means to me? How it has affected my life?\r\n\r\nYoga is for me an extraordinary choice of movements and exercices created by people who knew the human body and soul.\r\n\r\nTwo hours of yoga per week complement my daily exercices that I do since 50 years plus. My body appreciate yoga and I feel balanced.\r\n\r\nMarathon Runner\r\n\r\nBénévole (mes tâches)\r\nÊtre toujours prêt à aider\r\n\r\nÀ propos de moi\r\nJe suis un homme très heureux. J\'aime la compagnie des gens sympathiques.\r\n\r\nCe que le yoga signifie pour moi? Comment cela a affecté ma vie?\r\n\r\nLe yoga est pour moi un choix extraordinaire de mouvements et d\'exercices créés par des gens qui connaissaient le corps humain et l\'âme.\r\nDeux heures de yoga par semaine complètent mes exercices quotidiens que je fais depuis 50 ans et plus. Mon corps apprécie le yoga et je me sens équilibrée.\r\n\r\n<strong><span style=\"text-decoration: underline;\"> ******************************<wbr></wbr>******************************<wbr></wbr>******************</span></strong>\r\n\r\n<strong><span style=\"text-decoration: underline;\">Bénévole : Mihaela Frandes</span></strong>\r\n\r\nMon rôle\r\n\r\nJ’arrive chaque samedi matin à 8.30am à l’Académie Chambly pour accueillir les nouvelles personnes. Je leur demande de compléter une fiche d’inscription et leur explique un peu comment se déroulent les cours.\r\n\r\nÀ propos de moi\r\n\r\nJ’ai commencé les cours de yoga offerts par Meera Trivedi et Vinesh Saxena en juin 2010 et depuis j’y suis toujours fidèle J’avoue que le samedi est ma journée de la semaine la plus heureuse. Depuis, je fais du yoga régulièrement. Je suis d’origine roumaine, ma formation est en biochimie et dans la vie quotidienne je me préoccupe beaucoup de ma nutrition et j’aime beaucoup la nature. En été  je fais du vélo et en hiver j’adore faire du ski de fond. J’aime beaucoup aider les gens et le yoga m’aide à accomplir le bonheur dans ma vie. Ma dernière passion est la préparation de pain au levain – faire du bon pain est pour moi un immense plaisir.\r\n\r\n&nbsp;\r\n\r\nQu’est que yoga signifie pour moi. Comment a-t-elle affecte ma vie\r\n\r\nLe yoga a amélioré la flexibilité de mon corps et esprit ainsi que ma santé. J’adore faire du yoga et je sens que le yoga est une marche dans mon évolution.\r\n\r\n&nbsp;\r\n\r\nVolunteer\r\n\r\nMy duties: I came every Saturday morning at 8.30 at Chambly Academy in Saint Lambert to accommodate the new peoples. I give them the form to fill-up and explain a little bit how we function here.\r\n\r\nAbout me: I started the yoga classes given by Meera Trivedi and Vinesh Saxena in July 2010 and since then I do yoga on a regular basis. Saturday is the happiest day of my week. I am Rumanian, I studied biochemistry and I am interested in nutrition, healthy eating, I try to come closer to nature. In summer I do a lot of bike and in winter I love the cross-country sky. I love helping people; yoga is helping me to maintain a happy mood. Now I’m in love with making sourdough bread, making bread makes me happy.\r\n\r\nWhat yoga means for me. How it has affected my life: Yoga gave me a happiness that I cannot explain; friends, a more conscious life, a flexible body, and a healthy body, a clear mind. I love doing yoga, and I am pretty sure that yoga is only a step in my evolution.\r\n\r\n******************************<wbr></wbr>******************************<wbr></wbr>******************\r\n\r\n<span style=\"text-decoration: underline;\"><strong>From other participants</strong></span>\r\n\r\nThis yoga class is a precious time for me. I may arrive out of breath or lacking of energy, or a bit annoyed at my brain « monkey chatter » but I always leave rejuvenated physically, mentally and emotionally. Joining in, I am giving my whole body the royal treatment from head to toes, stretching out the kinks and limbering up muscles and joints I was not aware of. It is quality time I give to myself. When I am there, I have my own space. But there are people around me and I feel I belong, that I am surrounded by positive energy. The space we are in fills, it feels to me, with well being respect, silent communication. Thank you to all who make this possible. I was hooked the first time I went.\r\n\r\n<strong><span style=\"text-decoration: underline;\">Charlene Olse</span></strong>\r\n\r\n------------------------------<wbr></wbr>------------------------------<wbr></wbr>------------------------------<wbr></wbr>---------------------------\r\n\r\nJe passais des moments très difficiles suite à un deuil, mon amie m’a conseillé de faire du yoga.\r\n\r\nJ’ai essayé une première séance et je me suis sentie vraiment bien, les mouvements accompagnés de la respiration fluide ont effectivement apaisé mon âme, mon esprit et mon corps et depuis je ne peux rater une séance. Je fais du yoga seule à la maison, mais je m’arrête au bout de 5 minutes, cependant du yoga en groupe avec la belle ambiance, la bonne motivation et l’encouragement de l’entraîneur m’a permis de bien vivre mon deuil et surtout de bien gérer mes sentiments et mes émotions.\r\n\r\nUn grand merci pour ce que vous faites pour le groupe de yoga.\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Lynda</strong></span>\r\n\r\n------------------------------<wbr></wbr>------------------------------<wbr></wbr>------------------------------<wbr></wbr>---------------------------\r\n\r\nLe yoga diminue mon stress, assouplit mon corps et lubrifie mes articulations. Certaines positions ou exercices libèrent des structures énergétiques associées à des mémoires antérieures. L’énergie circule plus librement dans mon corps et je me sens revivifié. J’apprécie aussi le fait que ce soit une activité non compétitive.\r\n\r\nJe remercie M. Saxena de sa très grande disponibilité ainsi que toute son équipe de bénévoles.\r\n\r\n<span style=\"text-decoration: underline;\"><strong> Marcel Baril</strong></span>\r\n\r\n------------------------------<wbr></wbr>------------------------------<wbr></wbr>------------------------------<wbr></wbr>---------------------------\r\n\r\nLe yoga m’a apporté beaucoup de paix intérieure. J’aime la combinaison de l’exercice physique et le mental, le rire…. Cela équilibre mon moral, améliore mon corps physique, m’aide à  pratiquer la méditation et la relaxation et surtout à mieux respirer. J’aime beaucoup l’ambiance généreuse, le don de soi des bénévoles. Je crois de plus en plus à la bonté de l’être humain.\r\n\r\nMerci\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Colette</strong></span>\r\n\r\n------------------------------<wbr></wbr>------------------------------<wbr></wbr>------------------------------<wbr></wbr>---------------------------\r\n\r\nMon mari est décédé il y a trois ans. Je fus effondrée. Depuis ce temps je pratique le yoga avec Monsieur Saxena. Cet exercice m’a apporté l’équilibre physique et la paix de l’âme.\r\n\r\nGinette Paradis\r\n\r\n------------------------------<wbr></wbr>------------------------------<wbr></wbr>------------------------------<wbr></wbr>---------------------------\r\n\r\nJe dois remercier Mr et Mme Saxena pout leur dévouement et leur disponibilité  apportés chaque samedi.\r\n\r\nPour moi,ce que j\'aime le plus c\'est bien ses histoires qui m\'amênent a penser positivement,ensuite il y a les exercises\r\n\r\nqui aident a calmer le mental et a controler le stress,c\'est bien.\r\n\r\nMais tant qu\'aux exercises d\'accupressions pour les sinus ,j\'en vois pas d\'effet immédiat, c\'est probablement a long\r\n\r\nterme que l\'effet se fait sentir.\r\n\r\nLes nouveaux mouvements ou exercises sont les bienvenues ,j\'en suis certain, pour la pluparts des participants.\r\n\r\nApres deux heures de participations la position a l\'horizontale (shawaseen)ou repos est très bien appréciée.\r\n\r\nC\'est durant le reste de la journée qu\'on sent une certaine fatigue et qu\'il faut récupérer,en un mot c\'est sûrement\r\n\r\nbénifique pour la santé.\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Renald Couture</strong></span>\r\n\r\n------------------------------<wbr></wbr>------------------------------<wbr></wbr>------------------------------<wbr></wbr>-----------------\r\n\r\nWhat would I do without Yoga? it has helped me to live a fulfilling life!\r\n\r\nWhen I was 12 years old, I was one day about to sit down on a kitchen chair when my brother took it away from underneath me. I fell had on my coccyx and thought nothing more of it, thinking that my pride was hurt more than my back. But by the age of 18 I started getting persistent backaches, and from then on I became a \'back sufferer\'. By the age of 30 I wasn\'t able to wash a kitchen floor or do an hour\'s gardening without a backache for the rest of the day, and few days after. I wasn\'t even sure I could have children with such a bad back, so I did a series of adjustments over a year and a half at a chiropractor\'s, and tried acupuncture. Both helped somewhat, but certainly did not cure my condition. I did have two children and a full time job teaching, but backaches became a fact of life, always there in the background.\r\n\r\nI came across Yoga in my middle 30\'s but never had enough time to pursue it diligently. It was only after I retired that I started doing it seriously, and I now wish I had allowed no excuses to not do it consistently earlier. I now do Yoga for an hour every day, following the type of Mr. Saxena\'s exercises on Saturday mornings, and take exercises out of books. I have never felt better! Today at 68 I feel better that I did at 30. I can now do gardening all day, shovel snow, wash floors, and walk good long walks with no consequent pain. The injury to my back is still there, but my back mussels are now strong enough to support me in my activities.\r\n\r\nDoing the exercises is only part of my Yoga practice. I am careful to eat only food that is nutritious for my body, and I try to keep as much as possible a positive outlook on life.\r\n\r\nYoga is a lifestyle - it takes care of every aspect of one\'s being, and I intend to keep well and healthy to my dying day.\r\n\r\n<span style=\"text-decoration: underline;\"><strong>Mary Brunet</strong></span>\r\n\r\n------------------------------<wbr></wbr>------------------------------<wbr></wbr>------------------------------<wbr></wbr>---------\r\n\r\n</div>\r\n</div>','Testimony from Participants','','inherit','closed','closed','','31-revision-4','','','2013-06-15 23:34:59','2013-06-16 03:34:59','',31,'http://divyayogamonteregie.org/web/?p=326',0,'revision','',0),(328,1,'2013-07-09 17:59:13','2013-07-09 21:59:13','&nbsp;\r\n\r\nA well known speaker started off his seminar by holding up a $20 bill. In the room of 200, he asked, \"Who would like this $20 bill?\"\r\n\r\nHands started going up.\r\n\r\nHe said, \"I am going to give this $20 to one of you but first, let me do this.\" He proceeded to crumple the dollar bill up.\r\n\r\nHe then asked, \"Who still wants it?\"\r\n\r\nStill the hands were up in the air.\r\n\r\n\"Well,\" he replied, \"What if I do this?\" And he dropped it on the ground and started to grind it into the floor with his shoe.\r\n\r\nHe picked it up, now all crumpled and dirty. \"Now who still wants it?\" Still the hands went into the air.\r\n\r\n\"My friends, you have all learned a very valuable lesson. No matter what I did to the money, you still wanted it because it did not decrease in value. It was still worth $20.\r\n\r\nMany times in our lives, we are dropped, crumpled, and ground into the dirt by the decisions we make and the circumstances that come our way.\r\n\r\nWe feel as though we are worthless. But no matter what has happened or what will happen, you will never lose your value. You have divine soul. You are special - Don\'t ever forget it!','A value','','inherit','closed','closed','','156-revision-3','','','2013-07-09 17:59:13','2013-07-09 21:59:13','',156,'http://divyayogamonteregie.org/web/?p=328',0,'revision','',0),(329,1,'2013-07-09 18:09:47','2013-07-09 22:09:47','Three farmers gathered to evaluate and share their experiences from the year passed. Each had a hundred square meter of land on which they farmed. At the end of the meeting, the first farmer said, \"The situation was very hard and it will be much worse for next year.\"\r\n\r\nThe second replied, \"You are certainly right. As a matter of fact, after working very hard the whole year, from sunrise to sunset, I only gained 1% profit after all expenses.\"\r\n\r\nCalculating his own numbers, the first farmer replied, \"I believe that my total profit is exactly the same as yours, which is 1%.\"\r\n\r\nThe two of them looked at the third farmer and asked, \"How much profit did you make during this year?\"\r\n\r\nThe third farmer kindly replied, \"Gentleman, with all due respect, I obtained a 5% profit during this year.\"\r\n\r\nThat was followed by a long silence...\r\n\r\n\"How come? 5% profit?? That is impossible!!!! How did you do that???\"\r\n\r\n\"Very easy and simple math,\" said the third farmer. \"I made the very same 1% profit as you did. ... plus 4% that represents the immense pleasure to be able to enjoy this view, milk my cows and enjoy the most of my farm. That gives me 5% total profit.\"\r\n\r\n<b>Moral Of the Story:</b> All of us have to take care of our farm (that is our hundred square meter land) and get the maximum profit while enjoying every instant of our lives and work!!!','Beginning A New Year','','inherit','closed','closed','','185-revision-4','','','2013-07-09 18:09:47','2013-07-09 22:09:47','',185,'http://divyayogamonteregie.org/web/?p=329',0,'revision','',0),(330,1,'2013-07-09 18:18:29','2013-07-09 22:18:29','<img class=\"alignnone size-full wp-image-90\" style=\"font-family: \'Open Sans\', sans-serif; font-size: 15px; font-style: normal; font-variant: normal; line-height: 1.62em;\" alt=\"giraffle\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/05/giraffle.png\" width=\"256\" height=\"265\" />\r\n\r\nBringing a giraffe into the world is a tall order. A baby giraffe falls 10 feet from its mother\'s womb and usually lands on its back. Within seconds it rolls over and tucks its legs under its body. From this position it considers the world for the first time and shakes off the last vestiges of the birthing fluid from its eyes and ears. Then the mother giraffe rudely introduces its offspring to the reality of life. In his book, \"A View from the Zoo\", Gary Richmond describes\r\n\r\nhow a newborn giraffe learns its first lesson.\r\nThe mother giraffe lowers her head long enough to take a quick look. Then she positions herself directly over her calf. She waits for about a minute, and then she does the most unreasonable thing. She swings her long, pendulous leg outward and kicks her baby, so that it is sent sprawling head over heels.\r\n\r\nWhen it doesn\'t get up, the violent process is repeated over and over again. The struggle to rise is momentous. As the baby calf grows tired, the mother kicks it again to stimulate its efforts. Finally, the calf stands for the first time on its wobbly legs.\r\n\r\nThen the mother giraffe does the most remarkable thing. She kicks it off its feet again. Why? She wants it to remember how it got up. In the wild, baby giraffes must be able to get up as quickly as possible to stay with the herd, where there is safety. Lions, hyenas, leopards, and wild hunting dogs all enjoy young giraffes, and they\'d get it too, if the mother didn\'t teach her calf to get up quickly and get with it.\r\n\r\nThe late Irving Stone understood this. He spent a lifetime studying greatness, writing novelized biographies of such men as Michelangelo, Vincent van Gogh, Sigmund Freud, and Charles Darwin.\r\n\r\nStone was once asked if he had found a thread that runs through the lives of all these exceptional people. He said, \"I write about people who sometime in their life have a vision or dream of something that should be accomplished and they go to work.\r\n\r\n\"They are beaten over the head, knocked down, vilified, and for years they get nowhere. But every time they\'re knocked down they stand up. You cannot destroy these people. And at the end of their lives they\'ve accomplished some modest part of what they set out to do.\"','Giraffe-mother and baby','','inherit','closed','closed','','89-revision-8','','','2013-07-09 18:18:29','2013-07-09 22:18:29','',89,'http://divyayogamonteregie.org/web/?p=330',0,'revision','',0),(331,1,'2013-06-10 20:12:23','2013-06-11 00:12:23','Sir Winston Churchill took three years getting through eighth grade because he had trouble learning English. It seems ironic that years later Oxford University asked him to address its commencement exercises.\r\n\r\nHe arrived with his usual props. A cigar, a cane and a top hat accompanied Churchill wherever he went. As Churchill approached the podium, the crowd rose in appreciative applause. With unmatched dignity, he settled the crowd and stood confident before his admirers. Removing the cigar and carefully placing the top hat on the podium, Churchill gazed at his waiting audience. Authority rang in Churchill\'s voice as he shouted, \"Never give up!\"\r\n\r\nSeveral seconds passed before he rose to his toes and repeated: \"Never give up!\" His words thundered in their ears. There was a deafening silence as Churchill reached for his hat and cigar, steadied himself with his cane and left the platform. His commencement address was finished','Never give up','','inherit','closed','closed','','137-revision-2','','','2013-06-10 20:12:23','2013-06-11 00:12:23','',137,'http://divyayogamonteregie.org/web/?p=331',0,'revision','',0),(332,1,'2013-07-09 20:40:05','2013-07-10 00:40:05','<p style=\"text-align: justify;\">Sir Winston Churchill took three years getting through eighth grade because he had trouble learning English. It seems ironic that years later Oxford University asked him to address its commencement exercises.</p>\r\n<p style=\"text-align: justify;\">He arrived with his usual props. A cigar, a cane and a top hat accompanied Churchill wherever he went. As Churchill approached the podium, the crowd rose in appreciative applause. With unmatched dignity, he settled the crowd and stood confident before his admirers. Removing the cigar and carefully placing the top hat on the podium, Churchill gazed at his waiting audience. Authority rang in Churchill\'s voice as he shouted, \"Never give up!\"</p>\r\n<p style=\"text-align: justify;\">Several seconds passed before he rose to his toes and repeated: \"Never give up!\" His words thundered in their ears. There was a deafening silence as Churchill reached for his hat and cigar, steadied himself with his cane and left the platform. His commencement address was finished</p>','Never give up','','inherit','closed','closed','','137-autosave','','','2013-07-09 20:40:05','2013-07-10 00:40:05','',137,'http://divyayogamonteregie.org/web/?p=332',0,'revision','',0),(334,1,'2013-07-09 20:48:03','2013-07-10 00:48:03','<p style=\"text-align: justify;\">This is a  parable of a farmer who owned an old mule. The mule fell into the farmer\'s well. The farmer heard the mule \'braying\' -- or whatever mules do when they fall into wells. After carefully assessing the situation, the farmer felt sorry for the mule, but decided that neither the mule nor the well was worth saving. Instead, he called his neighbors together and told them what had happened and asked them to help haul dirt to bury the old mule in the well and put him out of his misery.</p>\r\n<p style=\"text-align: justify;\">Initially, the old mule was hysterical! But as the farmer and his neighbors continued shoveling and the dirt hit his back, a thought struck him. It suddenly dawned on him that every time a shovel load of dirt landed on his back: he should shake it off and step up! This is what the old mule did, blow after blow. \"Shake it off and step up... shake it off and step up... shake it off and step up!\" he repeated to encourage himself.</p>\r\n<p style=\"text-align: justify;\">No matter how painful the blows, or distressing the situation seemed, the old mule fought \"panic\" and just kept right on shaking it off and stepping up! You guessed it! It wasn\'t long before the old mule, battered and exhausted, stepped triumphantly over the wall of that well! What seemed like it would bury him, actually end up blessing him. All because of the manner in which he handled his adversity.</p>','Shake it off and step up','','inherit','closed','closed','','150-autosave','','','2013-07-09 20:48:03','2013-07-10 00:48:03','',150,'http://divyayogamonteregie.org/web/?p=334',0,'revision','',0),(335,1,'2013-06-10 21:34:11','2013-06-11 01:34:11','On a beautiful morning, an older gentleman, aged 75, was sitting with his son when he asked his son what was sitting in the window. He himself was not able to recognize what it was, due to his weak eyesight.\r\n\r\nHis son replied, \"That is the crow.\"\r\n\r\nDue to his age, the older man forgot and asked again.\r\n\r\nHis son again replied the same thing, \"That is the crow.\"\r\n\r\nThis exchange continued for seven to eight times when, and at last, his son got annoyed and replied with anger, \"Why are you asking the same thing again and again?\"\r\n\r\nThe old man replied with tears in his eyes. \"Son, don\'t get angry. When you were at the age of 4 years you asked me the same question 40 times and I never got angry','Sometimes We Forget... Remember To Be Kind','','inherit','closed','closed','','183-revision-2','','','2013-06-10 21:34:11','2013-06-11 01:34:11','',183,'http://divyayogamonteregie.org/web/?p=335',0,'revision','',0),(336,1,'2013-07-09 20:49:40','2013-07-10 00:49:40','<p style=\"text-align: justify;\">On a beautiful morning, an older gentleman, aged 75, was sitting with his son when he asked his son what was sitting in the window. He himself was not able to recognize what it was, due to his weak eyesight.</p>\r\n<p style=\"text-align: justify;\">His son replied, \"That is the crow.\"</p>\r\n<p style=\"text-align: justify;\">Due to his age, the older man forgot and asked again.</p>\r\n<p style=\"text-align: justify;\">His son again replied the same thing, \"That is the crow.\"</p>\r\n<p style=\"text-align: justify;\">This exchange continued for seven to eight times when, and at last, his son got annoyed and replied with anger, \"Why are you asking the same thing again and again?\"</p>\r\n<p style=\"text-align: justify;\">The old man replied with tears in his eyes. \"Son, don\'t get angry. When you were at the age of 4 years you asked me the same question 40 times and I never got angry</p>','Sometimes We Forget... Remember To Be Kind','','inherit','closed','closed','','183-autosave','','','2013-07-09 20:49:40','2013-07-10 00:49:40','',183,'http://divyayogamonteregie.org/web/?p=336',0,'revision','',0),(337,1,'2013-06-10 20:26:42','2013-06-11 00:26:42','A vacationing American businessman standing on the pier of a quaint coastal fishing village in southern Mexico watched as a small boat with just one young Mexican fisherman pulled into the dock. Inside the small boat were several large yellowfin tuna. Enjoying the warmth of the early afternoon sun, the American complimented the Mexican on the quality of his fish.\r\n\r\n\"How long did it take you to catch them?\" the American casually asked.\r\n\r\n\"Oh, a few hours,\" the Mexican fisherman replied.\r\n\r\n\"Why don\'t you stay out longer and catch more fish?\" the American businessman then asked.\r\n\r\nThe Mexican warmly replied, \"With this I have more than enough to support my family\'s needs.\"\r\n\r\nThe businessman then became serious, \"But what do you do with the rest of your time?\"\r\n\r\nResponding with a smile, the Mexican fisherman answered, \"I sleep late, play with my children, watch ballgames, and take siesta with my wife. Sometimes in the evenings I take a stroll into the village to see my friends, play the guitar, sing a few songs...\"\r\n\r\nThe American businessman impatiently interrupted, \"Look, I have an MBA from Harvard, and I can help you to be more profitable. You can start by fishing several hours longer every day. You can then sell the extra fish you catch. With the extra money, you can buy a bigger boat. With the additional income that larger boat will bring, before long you can buy a second boat, then a third one, and so on, until you have an entire fleet of fishing boats.\"\r\n\r\nProud of his own sharp thinking, he excitedly elaborated a grand scheme which could bring even bigger profits, \"Then, instead of selling your catch to a middleman you\'ll be able to sell your fish directly to the processor, or even open your own cannery. Eventually, you could control the product, processing and distribution. You could leave this tiny coastal village and move to Mexico City, or possibly even Los Angeles or New York City, where you could even further expand your enterprise.\"\r\n\r\nHaving never thought of such things, the Mexican fisherman asked, \"But how long will all this take?\"\r\n\r\nAfter a rapid mental calculation, the Harvard MBA pronounced, \"Probably about 15-20 years, maybe less if you work really hard.\"\r\n\r\n\"And then what, señor?\" asked the fisherman.\r\n\r\n\"Why, that\'s the best part!\" answered the businessman with a laugh. \"When the time is right, you would sell your company stock to the public and become very rich. You would make millions.\"\r\n\r\n\"Millions? Really? What would I do with it all?\" asked the young fisherman in disbelief.\r\n\r\nThe businessman boasted, \"Then you could happily retire with all the money you\'ve made. You could move to a quaint coastal fishing village where you could sleep late, play with your grandchildren, watch ballgames, and take siesta with your wife. You could stroll to the village in the evenings where you could play the guitar and sing with your friends all you want.\"\r\nThe moral of the story is: <strong>Know what really matters in life, and you may find that it is already much closer than you think</strong>','The  Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?','','inherit','closed','closed','','154-revision-2','','','2013-06-10 20:26:42','2013-06-11 00:26:42','',154,'http://divyayogamonteregie.org/web/?p=337',0,'revision','',0),(338,1,'2013-07-09 20:50:59','2013-07-10 00:50:59','<p style=\"text-align: justify;\">A vacationing American businessman standing on the pier of a quaint coastal fishing village in southern Mexico watched as a small boat with just one young Mexican fisherman pulled into the dock. Inside the small boat were several large yellowfin tuna. Enjoying the warmth of the early afternoon sun, the American complimented the Mexican on the quality of his fish.</p>\r\n<p style=\"text-align: justify;\">\"How long did it take you to catch them?\" the American casually asked.</p>\r\n<p style=\"text-align: justify;\">\"Oh, a few hours,\" the Mexican fisherman replied.</p>\r\n<p style=\"text-align: justify;\">\"Why don\'t you stay out longer and catch more fish?\" the American businessman then asked.</p>\r\n<p style=\"text-align: justify;\">The Mexican warmly replied, \"With this I have more than enough to support my family\'s needs.\"</p>\r\n<p style=\"text-align: justify;\">The businessman then became serious, \"But what do you do with the rest of your time?\"</p>\r\n<p style=\"text-align: justify;\">Responding with a smile, the Mexican fisherman answered, \"I sleep late, play with my children, watch ballgames, and take siesta with my wife. Sometimes in the evenings I take a stroll into the village to see my friends, play the guitar, sing a few songs...\"</p>\r\n<p style=\"text-align: justify;\">The American businessman impatiently interrupted, \"Look, I have an MBA from Harvard, and I can help you to be more profitable. You can start by fishing several hours longer every day. You can then sell the extra fish you catch. With the extra money, you can buy a bigger boat. With the additional income that larger boat will bring, before long you can buy a second boat, then a third one, and so on, until you have an entire fleet of fishing boats.\"</p>\r\n<p style=\"text-align: justify;\">Proud of his own sharp thinking, he excitedly elaborated a grand scheme which could bring even bigger profits, \"Then, instead of selling your catch to a middleman you\'ll be able to sell your fish directly to the processor, or even open your own cannery. Eventually, you could control the product, processing and distribution. You could leave this tiny coastal village and move to Mexico City, or possibly even Los Angeles or New York City, where you could even further expand your enterprise.\"</p>\r\n<p style=\"text-align: justify;\">Having never thought of such things, the Mexican fisherman asked, \"But how long will all this take?\"</p>\r\n<p style=\"text-align: justify;\">After a rapid mental calculation, the Harvard MBA pronounced, \"Probably about 15-20 years, maybe less if you work really hard.\"</p>\r\n<p style=\"text-align: justify;\">\"And then what, señor?\" asked the fisherman.</p>\r\n<p style=\"text-align: justify;\">\"Why, that\'s the best part!\" answered the businessman with a laugh. \"When the time is right, you would sell your company stock to the public and become very rich. You would make millions.\"</p>\r\n<p style=\"text-align: justify;\">\"Millions? Really? What would I do with it all?\" asked the young fisherman in disbelief.</p>\r\n<p style=\"text-align: justify;\">The businessman boasted, \"Then you could happily retire with all the money you\'ve made. You could move to a quaint coastal fishing village where you could sleep late, play with your grandchildren, watch ballgames, and take siesta with your wife. You could stroll to the village in the evenings where you could play the guitar and sing with your friends all you want.\"\r\nThe moral of the story is: <strong>Know what really matters in life, and you may find that it is already much closer than you think</strong></p>','The  Mexican Fisherman Meets Harvard MBA  What Really Matters in Life?','','inherit','closed','closed','','154-autosave','','','2013-07-09 20:50:59','2013-07-10 00:50:59','',154,'http://divyayogamonteregie.org/web/?p=338',0,'revision','',0),(339,1,'2013-06-10 21:22:48','2013-06-11 01:22:48','This is a powerful message for our modern society. We seem to have lost our bearing and our sense of direction.\r\n\r\nOne young academically excellent person went to apply for a managerial position in a big company. He passed the first interview; the director did the last interview. The director discovered from the CV that the youth\'s academic achievements were excellent all the way, from the secondary school until the postgraduate research, never had a year when he did not score.\r\n\r\nThe director asked, \"Did you obtain any scholarships in school?\"\r\n\r\nThe youth answered, \"None.\"\r\n\r\nThe director asked, \"Was it your father who paid for your school fees?\"\r\n\r\nThe youth answered, \"My father passed away when I was one year old, it was my mother who paid for my school fees.\"\r\n\r\nThe director asked, \"Where did your mother work?\"\r\n\r\nThe youth answered, \"My mother worked as laundry woman.\"\r\n\r\nThe director requested the youth to show his hands. The youth showed a pair of hands that were smooth and perfect.\r\n\r\nThe director asked, \"Have you ever helped your mother wash the clothes before?\"\r\n\r\nThe youth answered, \"Never, my mother always wanted me to study and read more books. Furthermore, my mother can wash clothes faster than me.\"\r\n\r\nThe director said, \"I have a request. When you go back today, go and clean your mother\'s hands, and then see me tomorrow morning.\"\r\n\r\nThe youth felt that his chance of landing the job was high. When he went back, he happily requested his mother to let him clean her hands. His mother felt strange. Happy but with mixed feelings, she showed her hands to the young man.\r\n\r\nThe youth cleaned his mother\'s hands slowly. His tear fell as he did that. It was the first time he noticed that his mother\'s hands were so wrinkled, and there were so many bruises in her hands. Some bruises were so painful that his mother shivered when they were cleaned with water.\r\n\r\nThis was the first time the youth realized that it was this pair of hands that washed the clothes everyday to enable him to pay the school fee. The bruises in the mother\'s hands were the price that the mother had to pay for his graduation, academic excellence and his future.\r\n\r\nAfter finishing the cleaning of his mother\'s hands, the youth quietly washed all the remaining clothes for his mother.\r\n\r\nThat night, mother and son talked for a very long time.\r\n\r\nNext morning, the youth went to the director\'s office.\r\n\r\nThe Director noticed the tears in the youth\'s eyes, asked: \"Can you tell me what have you done and learned yesterday in your house?\"\r\n\r\nThe youth answered, \"I cleaned my mother\'s hands and also finished cleaning all the remaining clothes.\"\r\n\r\nThe Director asked, \"Please tell me your feelings.\"\r\n\r\nThe youth said:\r\n<ol start=\"1\">\r\n	<li>I know now what appreciation is. Without my mother, there would not have been the successful me today.</li>\r\n	<li>By working together and helping my mother, only now I realize how difficult and tough it is to get something done.</li>\r\n	<li>I have come to appreciate the importance and value of family relationships.</li>\r\n</ol>\r\nThe director said, \"This is what I am looking for to be my manager. I want to recruit a person who can appreciate the help of others, a person who knows the sufferings of others to get things done, and a person who would not put money as his only goal in life. You are hired.\"\r\n\r\nLater on, this young person worked very hard and received the respect of his subordinates. Every employee worked diligently and as a team. The company\'s performance improved tremendously','The appriciation ','','inherit','closed','closed','','175-revision-2','','','2013-06-10 21:22:48','2013-06-11 01:22:48','',175,'http://divyayogamonteregie.org/web/?p=339',0,'revision','',0),(340,1,'2013-07-09 20:52:28','2013-07-10 00:52:28','<p style=\"text-align: justify;\">This is a powerful message for our modern society. We seem to have lost our bearing and our sense of direction.</p>\r\n<p style=\"text-align: justify;\">One young academically excellent person went to apply for a managerial position in a big company. He passed the first interview; the director did the last interview. The director discovered from the CV that the youth\'s academic achievements were excellent all the way, from the secondary school until the postgraduate research, never had a year when he did not score.</p>\r\n<p style=\"text-align: justify;\">The director asked, \"Did you obtain any scholarships in school?\"</p>\r\n<p style=\"text-align: justify;\">The youth answered, \"None.\"</p>\r\n<p style=\"text-align: justify;\">The director asked, \"Was it your father who paid for your school fees?\"</p>\r\n<p style=\"text-align: justify;\">The youth answered, \"My father passed away when I was one year old, it was my mother who paid for my school fees.\"</p>\r\n<p style=\"text-align: justify;\">The director asked, \"Where did your mother work?\"</p>\r\n<p style=\"text-align: justify;\">The youth answered, \"My mother worked as laundry woman.\"</p>\r\n<p style=\"text-align: justify;\">The director requested the youth to show his hands. The youth showed a pair of hands that were smooth and perfect.</p>\r\n<p style=\"text-align: justify;\">The director asked, \"Have you ever helped your mother wash the clothes before?\"</p>\r\n<p style=\"text-align: justify;\">The youth answered, \"Never, my mother always wanted me to study and read more books. Furthermore, my mother can wash clothes faster than me.\"</p>\r\n<p style=\"text-align: justify;\">The director said, \"I have a request. When you go back today, go and clean your mother\'s hands, and then see me tomorrow morning.\"</p>\r\n<p style=\"text-align: justify;\">The youth felt that his chance of landing the job was high. When he went back, he happily requested his mother to let him clean her hands. His mother felt strange. Happy but with mixed feelings, she showed her hands to the young man.</p>\r\n<p style=\"text-align: justify;\">The youth cleaned his mother\'s hands slowly. His tear fell as he did that. It was the first time he noticed that his mother\'s hands were so wrinkled, and there were so many bruises in her hands. Some bruises were so painful that his mother shivered when they were cleaned with water.</p>\r\n<p style=\"text-align: justify;\">This was the first time the youth realized that it was this pair of hands that washed the clothes everyday to enable him to pay the school fee. The bruises in the mother\'s hands were the price that the mother had to pay for his graduation, academic excellence and his future.</p>\r\n<p style=\"text-align: justify;\">After finishing the cleaning of his mother\'s hands, the youth quietly washed all the remaining clothes for his mother.</p>\r\n<p style=\"text-align: justify;\">That night, mother and son talked for a very long time.</p>\r\n<p style=\"text-align: justify;\">Next morning, the youth went to the director\'s office.</p>\r\n<p style=\"text-align: justify;\">The Director noticed the tears in the youth\'s eyes, asked: \"Can you tell me what have you done and learned yesterday in your house?\"</p>\r\n<p style=\"text-align: justify;\">The youth answered, \"I cleaned my mother\'s hands and also finished cleaning all the remaining clothes.\"</p>\r\n<p style=\"text-align: justify;\">The Director asked, \"Please tell me your feelings.\"</p>\r\n<p style=\"text-align: justify;\">The youth said:</p>\r\n\r\n<ol style=\"text-align: justify;\" start=\"1\">\r\n	<li>I know now what appreciation is. Without my mother, there would not have been the successful me today.</li>\r\n	<li>By working together and helping my mother, only now I realize how difficult and tough it is to get something done.</li>\r\n	<li>I have come to appreciate the importance and value of family relationships.</li>\r\n</ol>\r\n<p style=\"text-align: justify;\">The director said, \"This is what I am looking for to be my manager. I want to recruit a person who can appreciate the help of others, a person who knows the sufferings of others to get things done, and a person who would not put money as his only goal in life. You are hired.\"</p>\r\n<p style=\"text-align: justify;\">Later on, this young person worked very hard and received the respect of his subordinates. Every employee worked diligently and as a team. The company\'s performance improved tremendously</p>','The appriciation ','','inherit','closed','closed','','175-autosave','','','2013-07-09 20:52:28','2013-07-10 00:52:28','',175,'http://divyayogamonteregie.org/web/?p=340',0,'revision','',0),(341,1,'2013-06-10 20:20:03','2013-06-11 00:20:03','There once was a little boy who had a bad temper. His father gave him a bag of nails and told him that every time he lost his temper, he must hammer a nail into the fence. The first day the boy had driven 37 nails into the fence. Over the next few weeks as he learned to control his anger, the number of nails hammered daily, gradually dwindled down. He discovered it was easier to hold his temper than to drive those nails into the fence.\r\n\r\nFinally the day came when the boy didn\'t lose his temper at all. He told his father about it and the father suggested that the boy now pull out one nail for each day that he was able to hold his temper. The days passed and the young boy was finally able to tell his father that all the nails were gone.\r\n\r\nThe father took his son by the hand and led him to the fence. He said \"you have done well, my son, but look at the holes in the fence. The fence will never be the same. When you say things in anger, they leave a scar just like this one.\" You can put a knife in a man and draw it out. It won\'t matter how many times you say I\'m sorry, the wound is still there. Make sure you control your temper the next time you are tempted to say something you will regret later.','The fence','','inherit','closed','closed','','147-revision-2','','','2013-06-10 20:20:03','2013-06-11 00:20:03','',147,'http://divyayogamonteregie.org/web/?p=341',0,'revision','',0),(342,1,'2013-06-10 20:29:52','2013-06-11 00:29:52','<b></b>\r\n\r\nWhen I was 5 years old, my mother always told me that happiness was the key to life. When I went to school, they asked me what I wanted to be when I grew up.\r\n\r\nI wrote down \'happy\'. They told me I didn\'t understand the assignment, and I told them they didn\'t understand life.\r\n<b></b>\r\n\r\n&nbsp;\r\n\r\nThere once was a wise sage who wandered the countryside. One day, as he passed near a village, he was approached by a woman who told him of a sick child nearby. She beseeched him to help this child.\r\n\r\nSo the sage came to the village, and a crowd gathered around him, for such a man was a rare sight. One woman brought the sick child to him, and he said a prayer over her.\r\n\r\n\"Do you really think your prayer will help her, when medicine has failed?\" yelled a man from the crowd.\r\n\r\n\"You know nothing of such things! You are a stupid fool!\" said the sage to the man.\r\n\r\nThe man became very angry with these words and his face grew hot and red. He was about to say something, or perhaps strike out, when the sage walked over to him and said: \"If one word has such power as to make you so angry and hot, may not another have the power to heal?\"\r\n\r\nAnd thus, the sage healed two people that day.','The Happiness','','inherit','closed','closed','','160-revision-2','','','2013-06-10 20:29:52','2013-06-11 00:29:52','',160,'http://divyayogamonteregie.org/web/?p=342',0,'revision','',0),(343,1,'2013-07-09 21:34:30','2013-07-10 01:34:30','<p style=\"text-align: justify;\">When I was 5 years old, my mother always told me that happiness was the key to life. When I went to school, they asked me what I wanted to be when I grew up.</p>\r\n<p style=\"text-align: justify;\">I wrote down \'happy\'. They told me I didn\'t understand the assignment, and I told them they didn\'t understand life.\r\n<b></b></p>\r\n&nbsp;','The Happiness','','inherit','closed','closed','','160-autosave','','','2013-07-09 21:34:30','2013-07-10 01:34:30','',160,'http://divyayogamonteregie.org/web/?p=343',0,'revision','',0),(352,1,'2013-07-09 21:37:27','2013-07-10 01:37:27','<p style=\"text-align: justify;\">There once was a wise sage who wandered the countryside. One day, as he passed near a village, he was approached by a woman who told him of a sick child nearby. She beseeched him to help this child.</p>\r\n<p style=\"text-align: justify;\">So the sage came to the village, and a crowd gathered around him, for such a man was a rare sight. One woman brought the sick child to him, and he said a prayer over her.</p>\r\n<p style=\"text-align: justify;\">\"Do you really think your prayer will help her, when medicine has failed?\" yelled a man from the crowd.</p>\r\n<p style=\"text-align: justify;\">\"You know nothing of such things! You are a stupid fool!\" said the sage to the man.</p>\r\n<p style=\"text-align: justify;\">The man became very angry with these words and his face grew hot and red. He was about to say something, or perhaps strike out, when the sage walked over to him and said: \"If one word has such power as to make you so angry and hot, may not another have the power to heal?\"</p>\r\n<p style=\"text-align: justify;\">And thus, the sage healed two people that day.</p>','Wise Saint ','','publish','closed','closed','','wise-saint','','','2013-07-09 22:08:03','2013-07-10 02:08:03','',79,'http://divyayogamonteregie.org/web/?page_id=352',0,'page','',0),(353,1,'2013-07-09 21:36:51','2013-07-10 01:36:51','There once was a wise sage who wandered the countryside. One day, as he passed near a village, he was approached by a woman who told him of a sick child nearby. She beseeched him to help this child.\n\nSo the sage came to the village, and a crowd gathered around him, for such a man was a rare sight. One woman brought the sick child to him, and he said a prayer over her.\n\n\"Do you really think your prayer will help her, when medicine has failed?\" yelled a man from the crowd.\n\n\"You know nothing of such things! You are a stupid fool!\" said the sage to the man.\n\nThe man became very angry with these words and his face grew hot and red. He was about to say something, or perhaps strike out, when the sage walked over to him and said: \"If one word has such power as to make you so angry and hot, may not another have the power to heal?\"\n\nAnd thus, the sage healed two people that day.','Wise Saint ','','inherit','closed','closed','','352-revision-v1','','','2013-07-09 21:36:51','2013-07-10 01:36:51','',352,'http://divyayogamonteregie.org/web/?p=353',0,'revision','',0),(344,1,'2013-06-10 20:17:07','2013-06-11 00:17:07','<a href=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/hospital_window.png\"><img class=\"aligncenter size-full wp-image-141\" alt=\"hospital_window\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/06/hospital_window.png\" width=\"300\" height=\"200\" /></a>\r\n\r\nTwo men, both seriously ill, occupied the same hospital room. One man was allowed to sit up in his bed for an hour each afternoon to help drain the fluid from his lungs. His bed was next to the room\'s only window. The other man had to spend all his time flat on his back.\r\n\r\nThe men talked for hours on end. They spoke of their wives and families, their homes, their jobs, their involvement in the military service, where they had been on vacation.\r\n\r\nAnd every afternoon when the man in the bed by the window could sit up, he would pass the time by describing to his roommate all the things he could see outside the window. The man in the other bed began to live for those one-hour periods where his world would be broadened and enlivened by all the activity and color of the world outside.\r\n\r\nThe window overlooked a park with a lovely lake. Ducks and swans played on the water while children sailed their model boats. Young lovers walked arm in arm amidst flowers of every color of the rainbow. Grand old trees graced the landscape, and a fine view of the city skyline could be seen in the distance.\r\n\r\nAs the man by the window described all this in exquisite detail, the man on the other side of the room would close his eyes and imagine the picturesque scene.\r\n\r\nOne warm afternoon the man by the window described a parade passing by. Although the other man couldn\'t hear the band - he could see it in his mind\'s eye as the gentleman by the window portrayed it with descriptive words.\r\n\r\nDays and weeks passed. One morning, the day nurse arrived to bring water for their baths only to find the lifeless body of the man by the window, who had died peacefully in his sleep. She was saddened and called the hospital attendants to take the body away.\r\n\r\nAs soon as it seemed appropriate, the other man asked if he could be moved next to the window. The nurse was happy to make the switch, and after making sure he was comfortable, she left him alone. Slowly, painfully, he propped himself up on one elbow to take his first look at the world outside. Finally, he would have the joy of seeing it for himself.\r\n\r\nHe strained to slowly turn to look out the window beside the bed. It faced a blank wall. The man asked the nurse what could have compelled his deceased roommate who had described such wonderful things outside this window. The nurse responded that the man was blind and could not even see the wall. She said, \"Perhaps he just wanted to encourage you.\"','The hospital window','','inherit','closed','closed','','139-revision-3','','','2013-06-10 20:17:07','2013-06-11 00:17:07','',139,'http://divyayogamonteregie.org/web/?p=344',0,'revision','',0),(347,1,'2013-07-09 21:00:48','2013-07-10 01:00:48','<b>The Rabbit and The Turtle Race </b>\n<p style=\"text-align: justify;\">Remember the famous Rabbit-Turtle race (Tortoise and the Hare)? We all know that at the end of the story the Rabbit was not able to win the race against the Turtle.</p>\n<p style=\"text-align: justify;\">Well, this is actually not the end of the story. After a disgraceful loss to the Turtle, the Rabbit decided to have a race again. This time, he decided, he would not take a nap.</p>\n<p style=\"text-align: justify;\">The race started &amp; soon the Rabbit was far away from the sight of the Turtle &amp; all the spectators. This time he didn\'t stop &amp; defeated the Turtle by a big margin.</p>\n<p style=\"text-align: justify;\">The Turtle lost the race this time; however, he didn\'t give up. He challenged the Rabbit again on a different racetrack. The Rabbit, full of confidence, accepted it. He knew the reason he lost earlier: his laziness during the first race. He was able to win the second race because he was able to work on it.</p>\n<p style=\"text-align: justify;\">The Third Race started. The Rabbit, like always, soon disappeared. Everyone was laughing at the Turtle but the Rabbit didn\'t want to stop to see why &amp; kept on running as fast as he could. He wanted to defeat the Turtle by a much bigger margin than the earlier race. Suddenly, he came to a river. He was not able to make out how to cross it &amp; was forced to stop.</p>\n<p style=\"text-align: justify;\">After some time the Turtle reached the river &amp; very confidently stepped into it. He swam much faster than he could ever run. Within no time he crossed the river &amp; moved towards the finishing point while the Rabbit helplessly looked on as the Turtle won the race.</p>\n<p style=\"text-align: justify;\">The story does not end here.</p>\n<p style=\"text-align: justify;\">After the first race, the Rabbit learned that he lost it because of his laziness.</p>\n<p style=\"text-align: justify;\">After second race, the Turtle learned that he lost the race because his opponent was actually good at running.</p>\n<p style=\"text-align: justify;\">After the third race, the Rabbit learned that being faster is not enough; one should have brains as well to complete the task.</p>\n<p style=\"text-align: justify;\">The Rabbit &amp; the Turtle decided to run again. This time it was just running &amp; not a race.</p>\n<p style=\"text-align: justify;\">While running, until they reached the river, the Rabbit put the Turtle on his back. Once they needed to cross the river, the Turtle put the Rabbit on his back. After crossing the river, the Rabbit again put the Turtle on his back &amp; both of them reached the finishing point in less time than ever.</p>\n<p style=\"text-align: justify;\"><b>What did they learn?</b></p>\n<p style=\"text-align: justify;\">They both learned that with teamwork they can finish the same task quicker &amp; both of them can enjoy the reward. During the time they were competing against one another, just one of them was able to win after wasting a lot of time &amp; energy.</p>','','','inherit','closed','closed','','346-revision','','','2013-07-09 21:00:48','2013-07-10 01:00:48','',346,'http://divyayogamonteregie.org/web/?p=347',0,'revision','',0),(348,1,'2013-07-09 21:01:46','2013-07-10 01:01:46','&nbsp;\r\n<p style=\"text-align: justify;\">Remember the famous Rabbit-Turtle race (Tortoise and the Hare)? We all know that at the end of the story the Rabbit was not able to win the race against the Turtle.</p>\r\n<p style=\"text-align: justify;\">Well, this is actually not the end of the story. After a disgraceful loss to the Turtle, the Rabbit decided to have a race again. This time, he decided, he would not take a nap.</p>\r\n<p style=\"text-align: justify;\">The race started &amp; soon the Rabbit was far away from the sight of the Turtle &amp; all the spectators. This time he didn\'t stop &amp; defeated the Turtle by a big margin.</p>\r\n<p style=\"text-align: justify;\">The Turtle lost the race this time; however, he didn\'t give up. He challenged the Rabbit again on a different racetrack. The Rabbit, full of confidence, accepted it. He knew the reason he lost earlier: his laziness during the first race. He was able to win the second race because he was able to work on it.</p>\r\n<p style=\"text-align: justify;\">The Third Race started. The Rabbit, like always, soon disappeared. Everyone was laughing at the Turtle but the Rabbit didn\'t want to stop to see why &amp; kept on running as fast as he could. He wanted to defeat the Turtle by a much bigger margin than the earlier race. Suddenly, he came to a river. He was not able to make out how to cross it &amp; was forced to stop.</p>\r\n<p style=\"text-align: justify;\">After some time the Turtle reached the river &amp; very confidently stepped into it. He swam much faster than he could ever run. Within no time he crossed the river &amp; moved towards the finishing point while the Rabbit helplessly looked on as the Turtle won the race.</p>\r\n<p style=\"text-align: justify;\">The story does not end here.</p>\r\n<p style=\"text-align: justify;\">After the first race, the Rabbit learned that he lost it because of his laziness.</p>\r\n<p style=\"text-align: justify;\">After second race, the Turtle learned that he lost the race because his opponent was actually good at running.</p>\r\n<p style=\"text-align: justify;\">After the third race, the Rabbit learned that being faster is not enough; one should have brains as well to complete the task.</p>\r\n<p style=\"text-align: justify;\">The Rabbit &amp; the Turtle decided to run again. This time it was just running &amp; not a race.</p>\r\n<p style=\"text-align: justify;\">While running, until they reached the river, the Rabbit put the Turtle on his back. Once they needed to cross the river, the Turtle put the Rabbit on his back. After crossing the river, the Rabbit again put the Turtle on his back &amp; both of them reached the finishing point in less time than ever.</p>\r\n<p style=\"text-align: justify;\"><b>What did they learn?</b></p>\r\n<p style=\"text-align: justify;\">They both learned that with teamwork they can finish the same task quicker &amp; both of them can enjoy the reward. During the time they were competing against one another, just one of them was able to win after wasting a lot of time &amp; energy.</p>','The Rabbit and The Turtle Race ','','inherit','closed','closed','','346-autosave','','','2013-07-09 21:01:46','2013-07-10 01:01:46','',346,'http://divyayogamonteregie.org/web/?p=348',0,'revision','',0),(349,1,'2013-07-09 21:32:09','2013-07-10 01:32:09','<p style=\"text-align: justify;\">There is this story about a famous research scientist who had made several very important medical breakthroughs. He was being interviewed by a newspaper reporter who asked him why he thought he was able to be so much more creative than the average person. What set him so far apart from others?</p>\r\n<p style=\"text-align: justify;\">He responded that, in his opinion, it all came from an experience with his mother that occurred when he was about two years old. He had been trying to remove a bottle of milk from the refrigerator when he lost his grip on the slippery bottle and it fell, spilling its contents all over the kitchen floor - a veritable sea of milk!</p>\r\n<p style=\"text-align: justify;\">When his mother came into the kitchen, instead of yelling at him, giving him a lecture, or punishing him, she said, \"Robert, what a great and wonderful mess you have made! I have rarely seen such a huge puddle of milk. Well, the damage has already been done. Would you like to get down and play in the milk for a few minutes before we clean it up?\"</p>\r\n<p style=\"text-align: justify;\">Indeed, he did. After a few minutes, his mother said, \"You know, Robert, whenever you make a mess like this, eventually you have to clean it up and restore everything to its proper order. So, how would you like to do that? We could use a sponge, a towel, or a mop. Which do you prefer?\"</p>\r\n<p style=\"text-align: justify;\">He chose the sponge and together they cleaned up the spilled milk.</p>\r\n<p style=\"text-align: justify;\">His mother then said, \"You know, what we have here is a failed experiment in how to effectively carry a big milk bottle with two tiny hands. Let\'s go out in the back yard and fill the bottle with water and see if you can discover a way to carry it without dropping it.\"</p>\r\n<p style=\"text-align: justify;\">The little boy learned that if he grasped the bottle at the top near the lip with both hands, he could carry it without dropping it. This renowned scientist then remarked that it was at that moment that he knew he didn\'t need to be afraid to make mistakes. Instead, he learned that mistakes were just opportunities for learning something new, which is, after all, what scientific experiments are all about. Even if the experiment \"doesn\'t work,\" we usually learn something valuable from it.</p>',' Motivate','','inherit','closed','closed','','177-autosave','','','2013-07-09 21:32:09','2013-07-10 01:32:09','',177,'http://divyayogamonteregie.org/web/?p=349',0,'revision','',0),(350,1,'2013-06-10 21:24:47','2013-06-11 01:24:47','There is this story about a famous research scientist who had made several very important medical breakthroughs. He was being interviewed by a newspaper reporter who asked him why he thought he was able to be so much more creative than the average person. What set him so far apart from others?\r\n\r\nHe responded that, in his opinion, it all came from an experience with his mother that occurred when he was about two years old. He had been trying to remove a bottle of milk from the refrigerator when he lost his grip on the slippery bottle and it fell, spilling its contents all over the kitchen floor - a veritable sea of milk!\r\n\r\nWhen his mother came into the kitchen, instead of yelling at him, giving him a lecture, or punishing him, she said, \"Robert, what a great and wonderful mess you have made! I have rarely seen such a huge puddle of milk. Well, the damage has already been done. Would you like to get down and play in the milk for a few minutes before we clean it up?\"\r\n\r\nIndeed, he did. After a few minutes, his mother said, \"You know, Robert, whenever you make a mess like this, eventually you have to clean it up and restore everything to its proper order. So, how would you like to do that? We could use a sponge, a towel, or a mop. Which do you prefer?\"\r\n\r\nHe chose the sponge and together they cleaned up the spilled milk.\r\n\r\nHis mother then said, \"You know, what we have here is a failed experiment in how to effectively carry a big milk bottle with two tiny hands. Let\'s go out in the back yard and fill the bottle with water and see if you can discover a way to carry it without dropping it.\"\r\n\r\nThe little boy learned that if he grasped the bottle at the top near the lip with both hands, he could carry it without dropping it. This renowned scientist then remarked that it was at that moment that he knew he didn\'t need to be afraid to make mistakes. Instead, he learned that mistakes were just opportunities for learning something new, which is, after all, what scientific experiments are all about. Even if the experiment \"doesn\'t work,\" we usually learn something valuable from it.','The Motivate','','inherit','closed','closed','','177-revision-2','','','2013-06-10 21:24:47','2013-06-11 01:24:47','',177,'http://divyayogamonteregie.org/web/?p=350',0,'revision','',0),(351,1,'2013-07-09 20:55:51','2013-07-10 00:55:51','<p style=\"text-align: justify;\"></p>\r\n<p style=\"text-align: justify;\">When I was 5 years old, my mother always told me that happiness was the key to life. When I went to school, they asked me what I wanted to be when I grew up.</p>\r\n<p style=\"text-align: justify;\">I wrote down \'happy\'. They told me I didn\'t understand the assignment, and I told them they didn\'t understand life.\r\n<b></b></p>\r\n<p style=\"text-align: justify;\"></p>\r\n<p style=\"text-align: justify;\">There once was a wise sage who wandered the countryside. One day, as he passed near a village, he was approached by a woman who told him of a sick child nearby. She beseeched him to help this child.</p>\r\n<p style=\"text-align: justify;\">So the sage came to the village, and a crowd gathered around him, for such a man was a rare sight. One woman brought the sick child to him, and he said a prayer over her.</p>\r\n<p style=\"text-align: justify;\">\"Do you really think your prayer will help her, when medicine has failed?\" yelled a man from the crowd.</p>\r\n<p style=\"text-align: justify;\">\"You know nothing of such things! You are a stupid fool!\" said the sage to the man.</p>\r\n<p style=\"text-align: justify;\">The man became very angry with these words and his face grew hot and red. He was about to say something, or perhaps strike out, when the sage walked over to him and said: \"If one word has such power as to make you so angry and hot, may not another have the power to heal?\"</p>\r\n<p style=\"text-align: justify;\">And thus, the sage healed two people that day.</p>','The Happiness','','inherit','closed','closed','','160-revision-3','','','2013-07-09 20:55:51','2013-07-10 00:55:51','',160,'http://divyayogamonteregie.org/web/?p=351',0,'revision','',0),(355,1,'2013-06-10 20:24:26','2013-06-11 00:24:26','By Remez Sasson\r\n\r\nOne day, a yogi and his disciple arrived in the big city. They had no money with them, but they needed food and a place to stay. The disciple was sure that they were going to beg for their food, and sleep in the park at night.\r\n\r\n\"There is a big park not far from here. We can sleep there at night\", said the disciple.\r\n\"In the open air?\" Asked the yogi.\r\n\"Yes\", responded the student.\r\n\r\nThe yogi smiled and said: \"No, tonight we are going to sleep in a hotel and eat there too\".\r\n\r\nThe student was amazed and exclaimed, \"We cannot afford that!\"\r\n\"Come and sit down\", said the yogi.\r\n\r\nThey both sat down on the ground, and the yogi said:\r\n\"When you focus your mind intently on any subject, it comes to pass.\"\r\n\r\nThe yogi closed his eyes and started to meditate with full concentration. After about ten minutes he got up and started to walk, with his disciple following him. They walked through several streets and alleys, until they arrived at a hotel.\r\n\r\n\"Come, let\'s enter inside\", the yogi said to his disciple.\r\n\r\nThey just set foot in the entrance, when a well-dressed man approached them.\r\n\r\n\"I am the manager of this hotel. You look like traveling swamis, and I believe you have no money. Would you like to work in the kitchen, and in return I\'ll give you food and a place to stay?\"\r\n\r\n\"Fine\", the yogi responded.\r\n\r\nThe disciple was perplexed and asked the yogi: \"Did you use any magic? How did you do that?\"\r\n\r\nThe yogi smiled and said, \"I wanted to show you how the power of thoughts works. When you think with full and strong concentration about something that you want to happen, and your mind does not resist the subject of your thought, your thought materializes.\"\r\n\r\n\"The secret is concentrating, visualizing, seeing details, having faith and projecting mental and emotional energy into the mental scene. These are the general prerequisites. When your mind is empty from thoughts, and only one single thought is allowed to enter, it gains a very great power. One should be very careful with what he thinks. A concentrated thought is powerful, and exerts a very strong influence.\"\r\n\r\nThe disciple looked at his teacher and said: \"I see that I have to sharpen my concentration in order to be able to use this power.\"\r\n\r\n\"Yes, this is the first step\", the yogi replied.\r\n\r\n16A The Elephant and the Fly\r\n\r\nBy Remez Sasson\r\n\r\nA disciple and his teacher were walking through the forest. The disciple was disturbed by the fact that his mind was in constant unrest.\r\n\r\nHe asked his teacher: \"Why most people\'s minds are restless, and only a few possess a calm mind? What can one do to still the mind?\"\r\n\r\nThe teacher looked at the disciple, smiled and said:\r\n\"I will tell you a story. An elephant was standing and picking leaves from a tree. A small fly came, flying and buzzing near his ear. The elephant waved it away with his long ears. Then the fly came again, and the elephant waved it away once more.\"\r\n\r\nThis was repeated several times. Then the elephant asked the fly:\r\n\"Why are you so restless and noisy? Why can\'t you stay for a while in one place?\"\r\n\r\nThe fly answered: \"I am attracted to whatever I see, hear or smell. My five senses, and everything that happens around me, pull me constantly in all directions, and I cannot resist them. What is your secret? How can you stay so calm and still?\"\r\n\r\nThe elephant stopped eating and said:\r\n\"My five senses do not rule my attention. I am in control of my attention, and I can direct it wherever I want. This helps me to get immersed in whatever I do, and therefore, keep my mind focused and calm. Now that I am eating, I am completely immersed in eating. In this way, I can enjoy my food and chew it better. I control my attention, and not the other way around, and this helps me stay peaceful.\"\r\n\r\nUpon hearing these words, the disciple\'s eyes opened wide, and a smile appeared on his face. He looked at his teacher and said:\r\n\"I understand! My mind will be in constant unrest, if my five senses, and whatever is happening in the world around me are in control of it. On the other hand, if I am in command of my five senses, able to disregard sense impressions, my mind would become calm, and I will be able to disregard its restlessness.\"\r\n\r\n\"Yes, that\'s right,\" answered the teacher,\" The mind is restless and goes wherever the attention is. Control your attention, and you control your mind.\"','The power of thoughts','','inherit','closed','closed','','152-revision-v1','','','2013-06-10 20:24:26','2013-06-11 00:24:26','',152,'http://divyayogamonteregie.org/web/?p=355',0,'revision','',0),(357,1,'2013-07-09 21:46:58','2013-07-10 01:46:58','&nbsp;\n\n&nbsp;\n\nA disciple and his teacher were walking through the forest. The disciple was disturbed by the fact that his mind was in constant unrest.\n\nHe asked his teacher: \"Why most people\'s minds are restless, and only a few possess a calm mind? What can one do to still the mind?\"\n\nThe teacher looked at the disciple, smiled and said:\n\"I will tell you a story. An elephant was standing and picking leaves from a tree. A small fly came, flying and buzzing near his ear. The elephant waved it away with his long ears. Then the fly came again, and the elephant waved it away once more.\"\n\nThis was repeated several times. Then the elephant asked the fly:\n\"Why are you so restless and noisy? Why can\'t you stay for a while in one place?\"\n\nThe fly answered: \"I am attracted to whatever I see, hear or smell. My five senses, and everything that happens around me, pull me constantly in all directions, and I cannot resist them. What is your secret? How can you stay so calm and still?\"\n\nThe elephant stopped eating and said:\n\"My five senses do not rule my attention. I am in control of my attention, and I can direct it wherever I want. This helps me to get immersed in whatever I do, and therefore, keep my mind focused and calm. Now that I am eating, I am completely immersed in eating. In this way, I can enjoy my food and chew it better. I control my attention, and not the other way around, and this helps me stay peaceful.\"\n\nUpon hearing these words, the disciple\'s eyes opened wide, and a smile appeared on his face. He looked at his teacher and said:\n\"I understand! My mind will be in constant unrest, if my five senses, and whatever is happening in the world around me are in control of it. On the other hand, if I am in command of my five senses, able to disregard sense impressions, my mind would become calm, and I will be able to disregard its restlessness.\"\n\n\"Yes, that\'s right,\" answered the teacher,\" The mind is restless and goes wherever the attention is. Control your attention, and you control your mind.\"','The Elephant and the Fly  ','','inherit','closed','closed','','356-revision','','','2013-07-09 21:46:58','2013-07-10 01:46:58','',356,'http://divyayogamonteregie.org/web/?p=357',0,'revision','',0),(358,1,'2013-07-09 21:47:48','2013-07-10 01:47:48','A disciple and his teacher were walking through the forest. The disciple was disturbed by the fact that his mind was in constant unrest.\r\n\r\nHe asked his teacher: \"Why most people\'s minds are restless, and only a few possess a calm mind? What can one do to still the mind?\"\r\n\r\nThe teacher looked at the disciple, smiled and said:\r\n\"I will tell you a story. An elephant was standing and picking leaves from a tree. A small fly came, flying and buzzing near his ear. The elephant waved it away with his long ears. Then the fly came again, and the elephant waved it away once more.\"\r\n\r\nThis was repeated several times. Then the elephant asked the fly:\r\n\"Why are you so restless and noisy? Why can\'t you stay for a while in one place?\"\r\n\r\nThe fly answered: \"I am attracted to whatever I see, hear or smell. My five senses, and everything that happens around me, pull me constantly in all directions, and I cannot resist them. What is your secret? How can you stay so calm and still?\"\r\n\r\nThe elephant stopped eating and said:\r\n\"My five senses do not rule my attention. I am in control of my attention, and I can direct it wherever I want. This helps me to get immersed in whatever I do, and therefore, keep my mind focused and calm. Now that I am eating, I am completely immersed in eating. In this way, I can enjoy my food and chew it better. I control my attention, and not the other way around, and this helps me stay peaceful.\"\r\n\r\nUpon hearing these words, the disciple\'s eyes opened wide, and a smile appeared on his face. He looked at his teacher and said:\r\n\"I understand! My mind will be in constant unrest, if my five senses, and whatever is happening in the world around me are in control of it. On the other hand, if I am in command of my five senses, able to disregard sense impressions, my mind would become calm, and I will be able to disregard its restlessness.\"\r\n\r\n\"Yes, that\'s right,\" answered the teacher,\" The mind is restless and goes wherever the attention is. Control your attention, and you control your mind.\"','The Elephant and the Fly  ','','inherit','closed','closed','','356-autosave','','','2013-07-09 21:47:48','2013-07-10 01:47:48','',356,'http://divyayogamonteregie.org/web/?p=358',0,'revision','',0),(359,1,'2013-06-10 20:10:06','2013-06-11 00:10:06','An old farmer had plowed around a large rock in one of his fields for years. He had broken several plowshares and a cultivator on it and had grown rather morbid about the rock.\r\n\r\nAfter breaking another plowshare one day, and remembering all the trouble the rock had caused him through the years, he finally decided to do something about it.\r\n\r\nWhen he put the crowbar under the rock, he was surprised to discover that it was only about six inches thick and that he could break it up easily with a sledgehammer. As he was carting the pieces away he had to smile, remembering all the trouble that the rock had caused him over the years and how easy it would have been to get rid of it sooner.','The Rock','','inherit','closed','closed','','135-revision-2','','','2013-06-10 20:10:06','2013-06-11 00:10:06','',135,'http://divyayogamonteregie.org/web/?p=359',0,'revision','',0),(360,1,'2013-07-09 21:49:55','2013-07-10 01:49:55','<p style=\"text-align: justify;\">An old farmer had plowed around a large rock in one of his fields for years. He had broken several plowshares and a cultivator on it and had grown rather morbid about the rock.</p>\r\n<p style=\"text-align: justify;\">After breaking another plowshare one day, and remembering all the trouble the rock had caused him through the years, he finally decided to do something about it.</p>\r\n<p style=\"text-align: justify;\">When he put the crowbar under the rock, he was surprised to discover that it was only about six inches thick and that he could break it up easily with a sledgehammer. As he was carting the pieces away he had to smile, remembering all the trouble that the rock had caused him over the years and how easy it would have been to get rid of it sooner.</p>','The Rock','','inherit','closed','closed','','135-autosave','','','2013-07-09 21:49:55','2013-07-10 01:49:55','',135,'http://divyayogamonteregie.org/web/?p=360',0,'revision','',0),(361,1,'2013-07-09 22:03:04','2013-07-10 02:03:04','<p style=\"text-align: justify;\">About the hidden nature of Atman [Soul]:</p>\r\n<p style=\"text-align: justify;\">\"We are like a king, who falling victim to amnesia, wanders his kingdom in tatters, not knowing who he really is. We are like a lion cub who, having become lost from his mother at birth, grows up by accident among sheep and takes to grazing and bleating like them, assuming that he is like them.\" - Themes from Hindu literature.</p>\r\n<p style=\"text-align: justify;\">A LIONESS was big with young and going about in search of prey when she saw a flock of sheep. She jumped upon them and died in that effort. But her little baby lion was born, motherless. The sheep took care of it, and the sheep brought it up. It grew up with them, ate grass, and bleated like the sheep. In time it became a big, full-grown lion, and still it bleated like a sheep and thought it was a sheep.</p>\r\n<p style=\"text-align: justify;\">One day another lion came in search of prey, and was astonished to find that in the middle of this flock of sheep was a lion who fled like the sheep at the approach of danger. He tried to get near the sheep-lion, to tell it that it was not a sheep but a lion, but the poor animal fled at his approach.</p>\r\n<p style=\"text-align: justify;\">However, he watched his opportunity, and one day found the sheep-lion sleeping. He approached it and said, \"You are a lion.\"</p>\r\n<p style=\"text-align: justify;\">\"I am the sheep\" cried and bleated the other lion, and could not believe otherwise.</p>\r\n<p style=\"text-align: justify;\">The lion dragged him towards a lake and said, \"Look here, there is my reflection and yours.\"</p>\r\n<p style=\"text-align: justify;\">Then came the comparison. The bleating lion looked at the lion and then at its own reflection, and in a moment came the idea that it was a lion. The lion roared, the bleating was gone. [Adapted from a tale by Vivekananda in the lecture \"The real nature of man\", given in London, 1899 or near by]</p>\r\n<p style=\"text-align: justify;\">❖ \"You are lions . . . and perfect.\" - Swami Vivekananda</p>','The sheep lion','','inherit','closed','closed','','162-autosave','','','2013-07-09 22:03:04','2013-07-10 02:03:04','',162,'http://divyayogamonteregie.org/web/?p=361',0,'revision','',0),(362,1,'2013-06-10 20:31:35','2013-06-11 00:31:35','A The Sheep-Lion\r\n\r\nAbout the hidden nature of Atman [Soul]:\r\n\r\n\"We are like a king, who falling victim to amnesia, wanders his kingdom in tatters, not knowing who he really is. We are like a lion cub who, having become lost from his mother at birth, grows up by accident among sheep and takes to grazing and bleating like them, assuming that he is like them.\" - Themes from Hindu literature.\r\n\r\nA LIONESS was big with young and going about in search of prey when she saw a flock of sheep. She jumped upon them and died in that effort. But her little baby lion was born, motherless. The sheep took care of it, and the sheep brought it up. It grew up with them, ate grass, and bleated like the sheep. In time it became a big, full-grown lion, and still it bleated like a sheep and thought it was a sheep.\r\n\r\nOne day another lion came in search of prey, and was astonished to find that in the middle of this flock of sheep was a lion who fled like the sheep at the approach of danger. He tried to get near the sheep-lion, to tell it that it was not a sheep but a lion, but the poor animal fled at his approach.\r\n\r\nHowever, he watched his opportunity, and one day found the sheep-lion sleeping. He approached it and said, \"You are a lion.\"\r\n<table width=\"180\" border=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td>\"I gather: \"A lion is . . . ahh, perfect!\"\"</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n\"I am a sheep,\" cried and bleated the other lion, and could not believe otherwise.\r\n\r\nThe lion dragged him towards a lake and said, \"Look here, there is my reflection and yours.\"\r\n\r\nThen came the comparison. The bleating lion looked at the lion and then at its own reflection, and in a moment came the idea that it was a lion. The lion roared, the bleating was gone. [Adapted from a tale by Vivekananda in the lecture \"The real nature of man\", given in London, 1899 or near by]\r\n\r\n❖ \"You are lions . . . and perfect.\" - Swami Vivekananda','The sheep and the lion','','inherit','closed','closed','','162-revision-2','','','2013-06-10 20:31:35','2013-06-11 00:31:35','',162,'http://divyayogamonteregie.org/web/?p=362',0,'revision','',0),(363,1,'2013-06-10 20:34:56','2013-06-11 00:34:56','TWO FROGS - a big one and a small one - hopped into a pail of milk. The sides of the pail were shiny and smooth. The frogs were swimming round and round without being able to get out of the pail again, and every time they lifted their mouths to catch a little air to breathe, down they went. They kept on swimming and gasping like this till the big frog gave up and drowned. Then the little frog said to himself,\r\n\r\n\"Well, well. I will hang on as long as I can, too.\"\r\n\r\nIt kept on for hours, when suddenly it found something solid under its feet - milk was churned to butter! Out jumped the little frog!\r\n\r\n❖ <i>Said Yogananda: \"Be like the little frog. By all means keep battling.\" </i>\r\n\r\n❖ <i>Churn your difficulty well or it may be to your loss.</i>','The two Frogs in Trouble','','inherit','closed','closed','','171-revision-2','','','2013-06-10 20:34:56','2013-06-11 00:34:56','',171,'http://divyayogamonteregie.org/web/?p=363',0,'revision','',0),(364,1,'2013-07-09 22:04:47','2013-07-10 02:04:47','<p style=\"text-align: justify;\">TWO FROGS - a big one and a small one - hopped into a pail of milk. The sides of the pail were shiny and smooth. The frogs were swimming round and round without being able to get out of the pail again, and every time they lifted their mouths to catch a little air to breathe, down they went. They kept on swimming and gasping like this till the big frog gave up and drowned. Then the little frog said to himself,</p>\r\n<p style=\"text-align: justify;\">\"Well, well. I will hang on as long as I can, too.\"</p>\r\n<p style=\"text-align: justify;\">It kept on for hours, when suddenly it found something solid under its feet - milk was churned to butter! Out jumped the little frog!</p>\r\n<p style=\"text-align: justify;\">❖ <i>Said Yogananda: \"Be like the little frog. By all means keep battling.\" </i></p>\r\n<p style=\"text-align: justify;\">❖ <i>Churn your difficulty well or it may be to your loss.</i></p>','The two Frogs in Trouble','','inherit','closed','closed','','171-autosave','','','2013-07-09 22:04:47','2013-07-10 02:04:47','',171,'http://divyayogamonteregie.org/web/?p=364',0,'revision','',0),(365,1,'2013-06-10 20:18:44','2013-06-11 00:18:44','An old story is told of a king in Africa who had a close friend with whom he grew up. The friend had a habit of looking at every situation that ever occurred in his life (positive or negative) and remarking, \"This is good!\"\r\n\r\nOne day the king and his friend were out on a hunting expedition. The friend would load and prepare the guns for the king. The friend had apparently done something wrong in preparing one of the guns, for after taking the gun from his friend, the king fired it and his thumb was blown off. Examining the situation the friend remarked as usual, \"This is good!\" To which the king replied, \"No, this is NOT good!\" and proceeded to send his friend to jail.\r\n\r\nAbout a year later, the king was hunting in an area that he should have known to stay clear of. Cannibals captured him and took him to their village. They tied his hands, stacked some wood, set up a stake and bound him to the stake. As they came near to set fire to the wood, they noticed that the king was missing a thumb. Being superstitious, they never ate anyone that was less than whole. So untying the king, they sent him on his way.\r\n\r\nAs he returned home, he was reminded of the event that had taken his thumb and felt remorse for his treatment of his friend. He went immediately to the jail to speak with his friend. \"You were right,\" he said, \"it was good that my thumb was blown off.\" And he proceeded to tell the friend all that had just happened. \"And so I am very sorry for sending you to jail for so long. It was bad for me to do this.\"\r\n\r\n\"No,\" his friend replied, \"This is good!\" \"What do you mean,\'This is good\'? How could it be good that I sent my friend to jail for a year?\" \"If I had NOT been in jail, I would have been with you.\"','This is good','','inherit','closed','closed','','145-revision-2','','','2013-06-10 20:18:44','2013-06-11 00:18:44','',145,'http://divyayogamonteregie.org/web/?p=365',0,'revision','',0),(366,1,'2013-07-09 22:05:52','2013-07-10 02:05:52','<p style=\"text-align: justify;\">An old story is told of a king in Africa who had a close friend with whom he grew up. The friend had a habit of looking at every situation that ever occurred in his life (positive or negative) and remarking, \"This is good!\"</p>\r\n<p style=\"text-align: justify;\">One day the king and his friend were out on a hunting expedition. The friend would load and prepare the guns for the king. The friend had apparently done something wrong in preparing one of the guns, for after taking the gun from his friend, the king fired it and his thumb was blown off. Examining the situation the friend remarked as usual, \"This is good!\" To which the king replied, \"No, this is NOT good!\" and proceeded to send his friend to jail.</p>\r\n<p style=\"text-align: justify;\">About a year later, the king was hunting in an area that he should have known to stay clear of. Cannibals captured him and took him to their village. They tied his hands, stacked some wood, set up a stake and bound him to the stake. As they came near to set fire to the wood, they noticed that the king was missing a thumb. Being superstitious, they never ate anyone that was less than whole. So untying the king, they sent him on his way.</p>\r\n<p style=\"text-align: justify;\">As he returned home, he was reminded of the event that had taken his thumb and felt remorse for his treatment of his friend. He went immediately to the jail to speak with his friend. \"You were right,\" he said, \"it was good that my thumb was blown off.\" And he proceeded to tell the friend all that had just happened. \"And so I am very sorry for sending you to jail for so long. It was bad for me to do this.\"</p>\r\n<p style=\"text-align: justify;\">\"No,\" his friend replied, \"This is good!\" \"What do you mean,\'This is good\'? How could it be good that I sent my friend to jail for a year?\" \"If I had NOT been in jail, I would have been with you.\"</p>','This is good','','inherit','closed','closed','','145-autosave','','','2013-07-09 22:05:52','2013-07-10 02:05:52','',145,'http://divyayogamonteregie.org/web/?p=366',0,'revision','',0),(367,1,'2013-06-10 20:42:52','2013-06-11 00:42:52','Please do not stand too close to the trees! You will not be able to enjoy the forest...\r\n\r\nA few years before hurricane Katrina hit New Orleans, a new expensive automobile stopped at the top of the Mississippi River Bridge and a gentleman stepped out of the car wearing very expensive clothing.\r\n\r\nHe climbed over the rail and under the bridge onto a platform below the roadway preparing to jump. Cars started stopping and the traffic backed up for miles. The police arrived with the fire department, ministers and mental health professionals.\r\n\r\nThey began talking to the man and telling him not to jump. They told him that he may not die; he may break all of his bones and be paralyzed for life. About half mile back in traffic was an old truck with lawn mowers, rakes, and shovels. An elderly gardener got out of his truck and walked up to where the crowd was gathered.\r\n\r\nHe made his way through the people, looked over the side and hollered down to the man on the ledge, \"Hey, I got to go to work. Either jump or get off the bridge. If you decide not to jump, tomorrow is going to be better!\"\r\n\r\nWith that the man climbed up onto the bridge. The police handcuffed him and placed him in the back seat of the police car. The gardener walked back to his truck waiting for the traffic to move.\r\n\r\nThe minister asked the fireman, \"Who was that?\" The fireman said, \"He said he has to go to work!\"\r\n\r\nThe police reported to the press that all the way to the hospital the man kept saying over and over, \"Tomorrow is going to be better.\"\r\n\r\nOne must see a future, to have a future','Tomorrow is going to be better','','inherit','closed','closed','','173-revision-2','','','2013-06-10 20:42:52','2013-06-11 00:42:52','',173,'http://divyayogamonteregie.org/web/?p=367',0,'revision','',0),(368,1,'2013-07-09 22:06:53','2013-07-10 02:06:53','<p style=\"text-align: justify;\">Please do not stand too close to the trees! You will not be able to enjoy the forest...</p>\r\n<p style=\"text-align: justify;\">A few years before hurricane Katrina hit New Orleans, a new expensive automobile stopped at the top of the Mississippi River Bridge and a gentleman stepped out of the car wearing very expensive clothing.</p>\r\n<p style=\"text-align: justify;\">He climbed over the rail and under the bridge onto a platform below the roadway preparing to jump. Cars started stopping and the traffic backed up for miles. The police arrived with the fire department, ministers and mental health professionals.</p>\r\n<p style=\"text-align: justify;\">They began talking to the man and telling him not to jump. They told him that he may not die; he may break all of his bones and be paralyzed for life. About half mile back in traffic was an old truck with lawn mowers, rakes, and shovels. An elderly gardener got out of his truck and walked up to where the crowd was gathered.</p>\r\n<p style=\"text-align: justify;\">He made his way through the people, looked over the side and hollered down to the man on the ledge, \"Hey, I got to go to work. Either jump or get off the bridge. If you decide not to jump, tomorrow is going to be better!\"</p>\r\n<p style=\"text-align: justify;\">With that the man climbed up onto the bridge. The police handcuffed him and placed him in the back seat of the police car. The gardener walked back to his truck waiting for the traffic to move.</p>\r\n<p style=\"text-align: justify;\">The minister asked the fireman, \"Who was that?\" The fireman said, \"He said he has to go to work!\"</p>\r\n<p style=\"text-align: justify;\">The police reported to the press that all the way to the hospital the man kept saying over and over, \"Tomorrow is going to be better.\"</p>\r\n<p style=\"text-align: justify;\">One must see a future, to have a future</p>','Tomorrow is going to be better','','inherit','closed','closed','','173-autosave','','','2013-07-09 22:06:53','2013-07-10 02:06:53','',173,'http://divyayogamonteregie.org/web/?p=368',0,'revision','',0),(369,1,'2013-07-09 21:37:27','2013-07-10 01:37:27','There once was a wise sage who wandered the countryside. One day, as he passed near a village, he was approached by a woman who told him of a sick child nearby. She beseeched him to help this child.\r\n\r\nSo the sage came to the village, and a crowd gathered around him, for such a man was a rare sight. One woman brought the sick child to him, and he said a prayer over her.\r\n\r\n\"Do you really think your prayer will help her, when medicine has failed?\" yelled a man from the crowd.\r\n\r\n\"You know nothing of such things! You are a stupid fool!\" said the sage to the man.\r\n\r\nThe man became very angry with these words and his face grew hot and red. He was about to say something, or perhaps strike out, when the sage walked over to him and said: \"If one word has such power as to make you so angry and hot, may not another have the power to heal?\"\r\n\r\nAnd thus, the sage healed two people that day.','Wise Saint ','','inherit','closed','closed','','352-revision-v1','','','2013-07-09 21:37:27','2013-07-10 01:37:27','',352,'http://divyayogamonteregie.org/web/?p=369',0,'revision','',0),(452,1,'2013-07-09 22:08:03','2013-07-10 02:08:03','<p style=\"text-align: justify;\">There once was a wise sage who wandered the countryside. One day, as he passed near a village, he was approached by a woman who told him of a sick child nearby. She beseeched him to help this child.</p>\r\n<p style=\"text-align: justify;\">So the sage came to the village, and a crowd gathered around him, for such a man was a rare sight. One woman brought the sick child to him, and he said a prayer over her.</p>\r\n<p style=\"text-align: justify;\">\"Do you really think your prayer will help her, when medicine has failed?\" yelled a man from the crowd.</p>\r\n<p style=\"text-align: justify;\">\"You know nothing of such things! You are a stupid fool!\" said the sage to the man.</p>\r\n<p style=\"text-align: justify;\">The man became very angry with these words and his face grew hot and red. He was about to say something, or perhaps strike out, when the sage walked over to him and said: \"If one word has such power as to make you so angry and hot, may not another have the power to heal?\"</p>\r\n<p style=\"text-align: justify;\">And thus, the sage healed two people that day.</p>','Wise Saint ','','inherit','closed','closed','','352-revision-v1','','','2013-07-09 22:08:03','2013-07-10 02:08:03','',352,'http://divyayogamonteregie.org/web/?p=452',0,'revision','',0),(378,1,'2013-07-09 20:03:30','2013-07-10 00:03:30','<p style=\"text-align: justify;\"><strong>Vinesh Saxena</strong> is yoga instructor trained by Patanjali yoga peeth. He has been practicing yoga since his childhood. Mr. Saxena is “self made person”. He came from a modest family and worked hard to achieve his objectives. He earned many merit scholarship while he was student. He holds a Masters degree in Engineering and Masters in business administration along with an Accounting designation. He has worked a long time in engineering and has taught on part time basis in Concordia and McGill universities.</p>\r\n<p style=\"text-align: justify;\">He retired around his 50’s to pursue his passion. He has established a private charitable foundation which helps the people in need. On his web site of foundation he also describes “Seven simple principals of life” if people follow these principals they can gain control of their life, be happy and self sufficient beings.</p>\r\n<p style=\"text-align: justify;\">As a second objective of the foundation he also challenges to find answers to unanswered questions. i.e. “is there a soul” “Is there life after death”  “Does God exist”</p>\r\n<p style=\"text-align: justify;\">With continuing theme of “help the needy” and spirituality he started “Free Yoga sessions” to everyone beginning January 2010. No matter what, these Yoga sessions are held every Saturday (52 weeks a year) to help the well being of people and betterment of society. .</p>\r\n<p style=\"text-align: justify;\"></p>\r\n<p style=\"text-align: justify;\"><strong>Meera Trivedi</strong> is  yoga instructor trained by Patanjali yoga peeth. Being born in Brahmin family, yoga was her everyday ritual as far as she can remember.   She was able to do head stand even when she was in pre-school. Her first yoga teacher was her father. She can remember her father sitting in courtyard on yoga mat and doing  alternate nostril breathing. After doing B.Sc with Biology and Chemistry she became the biology teacher in a high school in India. By teaching human anatomy and physiology and doing yoga gradually she understood the usefulness and scientific facts involved behind Yoga. She immigrated to United States in 1994 and then got married and immigrated to Canada. Presently she works in lab for Chambly Academy.</p>\r\n<p style=\"text-align: justify;\">She believes that yoga on mat like aerobics has therapeutic and physiotherapeutic effects but simultaneously she also believes on yoga beyond mat too. If we do yoga and also lead pious, guilt free life then our organs will work properly. Because the moment we do something wrong our heart beat increases so why to do something wrong in the first place. She believes and follows devotional and karma yoga first and then come to do yoga on mat. All these things add a lot to our longevity, health and soul. She believes that  for the proper functioning of mind laughter yoga and super brain yoga can make a great contribution.  She also tries to follow eight limbs of yoga as much as she can.</p>','Instructors','','inherit','closed','closed','','6-revision-v1','','','2013-07-09 20:03:30','2013-07-10 00:03:30','',6,'http://divyayogamonteregie.org/web/?p=378',0,'revision','',0),(379,1,'2013-08-09 13:06:59','2013-08-09 17:06:59','http://divyayogamonteregie.org/web/wp-content/uploads/2013/08/site_cloud_bg.jpg','site_cloud_bg.jpg','','inherit','closed','closed','','site_cloud_bg-jpg','','','2013-08-09 13:06:59','2013-08-09 17:06:59','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/08/site_cloud_bg.jpg',0,'attachment','image/jpeg',0),(498,1,'2014-09-15 20:20:45','2014-09-16 00:20:45','<div><strong>Each Saturday 9h-11h all year around\r\n</strong></div>\r\n<div>675 Rue Green, Saint-Lambert, QC J4P 1V9, Canada</div>\r\n<div>Gym of Chambly Academy</div>\r\n<div><strong>[codepeople-post-map]</strong></div>\r\n&nbsp;\r\n\r\n<strong>and</strong>\r\n\r\n<strong>Wednesday  6:30 to 7:30 Sept-June (when Terry Fox is open)\r\n</strong>\r\n\r\n1648 Langevin, St. Hubert, Quebec J4T 1X7','Schedule & Location','','inherit','closed','closed','','9-revision-v1','','','2014-09-15 20:20:45','2014-09-16 00:20:45','',9,'http://divyayogamonteregie.org/web/?p=498',0,'revision','',0),(382,1,'2013-07-09 17:23:22','2013-07-09 21:23:22','<div><strong>Each Saturday 9h-11h all year around\r\n</strong></div>\r\n<div>675 Rue Green, Saint-Lambert, QC J4P 1V9, Canada</div>\r\n<div>Gym of Chambly Academy</div>\r\n<div><strong>[codepeople-post-map]</strong></div>\r\n&nbsp;\r\n\r\n<strong>and</strong>\r\n\r\n<strong>Thursday  6:30 to 7:30 Sept-June (when Terry Fox is open)\r\n</strong>\r\n\r\n1648 Langevin, St. Hubert, Quebec J4T 1X7','Schedule & Location','','inherit','closed','closed','','9-revision-v1','','','2013-07-09 17:23:22','2013-07-09 21:23:22','',9,'http://divyayogamonteregie.org/web/?p=382',0,'revision','',0),(397,1,'2013-10-08 20:31:51','2013-10-09 00:31:51',' ','','','publish','closed','closed','','397','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',0,'http://divyayogamonteregie.org/web/?p=397',1,'nav_menu_item','',0),(515,1,'2015-02-01 20:06:33','2015-02-02 01:06:33','<h5><span style=\"text-decoration: underline;\"><b>VERMONT</b><b> SOURDOUGH WITH 22% WHOLE WHEAT</b></span></h5>\r\nWhich is prepared by Mrs. Mihaela Boston in our conferences brunch\r\n<h5><b>You will need: (Utensils)</b></h5>\r\n<h5>1. Electronic balance, mine is from Canadian Tire: Balance de cuisine Starfrit numérique, 5 kg $29.99, wait to buy it on special at $10</h5>\r\nNow it is on special:  $9.99 <a href=\"http://www.canadiantire.ca/AST/browse/8/KitchenBath/GadgetsAccessories/Gadgets/PRD%7E0424076P/Balance+de+cuisine+Starfrit+num%E9rique%2C+5+kg.jsp?locale=fr_CA\" target=\"_blank\">http://www.canadiantire.ca/<wbr></wbr>AST/browse/8/KitchenBath/<wbr></wbr>GadgetsAccessories/Gadgets/<wbr></wbr>PRD~0424076P/Balance+de+<wbr></wbr>cuisine+Starfrit+num%E9rique%<wbr></wbr>2C+5+kg.jsp?locale=fr_CA</a>\r\n<h5>2. Pizza stone – I have one from Stokes $12</h5>\r\n<h5>PIERRE À PIZZA AVEC SUPPORT EN MÉTAL ET ROULETTE À PIZZA</h5>\r\n<h5>SKU #10110369</h5>\r\n<h5>REG. PRICE 14,99 $CA VENTE 12,98 $CA</h5>\r\n<h5><a href=\"http://www.stokesstores.com/fr/pizza-stone-with-metal-rack-and-pizza-wheel.html\" target=\"_blank\">http://www.stokesstores.com/<wbr></wbr>fr/pizza-stone-with-metal-<wbr></wbr>rack-and-pizza-wheel.html</a></h5>\r\n<h5></h5>\r\n<h5><b>Ingredients:</b></h5>\r\n<h5><b> </b></h5>\r\n<h5>Liquid levain build:</h5>\r\n<h5></h5>\r\n<h5>110g bread flour</h5>\r\n<h5>140g water</h5>\r\n<h5>20g mature levain</h5>\r\n<h5></h5>\r\n<h5>Final dough:</h5>\r\n<h5></h5>\r\n<h5>500g white bread flour ( or 420g white bread flour + 80g rye flour)</h5>\r\n<h5>180g whole-wheat flour</h5>\r\n<h5>406g water</h5>\r\n<h5>270g Liquid levain</h5>\r\n<h5>16g salt</h5>\r\n<h5></h5>\r\n<h5>Method:</h5>\r\n<h5></h5>\r\n<h5>1. Prepare the liquid starter (levain) 8 to 12 hours before preparing the dough. Mix 110g bread flour with 140g water and 20g mature levain. Let it sit at room temperature until the surface is covered with bubbles and foam.</h5>\r\n<h5>If you don’t have a sourdough starter, follow this link for a great lesson on how to make it. <a href=\"http://www.wildyeastblog.com/2007/07/13/raising-a-starter/\" target=\"_blank\">http://www.wildyeastblog.com/<wbr></wbr>2007/07/13/raising-a-starter/</a></h5>\r\n<h5>I can give you mature levain, you need to nourish it several times before starting the bread.</h5>\r\n<h5></h5>\r\n<h5>2. In a bowl add 406g water, 270g liquid levain, flour (500g + 180g). Stir with a spoon until smooth, cover the bowl and let it sit for 30 ... 60 minutes autolyse.</h5>\r\n<h5></h5>\r\n<h5>3. After autolyse, sprinkle the salt on top and knead by hand directly into the bowl, until the dough comes off the sides of the dish and on hand.</h5>\r\n<h5></h5>\r\n<h5>4. After 30 minutes, repeat a set of stretch and folders SF directly into the bowl, cover, and let stand another 30 min. Move the dough in a greased rectangular dish with a little oil, and make a set of folding SF. After 50 minutes, you do another set of SF, turn dough thin face up, cover the rectangular dish.</h5>\r\n<h5></h5>\r\n<h5>5. Shape the dough into a ball ( “boule”; great youtube video for shaping all kinds of bread can be found here: <a href=\"http://www.youtube.com/watch?v=7MVHDdDtuRc\" target=\"_blank\">http://www.youtube.com/watch?<wbr></wbr>v=7MVHDdDtuRc</a>), place it with the seam up  in a round container (<a href=\"http://en.wikipedia.org/wiki/Proofing_%28baking_technique%29\" target=\"_blank\">banettons </a>are your best option) lined with a fine cloth and set it to rise at room temperature.</h5>\r\n<h5></h5>\r\n<h5>6. Preheat oven before you bake bread at 420F, with baking stone inside. Make steam, pour bread on baking stone and let it cook with steams for 20 minutes. Remove the steam and bake for another 40 min at 380F.</h5>\r\n<h5></h5>\r\n<h5>7. Allow it to completely cool on a rack before cutting the bread (2 hours should be enough).</h5>',' Sour dough Bread','','inherit','closed','closed','','491-revision-v1','','','2015-02-01 20:06:33','2015-02-02 01:06:33','',491,'http://divyayogamonteregie.org/web/?p=515',0,'revision','',0),(394,1,'2013-09-09 20:35:43','2013-09-10 00:35:43','&nbsp;\r\n<ul>\r\n	<li>I was always blaming myself for everything that was wrong within my family.Guilt was always present.Since I have been doing yoga I realized I want to be responsible for myself.My adult children must take care of themselves.I realizes that even my children could be toxic to me and therefore I have to distant myself. I am greatful to yoga for being aware and to live in the moment.</li>\r\n</ul>\r\n- J.Smith\r\n<ul>\r\n	<li>Happiness is the state of mind. Material things do not make a person happy. Little things and action e.g. assisting or helping people, giving love &amp; affection,showing empathy &amp; compassion can change somebody\'s life----Anonymous</li>\r\n</ul>\r\n<ul>\r\n	<li>I think when we realize that we  are part of everything we become free and move forward.---Michel Sclafani</li>\r\n</ul>\r\n<ul>\r\n	<li>I read that in UK in certain Prisons yoga has been offered to Prisoners.All those who participated in the session felt the benefit not only physically but also mentally and spiritually.Yoga is beginning to be seen as a form of therapy that is beneficial to prisoners too.----- M. Brunet</li>\r\n	<li>This is my fourth session of Divya Yoga and I wish I had started long time ago.It is excellent for the body to keep fit and supple. ---Anonymous</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\"><strong> French</strong></span>\r\n<ul>\r\n	<li>Il  faut savoir pardonner et avoir la paix intérieure.</li>\r\n</ul>\r\nAnonyme\r\n<ul>\r\n	<li>  Le 27 juillet, j’ai participé à une session de yoga pour la paix au Parc Olympique de Montréal.  Il y avait 2,500 personnes le matin et 2,500 personnes l’après-midi (celui auquel j’ai participé), tous habillés de blanc.  Quelle énergie, quelle expérience! Ce fut fabuleux ! À recommencer chaque année!</li>\r\n</ul>\r\n<div>\r\n\r\n<b><span style=\"text-decoration: underline;\">Francine Hardy</span></b>\r\n\r\n</div>\r\n<ul>\r\n	<li> L’histoire que tout commence par nos pensées.  « Ce qui se produit dépend de moi. » Que j’ai un certain contrôle, à partir du moment que je le décide,  sur mes pensées et sur les gestes que je pose.  «Je pense donc je suis ».</li>\r\n</ul>\r\n<b><span style=\"text-decoration: underline;\">Richard Morion</span></b>\r\n<ul>\r\n	<li>  « Vivons intensément le présent, car l’avenir est incertain. » Ce qu’a dit mon défunt mari.   Rien n’est permanent dans ce monde.</li>\r\n</ul>\r\n<b><span style=\"text-decoration: underline;\">Maroeun</span></b>\r\n<ul>\r\n	<li>On ne peut pas être heureux dans la vie si on ne sait pas apprécier ce que l’on a.</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\">Anonyme</span>\r\n<ul>\r\n	<li>  Donnez et vous recevrez.</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\">Anonyme</span>\r\n<ul>\r\n	<li>    « Mon Dieu, donne moi le pouvoir de changer les choses que je puisse changer, d’accepter les choses que je ne puisse pas changer et la sagesse de faire la différence. »</li>\r\n</ul>\r\nLa prière de sérénité que j’ai découvert assez récemment et que j’essaie de la faire vivre chaque jour.\r\n\r\nJe suis touchée et très reconnaissante à notre professeur qui depuis plus de 3 (trois) ans n’a jamais manqué les samedi matin pour donner ce cours merveilleux.»\r\n\r\n<b><span style=\"text-decoration: underline;\">Mariana Gaubie</span></b>\r\n<ul>\r\n	<li>       « L’histoire » qui m’a le plus touchée est définitivement celle où M. Saxena demandait au groupe qui voulait un 20$, sans condition, un 20$ tout neuf, sans pli. Je crois qu’une dizaine / quinzaine de personnes ont alors levé leur main.  Il a alors froissé le 20$ et reposé la même question au groupe.  Je crois qu’alors nous avons été seulement 2 ou 3 à lever notre main.  M. Saxena a alors dit : « c’est le même 20$, il a la même valeur et je vous l’offre sans condition ».  Seulement une personne de plus a levé la main. ….</li>\r\n</ul>\r\nPeu importe ce que les gens nous font, les mauvais « événements» qui nous arrivent, nous sommes les mêmes personnes.  Nous n’avons pas moins de valeur...\r\n\r\nCette histoire m’a beaucoup aidé et continuera de m’aider tout au long de ma vie. C’est un exemple qui a marqué mon imaginaire et auquel je peux me référer pour m’aider au besoin.  J’aime beaucoup ce genre d’histoire que M. Saxena nous raconte.\r\n\r\n<span style=\"text-decoration: underline;\">Anonyme</span>\r\n<ul>\r\n	<li> Il y a des situations qui arrivent parfois dans la vie qui ne sont pas toujours facile à vivre.  Mais on doit continuer à avancer sans se retourner en arrière.  Dans mon cas j’ai pris la décision d’avancer et de continuer à évoluer tout en respectant les limites de mon corps et de mes pensées.</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\">Anonyme</span>\r\n<h1><span style=\"text-decoration: underline;\"><strong> </strong></span></h1>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Let us share','','inherit','closed','closed','','33-revision-v1','','','2013-09-09 20:35:43','2013-09-10 00:35:43','',33,'http://divyayogamonteregie.org/web/?p=394',0,'revision','',0),(392,1,'2013-09-07 19:47:40','2013-09-07 23:47:40','&nbsp;\r\n<div>\r\n<h1><strong><span style=\"text-decoration: underline;\"> French</span> </strong></h1>\r\n<table width=\"638\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"top\" width=\"595\"></td>\r\n</tr>\r\n<tr>\r\n<td valign=\"top\" width=\"595\"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<ul>\r\n	<li>Il  faut savoir pardonner et avoir la paix intérieure.</li>\r\n</ul>\r\nAnonyme\r\n<ul>\r\n	<li>  Le 27 juillet, j’ai participé à une session de yoga pour la paix au Parc Olympique de Montréal.  Il y avait 2,500 personnes le matin et 2,500 personnes l’après-midi (celui auquel j’ai participé), tous habillés de blanc.  Quelle énergie, quelle expérience! Ce fut fabuleux ! À recommencer chaque année!</li>\r\n</ul>\r\n<div>\r\n\r\n<b><span style=\"text-decoration: underline;\">Francine Hardy</span></b>\r\n\r\n</div>\r\n<ul>\r\n	<li> L’histoire que tout commence par nos pensées.  « Ce qui se produit dépend de moi. » Que j’ai un certain contrôle, à partir du moment que je le décide,  sur mes pensées et sur les gestes que je pose.  «Je pense donc je suis ».</li>\r\n</ul>\r\n<b><span style=\"text-decoration: underline;\">Richard Morion</span></b>\r\n<ul>\r\n	<li>  « Vivons intensément le présent, car l’avenir est incertain. » Ce qu’a dit mon défunt mari.   Rien n’est permanent dans ce monde.</li>\r\n</ul>\r\n<b><span style=\"text-decoration: underline;\">Maroeun</span></b>\r\n<ul>\r\n	<li>On ne peut pas être heureux dans la vie si on ne sait pas apprécier ce que l’on a.</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\">Anonyme</span>\r\n<ul>\r\n	<li>  Donnez et vous recevrez.</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\">Anonyme</span>\r\n<ul>\r\n	<li>    « Mon Dieu, donne moi le pouvoir de changer les choses que je puisse changer, d’accepter les choses que je ne puisse pas changer et la sagesse de faire la différence. »</li>\r\n</ul>\r\nLa prière de sérénité que j’ai découvert assez récemment et que j’essaie de la faire vivre chaque jour.\r\n\r\nJe suis touchée et très reconnaissante à notre professeur qui depuis plus de 3 (trois) ans n’a jamais manqué les samedi matin pour donner ce cours merveilleux.»\r\n\r\n<b><span style=\"text-decoration: underline;\">Mariana Gaubie</span></b>\r\n<ul>\r\n	<li>       « L’histoire » qui m’a le plus touchée est définitivement celle où M. Saxena demandait au groupe qui voulait un 20$, sans condition, un 20$ tout neuf, sans pli. Je crois qu’une dizaine / quinzaine de personnes ont alors levé leur main.  Il a alors froissé le 20$ et reposé la même question au groupe.  Je crois qu’alors nous avons été seulement 2 ou 3 à lever notre main.  M. Saxena a alors dit : « c’est le même 20$, il a la même valeur et je vous l’offre sans condition ».  Seulement une personne de plus a levé la main. ….</li>\r\n</ul>\r\nPeu importe ce que les gens nous font, les mauvais « événements» qui nous arrivent, nous sommes les mêmes personnes.  Nous n’avons pas moins de valeur...\r\n\r\nCette histoire m’a beaucoup aidé et continuera de m’aider tout au long de ma vie. C’est un exemple qui a marqué mon imaginaire et auquel je peux me référer pour m’aider au besoin.  J’aime beaucoup ce genre d’histoire que M. Saxena nous raconte.\r\n\r\n<span style=\"text-decoration: underline;\">Anonyme</span>\r\n<ul>\r\n	<li> Il y a des situations qui arrivent parfois dans la vie qui ne sont pas toujours facile à vivre.  Mais on doit continuer à avancer sans se retourner en arrière.  Dans mon cas j’ai pris la décision d’avancer et de continuer à évoluer tout en respectant les limites de mon corps et de mes pensées.</li>\r\n</ul>\r\n<span style=\"text-decoration: underline;\">Anonyme</span>\r\n<h1><span style=\"text-decoration: underline;\"><strong>English</strong></span></h1>\r\n<ul>\r\n	<li>I was always blaming myself for everything that was wrong within my family.Guilt was always present.Since I have been doing yoga I realized I want to be responsible for myself.My adult children must take care of themselves.I realizes that even my children could be toxic to me and therefore I have to distant myself. I am greatful to yoga for being aware and to live in the moment.</li>\r\n</ul>\r\n- J.Smith\r\n<ul>\r\n	<li>Happiness is the state of mind. Material things do not make a person happy. Little things and action e.g. assisting or helping people, giving love &amp; affection,showing empathy &amp; compassion can change somebody\'s life----Anonymous</li>\r\n</ul>\r\n<ul>\r\n	<li>I think when we realize that we  are part of everything we become free and move forward.---Michel Sclafani</li>\r\n</ul>\r\n<ul>\r\n	<li>I read that in UK in certain Prisons yoga has been offered to Prisoners.All those who participated in the session felt the benefit not only physically but also mentally and spiritually.Yoga is beginning to be seen as a form of therapy that is beneficial to prisoners too.----- M. Brunet</li>\r\n	<li>This is my fourth session of Divya Yoga and I wish I had started long time ago.It is excellent for the body to keep fit and supple. ---Anonymous</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Let us share','','inherit','closed','closed','','33-revision-v1','','','2013-09-07 19:47:40','2013-09-07 23:47:40','',33,'http://divyayogamonteregie.org/web/?p=392',0,'revision','',0),(399,1,'2013-10-08 20:31:52','2013-10-09 00:31:52',' ','','','publish','closed','closed','','399','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',0,'http://divyayogamonteregie.org/web/?p=399',2,'nav_menu_item','',0),(400,1,'2013-10-08 20:31:53','2013-10-09 00:31:53',' ','','','publish','closed','closed','','400','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',0,'http://divyayogamonteregie.org/web/?p=400',8,'nav_menu_item','',0),(401,1,'2013-10-08 20:31:52','2013-10-09 00:31:52',' ','','','publish','closed','closed','','401','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',0,'http://divyayogamonteregie.org/web/?p=401',5,'nav_menu_item','',0),(402,1,'2013-10-08 20:31:53','2013-10-09 00:31:53',' ','','','publish','closed','closed','','402','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',0,'http://divyayogamonteregie.org/web/?p=402',9,'nav_menu_item','',0),(403,1,'2013-10-08 20:31:53','2013-10-09 00:31:53',' ','','','publish','closed','closed','','403','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',0,'http://divyayogamonteregie.org/web/?p=403',10,'nav_menu_item','',0),(404,1,'2013-10-08 20:31:52','2013-10-09 00:31:52',' ','','','publish','closed','closed','','404','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',0,'http://divyayogamonteregie.org/web/?p=404',3,'nav_menu_item','',0),(405,1,'2013-10-08 20:31:53','2013-10-09 00:31:53',' ','','','publish','closed','closed','','405','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',0,'http://divyayogamonteregie.org/web/?p=405',53,'nav_menu_item','',0),(406,1,'2013-10-08 20:31:52','2013-10-09 00:31:52',' ','','','publish','closed','closed','','406','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',0,'http://divyayogamonteregie.org/web/?p=406',4,'nav_menu_item','',0),(407,1,'2013-10-08 20:31:52','2013-10-09 00:31:52',' ','','','publish','closed','closed','','407','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',0,'http://divyayogamonteregie.org/web/?p=407',7,'nav_menu_item','',0),(408,1,'2013-10-08 20:31:53','2013-10-09 00:31:53',' ','','','publish','closed','closed','','408','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',0,'http://divyayogamonteregie.org/web/?p=408',26,'nav_menu_item','',0),(413,1,'2013-10-08 22:22:02','2013-10-09 02:22:02',' ','','','publish','closed','closed','','413','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',190,'http://divyayogamonteregie.org/web/?p=413',55,'nav_menu_item','',0),(414,1,'2013-10-08 22:22:02','2013-10-09 02:22:02',' ','','','publish','closed','closed','','414','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',190,'http://divyayogamonteregie.org/web/?p=414',54,'nav_menu_item','',0),(415,1,'2013-10-08 22:22:02','2013-10-09 02:22:02',' ','','','publish','closed','closed','','415','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',190,'http://divyayogamonteregie.org/web/?p=415',56,'nav_menu_item','',0),(416,1,'2013-10-08 22:22:02','2013-10-09 02:22:02',' ','','','publish','closed','closed','','416','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',190,'http://divyayogamonteregie.org/web/?p=416',58,'nav_menu_item','',0),(417,1,'2013-10-08 22:22:02','2013-10-09 02:22:02',' ','','','publish','closed','closed','','417','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',190,'http://divyayogamonteregie.org/web/?p=417',57,'nav_menu_item','',0),(418,1,'2013-10-08 22:22:02','2013-10-09 02:22:02',' ','','','publish','closed','closed','','418','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',190,'http://divyayogamonteregie.org/web/?p=418',59,'nav_menu_item','',0),(419,1,'2013-10-08 22:22:02','2013-10-09 02:22:02',' ','','','publish','closed','closed','','419','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',190,'http://divyayogamonteregie.org/web/?p=419',60,'nav_menu_item','',0),(420,1,'2013-10-08 22:22:02','2013-10-09 02:22:02',' ','','','publish','closed','closed','','420','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',190,'http://divyayogamonteregie.org/web/?p=420',61,'nav_menu_item','',0),(421,1,'2013-10-08 22:37:15','2013-10-09 02:37:15',' ','','','publish','closed','closed','','421','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',39,'http://divyayogamonteregie.org/web/?p=421',11,'nav_menu_item','',0),(422,1,'2013-10-08 22:37:15','2013-10-09 02:37:15',' ','','','publish','closed','closed','','422','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',39,'http://divyayogamonteregie.org/web/?p=422',12,'nav_menu_item','',0),(423,1,'2013-10-08 22:37:15','2013-10-09 02:37:15',' ','','','publish','closed','closed','','423','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',39,'http://divyayogamonteregie.org/web/?p=423',13,'nav_menu_item','',0),(424,1,'2013-10-08 22:37:15','2013-10-09 02:37:15',' ','','','publish','closed','closed','','424','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',39,'http://divyayogamonteregie.org/web/?p=424',14,'nav_menu_item','',0),(425,1,'2013-10-08 22:37:15','2013-10-09 02:37:15',' ','','','publish','closed','closed','','425','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',39,'http://divyayogamonteregie.org/web/?p=425',15,'nav_menu_item','',0),(426,1,'2013-10-08 22:37:15','2013-10-09 02:37:15',' ','','','publish','closed','closed','','426','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',39,'http://divyayogamonteregie.org/web/?p=426',16,'nav_menu_item','',0),(427,1,'2013-10-08 22:37:15','2013-10-09 02:37:15',' ','','','publish','closed','closed','','427','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',39,'http://divyayogamonteregie.org/web/?p=427',17,'nav_menu_item','',0),(428,1,'2013-10-08 22:37:15','2013-10-09 02:37:15',' ','','','publish','closed','closed','','428','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',39,'http://divyayogamonteregie.org/web/?p=428',18,'nav_menu_item','',0),(429,1,'2013-10-08 22:37:15','2013-10-09 02:37:15',' ','','','publish','closed','closed','','429','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',39,'http://divyayogamonteregie.org/web/?p=429',19,'nav_menu_item','',0),(430,1,'2013-10-08 22:37:15','2013-10-09 02:37:15',' ','','','publish','closed','closed','','430','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',39,'http://divyayogamonteregie.org/web/?p=430',20,'nav_menu_item','',0),(431,1,'2013-10-08 22:37:15','2013-10-09 02:37:15',' ','','','publish','closed','closed','','431','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',39,'http://divyayogamonteregie.org/web/?p=431',21,'nav_menu_item','',0),(432,1,'2013-10-08 22:37:16','2013-10-09 02:37:16',' ','','','publish','closed','closed','','432','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',79,'http://divyayogamonteregie.org/web/?p=432',27,'nav_menu_item','',0),(433,1,'2013-10-08 22:37:16','2013-10-09 02:37:16',' ','','','publish','closed','closed','','433','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',79,'http://divyayogamonteregie.org/web/?p=433',28,'nav_menu_item','',0),(434,1,'2013-10-08 22:37:16','2013-10-09 02:37:16',' ','','','publish','closed','closed','','434','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',79,'http://divyayogamonteregie.org/web/?p=434',29,'nav_menu_item','',0),(435,1,'2013-10-08 22:37:16','2013-10-09 02:37:16',' ','','','publish','closed','closed','','435','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',79,'http://divyayogamonteregie.org/web/?p=435',30,'nav_menu_item','',0),(436,1,'2013-10-08 22:37:16','2013-10-09 02:37:16',' ','','','publish','closed','closed','','436','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',79,'http://divyayogamonteregie.org/web/?p=436',31,'nav_menu_item','',0),(437,1,'2013-10-08 22:37:16','2013-10-09 02:37:16',' ','','','publish','closed','closed','','437','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',79,'http://divyayogamonteregie.org/web/?p=437',32,'nav_menu_item','',0),(438,1,'2013-10-08 22:37:16','2013-10-09 02:37:16',' ','','','publish','closed','closed','','438','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',79,'http://divyayogamonteregie.org/web/?p=438',33,'nav_menu_item','',0),(439,1,'2013-10-08 22:37:16','2013-10-09 02:37:16',' ','','','publish','closed','closed','','439','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',79,'http://divyayogamonteregie.org/web/?p=439',34,'nav_menu_item','',0),(440,1,'2013-10-08 22:37:16','2013-10-09 02:37:16',' ','','','publish','closed','closed','','440','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',79,'http://divyayogamonteregie.org/web/?p=440',35,'nav_menu_item','',0),(441,1,'2013-10-08 22:37:16','2013-10-09 02:37:16',' ','','','publish','closed','closed','','441','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',79,'http://divyayogamonteregie.org/web/?p=441',36,'nav_menu_item','',0),(442,1,'2013-10-08 22:37:16','2013-10-09 02:37:16',' ','','','publish','closed','closed','','442','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',79,'http://divyayogamonteregie.org/web/?p=442',37,'nav_menu_item','',0),(443,1,'2013-10-08 22:37:16','2013-10-09 02:37:16',' ','','','publish','closed','closed','','443','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',79,'http://divyayogamonteregie.org/web/?p=443',38,'nav_menu_item','',0),(444,1,'2013-10-08 22:37:16','2013-10-09 02:37:16',' ','','','publish','closed','closed','','444','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',79,'http://divyayogamonteregie.org/web/?p=444',39,'nav_menu_item','',0),(445,1,'2013-10-08 22:37:16','2013-10-09 02:37:16',' ','','','publish','closed','closed','','445','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',79,'http://divyayogamonteregie.org/web/?p=445',40,'nav_menu_item','',0),(446,1,'2013-10-08 22:37:16','2013-10-09 02:37:16',' ','','','publish','closed','closed','','446','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',79,'http://divyayogamonteregie.org/web/?p=446',41,'nav_menu_item','',0),(447,1,'2013-10-08 22:37:16','2013-10-09 02:37:16',' ','','','publish','closed','closed','','447','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',79,'http://divyayogamonteregie.org/web/?p=447',42,'nav_menu_item','',0),(448,1,'2013-10-08 22:37:16','2013-10-09 02:37:16',' ','','','publish','closed','closed','','448','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',79,'http://divyayogamonteregie.org/web/?p=448',43,'nav_menu_item','',0),(449,1,'2013-10-08 22:37:16','2013-10-09 02:37:16',' ','','','publish','closed','closed','','449','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',79,'http://divyayogamonteregie.org/web/?p=449',44,'nav_menu_item','',0),(450,1,'2013-10-08 22:37:16','2013-10-09 02:37:16',' ','','','publish','closed','closed','','450','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',79,'http://divyayogamonteregie.org/web/?p=450',45,'nav_menu_item','',0),(453,1,'2013-07-09 21:41:42','2013-07-10 01:41:42','By Remez Sasson\r\n\r\nOne day, a yogi and his disciple arrived in the big city. They had no money with them, but they needed food and a place to stay. The disciple was sure that they were going to beg for their food, and sleep in the park at night.\r\n\r\n\"There is a big park not far from here. We can sleep there at night\", said the disciple.\r\n\"In the open air?\" Asked the yogi.\r\n\"Yes\", responded the student.\r\n\r\nThe yogi smiled and said: \"No, tonight we are going to sleep in a hotel and eat there too\".\r\n\r\nThe student was amazed and exclaimed, \"We cannot afford that!\"\r\n\"Come and sit down\", said the yogi.\r\n\r\nThey both sat down on the ground, and the yogi said:\r\n\"When you focus your mind intently on any subject, it comes to pass.\"\r\n\r\nThe yogi closed his eyes and started to meditate with full concentration. After about ten minutes he got up and started to walk, with his disciple following him. They walked through several streets and alleys, until they arrived at a hotel.\r\n\r\n\"Come, let\'s enter inside\", the yogi said to his disciple.\r\n\r\nThey just set foot in the entrance, when a well-dressed man approached them.\r\n\r\n\"I am the manager of this hotel. You look like traveling swamis, and I believe you have no money. Would you like to work in the kitchen, and in return I\'ll give you food and a place to stay?\"\r\n\r\n\"Fine\", the yogi responded.\r\n\r\nThe disciple was perplexed and asked the yogi: \"Did you use any magic? How did you do that?\"\r\n\r\nThe yogi smiled and said, \"I wanted to show you how the power of thoughts works. When you think with full and strong concentration about something that you want to happen, and your mind does not resist the subject of your thought, your thought materializes.\"\r\n\r\n\"The secret is concentrating, visualizing, seeing details, having faith and projecting mental and emotional energy into the mental scene. These are the general prerequisites. When your mind is empty from thoughts, and only one single thought is allowed to enter, it gains a very great power. One should be very careful with what he thinks. A concentrated thought is powerful, and exerts a very strong influence.\"\r\n\r\nThe disciple looked at his teacher and said: \"I see that I have to sharpen my concentration in order to be able to use this power.\"\r\n\r\n\"Yes, this is the first step\", the yogi replied.\r\n\r\n&nbsp;','The power of thoughts','','inherit','closed','closed','','152-revision-v1','','','2013-07-09 21:41:42','2013-07-10 01:41:42','',152,'http://divyayogamonteregie.org/web/?p=453',0,'revision','',0),(454,1,'2013-10-19 20:03:16','2013-10-20 00:03:16',' ','','','publish','closed','closed','','454','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',79,'http://divyayogamonteregie.org/web/?p=454',46,'nav_menu_item','',0),(455,1,'2013-10-19 20:03:16','2013-10-20 00:03:16',' ','','','publish','closed','closed','','455','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',79,'http://divyayogamonteregie.org/web/?p=455',47,'nav_menu_item','',0),(456,1,'2013-10-19 20:03:16','2013-10-20 00:03:16',' ','','','publish','closed','closed','','456','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',79,'http://divyayogamonteregie.org/web/?p=456',48,'nav_menu_item','',0),(458,1,'2013-10-19 20:03:16','2013-10-20 00:03:16',' ','','','publish','closed','closed','','458','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',79,'http://divyayogamonteregie.org/web/?p=458',49,'nav_menu_item','',0),(459,1,'2013-10-19 20:03:16','2013-10-20 00:03:16',' ','','','publish','closed','closed','','459','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',79,'http://divyayogamonteregie.org/web/?p=459',50,'nav_menu_item','',0),(460,1,'2013-10-19 20:09:09','2013-10-20 00:09:09','','Within You Is The Strength To Meet Life\'s Challenges !','','publish','closed','closed','','within-you-is-the-strength-to-meet-lifes-challenges','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',39,'http://divyayogamonteregie.org/web/?p=460',25,'nav_menu_item','',0),(461,1,'2013-10-19 20:09:09','2013-10-20 00:09:09','','Today\'s Dreams Are Tomorrow\'s Successes','','publish','closed','closed','','todays-dreams-are-tomorrows-successes','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',39,'http://divyayogamonteregie.org/web/?p=461',24,'nav_menu_item','',0),(462,1,'2013-10-19 20:09:09','2013-10-20 00:09:09',' ','','','publish','closed','closed','','462','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',39,'http://divyayogamonteregie.org/web/?p=462',23,'nav_menu_item','',0),(463,1,'2013-10-19 20:09:09','2013-10-20 00:09:09',' ','','','publish','closed','closed','','463','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',39,'http://divyayogamonteregie.org/web/?p=463',22,'nav_menu_item','',0),(464,1,'2013-10-19 20:15:50','2013-10-20 00:15:50','One day all the employees of a very unusual company reached their office and all saw a big sign on the main door which said this:\r\n\r\n\"Yesterday, the person who has been hindering your growth in this company passed away. We invite you to join the funeral in the room that has been prepared in the gym.\"\r\n\r\nIn the beginning, they all got sad for the death of one of their colleagues, but after a while they started getting curious to know who was that person who hindered the growth of their colleagues and the company itself?\r\n\r\nThe excitement in the gym was such that security agents were ordered to control the crowd within the room. The more people reached the coffin, the more the excitement heated up.\r\n\r\n<b>Everyone thought - \"Who is this person who was hindering my progress?\"</b>\r\n\r\nOne by one the intrigued employees got closer to the coffin, and when they looked inside it, they suddenly became speechless.\r\n\r\nThey all got to stand near the coffin, and all ended up shocked and in silence, as if someone had touched the deepest part of their soul.\r\n\r\n<b>There was a mirror inside the coffin: everyone who looked inside it could see themselves!</b>\r\n\r\n<b>There was also a sign next to the mirror that said:</b>\r\n\r\n<b>There is only one person who is capable of setting limits to your growth and IT IS YOU!</b>\r\n\r\nYour life does not change when your boss changes, when your friends change, when your parents change, when your husband or wife changes, when your company changes, when your church changes, when your location changes, when your money changes, when your status changes.\r\n\r\n<b>No, your life changes when YOU change</b>, when you go beyond your limiting beliefs.\r\n\r\nExamine yourself, watch yourself. Don\'t be afraid of difficulties, impossibilities and losses. Be a winner, build yourself and your reality. It\'s the way you face life itself that makes the difference.\r\n\r\nA few years ago a college student, who was struggling to build his career, appeared for his professional examination. He attempted his first paper excellently but he imagined that he performed badly.\r\n\r\nKeeping this in mind, he lost concentration for the rest of the subjects and in turn, didn\'t write the other subjects well. Later on, the results came out that the paper he thought was poorly written had secured top marks in the college but in the other subjects, he failed. Why did this happen? The reason is simple: lack of belief in himself','An Interesting Funeral','','publish','closed','closed','','an-interesting-funeral','','','2013-10-19 20:15:50','2013-10-20 00:15:50','',79,'http://divyayogamonteregie.org/web/?page_id=464',0,'page','',0),(465,1,'2013-10-19 20:15:50','2013-10-20 00:15:50','One day all the employees of a very unusual company reached their office and all saw a big sign on the main door which said this:\r\n\r\n\"Yesterday, the person who has been hindering your growth in this company passed away. We invite you to join the funeral in the room that has been prepared in the gym.\"\r\n\r\nIn the beginning, they all got sad for the death of one of their colleagues, but after a while they started getting curious to know who was that person who hindered the growth of their colleagues and the company itself?\r\n\r\nThe excitement in the gym was such that security agents were ordered to control the crowd within the room. The more people reached the coffin, the more the excitement heated up.\r\n\r\n<b>Everyone thought - \"Who is this person who was hindering my progress?\"</b>\r\n\r\nOne by one the intrigued employees got closer to the coffin, and when they looked inside it, they suddenly became speechless.\r\n\r\nThey all got to stand near the coffin, and all ended up shocked and in silence, as if someone had touched the deepest part of their soul.\r\n\r\n<b>There was a mirror inside the coffin: everyone who looked inside it could see themselves!</b>\r\n\r\n<b>There was also a sign next to the mirror that said:</b>\r\n\r\n<b>There is only one person who is capable of setting limits to your growth and IT IS YOU!</b>\r\n\r\nYour life does not change when your boss changes, when your friends change, when your parents change, when your husband or wife changes, when your company changes, when your church changes, when your location changes, when your money changes, when your status changes.\r\n\r\n<b>No, your life changes when YOU change</b>, when you go beyond your limiting beliefs.\r\n\r\nExamine yourself, watch yourself. Don\'t be afraid of difficulties, impossibilities and losses. Be a winner, build yourself and your reality. It\'s the way you face life itself that makes the difference.\r\n\r\nA few years ago a college student, who was struggling to build his career, appeared for his professional examination. He attempted his first paper excellently but he imagined that he performed badly.\r\n\r\nKeeping this in mind, he lost concentration for the rest of the subjects and in turn, didn\'t write the other subjects well. Later on, the results came out that the paper he thought was poorly written had secured top marks in the college but in the other subjects, he failed. Why did this happen? The reason is simple: lack of belief in himself','An Interesting Funeral','','inherit','closed','closed','','464-revision-v1','','','2013-10-19 20:15:50','2013-10-20 00:15:50','',464,'http://divyayogamonteregie.org/web/?p=465',0,'revision','',0),(466,1,'2013-10-19 20:18:07','2013-10-20 00:18:07','Sometimes it sounds foolish or frustrating to think positive when times are really bad and a few people make it worse for you, doesn\'t it?\r\n\r\nBut just tell me, if I call you tomorrow morning, while you are still in bed and say, \"You are an Angel for me and I\'m blessed to have such a good person in my life. May God bless you\".\r\n\r\n<b>How would you feel?</b>\r\n\r\nWon\'t it be a great feeling and a great way to start a fantastic day?\r\n\r\nNext morning I again call you but this time I say, \"You Rascal! You are the dumbest and most foolish person on the earth I\'ve ever met. You screwed me and you will be screwed...etc\".\r\n\r\n<b>How would you feel now?</b>\r\n\r\nOf course it would be a frustrating day, with a sad feeling, because you heard all the crap in the morning while you were still in bed!\r\n\r\nNow answer my question - <b>\"Who is controlling \'your\' life?\" </b>\r\n\r\n<b>Am I supposed to control YOUR life? Is that right?</b>\r\n\r\n<b>When I say something good about you, does it makes you a good person and vice versa?</b>\r\n\r\n<b>NO, YOU ARE THE MASTER OF YOUR OWN LIFE!</b>','Who\'s In Charge Of Your Life?','','publish','closed','closed','','whos-in-charge-of-your-life','','','2013-10-19 20:18:37','2013-10-20 00:18:37','',79,'http://divyayogamonteregie.org/web/?page_id=466',0,'page','',0),(467,1,'2013-10-19 20:18:07','2013-10-20 00:18:07','Sometimes it sounds foolish or frustrating to think positive when times are really bad and a few people make it worse for you, doesn\'t it?\r\n\r\nBut just tell me, if I call you tomorrow morning, while you are still in bed and say, \"You are an Angel for me and I\'m blessed to have such a good person in my life. May God bless you\".\r\n\r\n<b>How would you feel?</b>\r\n\r\nWon\'t it be a great feeling and a great way to start a fantastic day?\r\n\r\nNext morning I again call you but this time I say, \"You Rascal! You are the dumbest and most foolish person on the earth I\'ve ever met. You screwed me and you will be screwed...etc\".\r\n\r\n<b>How would you feel now?</b>\r\n\r\nOf course it would be a frustrating day, with a sad feeling, because you heard all the crap in the morning while you were still in bed!\r\n\r\nNow answer my question - <b>\"Who is controlling \'your\' life?\" </b>\r\n\r\n<b>Am I supposed to control YOUR life? Is that right?</b>\r\n\r\n<b>When I say something good about you, does it makes you a good person and vice versa?</b>\r\n\r\n<b>NO, YOU ARE THE MASTER OF YOUR OWN LIFE!</b>','Who\'s In Charge Of Your Life?','','inherit','closed','closed','','466-revision-v1','','','2013-10-19 20:18:07','2013-10-20 00:18:07','',466,'http://divyayogamonteregie.org/web/?p=467',0,'revision','',0),(468,1,'2013-10-19 20:19:41','2013-10-20 00:19:41','One day all the employees of a very unusual company reached their office and all saw a big sign on the main door which said this:\r\n\r\n\"Yesterday, the person who has been hindering your growth in this company passed away. We invite you to join the funeral in the room that has been prepared in the gym.\"\r\n\r\nIn the beginning, they all got sad for the death of one of their colleagues, but after a while they started getting curious to know who was that person who hindered the growth of their colleagues and the company itself?\r\n\r\nThe excitement in the gym was such that security agents were ordered to control the crowd within the room. The more people reached the coffin, the more the excitement heated up.\r\n\r\n<b>Everyone thought - \"Who is this person who was hindering my progress?\"</b>\r\n\r\nOne by one the intrigued employees got closer to the coffin, and when they looked inside it, they suddenly became speechless.\r\n\r\nThey all got to stand near the coffin, and all ended up shocked and in silence, as if someone had touched the deepest part of their soul.\r\n\r\n<b>There was a mirror inside the coffin: everyone who looked inside it could see themselves!</b>\r\n\r\n<b>There was also a sign next to the mirror that said:</b>\r\n\r\n<b>There is only one person who is capable of setting limits to your growth and IT IS YOU!</b>\r\n\r\nYour life does not change when your boss changes, when your friends change, when your parents change, when your husband or wife changes, when your company changes, when your church changes, when your location changes, when your money changes, when your status changes.\r\n\r\n<b>No, your life changes when YOU change</b>, when you go beyond your limiting beliefs.\r\n\r\nExamine yourself, watch yourself. Don\'t be afraid of difficulties, impossibilities and losses. Be a winner, build yourself and your reality. It\'s the way you face life itself that makes the difference.\r\n\r\nA few years ago a college student, who was struggling to build his career, appeared for his professional examination. He attempted his first paper excellently but he imagined that he performed badly.\r\n\r\nKeeping this in mind, he lost concentration for the rest of the subjects and in turn, didn\'t write the other subjects well. Later on, the results came out that the paper he thought was poorly written had secured top marks in the college but in the other subjects, he failed. Why did this happen? The reason is simple: lack of belief in himself','An Interesting Funeral','','inherit','closed','closed','','464-autosave-v1','','','2013-10-19 20:19:41','2013-10-20 00:19:41','',464,'http://divyayogamonteregie.org/web/?p=468',0,'revision','',0),(469,1,'2013-10-19 20:23:25','2013-10-20 00:23:25',' ','','','publish','closed','closed','','469','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',79,'http://divyayogamonteregie.org/web/?p=469',52,'nav_menu_item','',0),(470,1,'2013-10-19 20:23:25','2013-10-20 00:23:25','','Who\'s In Charge Of Your Life?','','publish','closed','closed','','whos-in-charge-of-your-life','','','2013-12-06 20:13:09','2013-12-07 01:13:09','',79,'http://divyayogamonteregie.org/web/?p=470',51,'nav_menu_item','',0),(506,1,'2014-10-19 12:42:56','2014-10-19 16:42:56','Upma\r\n\r\nCream of wheat 1 cup\r\n\r\nOnion seed 1/2 tea spoon\r\n\r\nPea nuts 100 Grams\r\n\r\nHot pepper whole 2 cut into 4 pieces.\r\n\r\nOil 3 table spoon\r\n\r\n2 Cups of water\r\n\r\n1.5 spoon of salt\r\n\r\nCooking time 3-5 minutes\r\n\r\nPut pan on stove,  add oil on your pan when it is hot. add  Onion seeds and hot pepper to fry. When hot pepper is fried take out most of it pieces. Now add cream of wheat. Roast the total for 2-3 minutes. Make sure its color does not change very much. White color gives a better look than brown. Add water and salt and keep on steering till it is dry. Serve it after garnishing with the fried hot pepper which you took out.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Upma','','inherit','closed','closed','','489-revision-v1','','','2014-10-19 12:42:56','2014-10-19 16:42:56','',489,'http://divyayogamonteregie.org/web/?p=506',0,'revision','',0),(508,1,'2014-10-19 12:53:15','2014-10-19 16:53:15','Divya Yoga is the kind of yoga taugth by Swami Ramdev','Divya Yoga Monteregie','','inherit','closed','closed','','patanjali-yoga-welcomes-you','','','2014-10-19 12:53:15','2014-10-19 16:53:15','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2014/10/Patanjali-yoga-welcomes-you.jpg',0,'attachment','image/jpeg',0),(509,1,'2014-10-19 12:58:22','2014-10-19 16:58:22','','Patanjali yoga welcomes you','','inherit','closed','closed','','patanjali-yoga-welcomes-you-2','','','2014-10-19 12:58:22','2014-10-19 16:58:22','',0,'http://divyayogamonteregie.org/web/wp-content/uploads/2014/10/Patanjali-yoga-welcomes-you1.jpg',0,'attachment','image/jpeg',0),(489,1,'2014-10-19 12:43:15','2014-10-19 16:43:15','Upma\r\n\r\nCream of wheat 1 cup\r\n\r\nOnion seed 1/2 tea spoon\r\n\r\nPea nuts 100 Grams\r\n\r\nHot pepper whole 2 cut into 4 pieces.\r\n\r\nOil 3 table spoon\r\n\r\n2 Cups of water\r\n\r\n1.5 spoon of salt\r\n\r\nCooking time 3-5 minutes\r\n\r\nPut pan on stove,  add oil on your pan when it is hot. add  Onion seeds and hot pepper to fry. When hot pepper is fried take out most of it pieces. Now add cream of wheat. Roast the total for 2-3 minutes. Make sure its color does not change very much. White color gives a better look than brown. Add water and salt and keep on steering till it is dry. Serve it after garnishing with the fried hot pepper which you took out.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;','Upma','','publish','closed','closed','','upma','','','2014-10-19 12:43:15','2014-10-19 16:43:15','',190,'http://divyayogamonteregie.org/web/?page_id=489',0,'page','',0),(490,1,'2014-03-29 18:16:44','2014-03-29 22:16:44','Coming Soon.','Upma','','inherit','closed','closed','','489-revision-v1','','','2014-03-29 18:16:44','2014-03-29 22:16:44','',489,'http://divyayogamonteregie.org/web/?p=490',0,'revision','',0),(491,1,'2015-02-01 20:06:33','2015-02-02 01:06:33','<h5><span style=\"text-decoration: underline;\"><b>VERMONT</b><b> SOURDOUGH WITH 22% WHOLE WHEAT</b></span></h5>\r\nWhich is prepared by Mrs. Mihaela Boston in our conferences brunch\r\n<h5><b>You will need: (Utensils)</b></h5>\r\n<h5>1. Electronic balance, mine is from Canadian Tire: Balance de cuisine Starfrit numérique, 5 kg $29.99, wait to buy it on special at $10</h5>\r\nNow it is on special:  $9.99 <a href=\"http://www.canadiantire.ca/AST/browse/8/KitchenBath/GadgetsAccessories/Gadgets/PRD%7E0424076P/Balance+de+cuisine+Starfrit+num%E9rique%2C+5+kg.jsp?locale=fr_CA\" target=\"_blank\">http://www.canadiantire.ca/<wbr></wbr>AST/browse/8/KitchenBath/<wbr></wbr>GadgetsAccessories/Gadgets/<wbr></wbr>PRD~0424076P/Balance+de+<wbr></wbr>cuisine+Starfrit+num%E9rique%<wbr></wbr>2C+5+kg.jsp?locale=fr_CA</a>\r\n<h5>2. Pizza stone – I have one from Stokes $12</h5>\r\n<h5>PIERRE À PIZZA AVEC SUPPORT EN MÉTAL ET ROULETTE À PIZZA</h5>\r\n<h5>SKU #10110369</h5>\r\n<h5>REG. PRICE 14,99 $CA VENTE 12,98 $CA</h5>\r\n<h5><a href=\"http://www.stokesstores.com/fr/pizza-stone-with-metal-rack-and-pizza-wheel.html\" target=\"_blank\">http://www.stokesstores.com/<wbr></wbr>fr/pizza-stone-with-metal-<wbr></wbr>rack-and-pizza-wheel.html</a></h5>\r\n<h5></h5>\r\n<h5><b>Ingredients:</b></h5>\r\n<h5><b> </b></h5>\r\n<h5>Liquid levain build:</h5>\r\n<h5></h5>\r\n<h5>110g bread flour</h5>\r\n<h5>140g water</h5>\r\n<h5>20g mature levain</h5>\r\n<h5></h5>\r\n<h5>Final dough:</h5>\r\n<h5></h5>\r\n<h5>500g white bread flour ( or 420g white bread flour + 80g rye flour)</h5>\r\n<h5>180g whole-wheat flour</h5>\r\n<h5>406g water</h5>\r\n<h5>270g Liquid levain</h5>\r\n<h5>16g salt</h5>\r\n<h5></h5>\r\n<h5>Method:</h5>\r\n<h5></h5>\r\n<h5>1. Prepare the liquid starter (levain) 8 to 12 hours before preparing the dough. Mix 110g bread flour with 140g water and 20g mature levain. Let it sit at room temperature until the surface is covered with bubbles and foam.</h5>\r\n<h5>If you don’t have a sourdough starter, follow this link for a great lesson on how to make it. <a href=\"http://www.wildyeastblog.com/2007/07/13/raising-a-starter/\" target=\"_blank\">http://www.wildyeastblog.com/<wbr></wbr>2007/07/13/raising-a-starter/</a></h5>\r\n<h5>I can give you mature levain, you need to nourish it several times before starting the bread.</h5>\r\n<h5></h5>\r\n<h5>2. In a bowl add 406g water, 270g liquid levain, flour (500g + 180g). Stir with a spoon until smooth, cover the bowl and let it sit for 30 ... 60 minutes autolyse.</h5>\r\n<h5></h5>\r\n<h5>3. After autolyse, sprinkle the salt on top and knead by hand directly into the bowl, until the dough comes off the sides of the dish and on hand.</h5>\r\n<h5></h5>\r\n<h5>4. After 30 minutes, repeat a set of stretch and folders SF directly into the bowl, cover, and let stand another 30 min. Move the dough in a greased rectangular dish with a little oil, and make a set of folding SF. After 50 minutes, you do another set of SF, turn dough thin face up, cover the rectangular dish.</h5>\r\n<h5></h5>\r\n<h5>5. Shape the dough into a ball ( “boule”; great youtube video for shaping all kinds of bread can be found here: <a href=\"http://www.youtube.com/watch?v=7MVHDdDtuRc\" target=\"_blank\">http://www.youtube.com/watch?<wbr></wbr>v=7MVHDdDtuRc</a>), place it with the seam up  in a round container (<a href=\"http://en.wikipedia.org/wiki/Proofing_%28baking_technique%29\" target=\"_blank\">banettons </a>are your best option) lined with a fine cloth and set it to rise at room temperature.</h5>\r\n<h5></h5>\r\n<h5>6. Preheat oven before you bake bread at 420F, with baking stone inside. Make steam, pour bread on baking stone and let it cook with steams for 20 minutes. Remove the steam and bake for another 40 min at 380F.</h5>\r\n<h5></h5>\r\n<h5>7. Allow it to completely cool on a rack before cutting the bread (2 hours should be enough).</h5>',' Sour dough Bread','','publish','closed','closed','','sour-dough-bread','','','2015-02-01 20:06:33','2015-02-02 01:06:33','',190,'http://divyayogamonteregie.org/web/?page_id=491',0,'page','',0),(492,1,'2014-03-29 18:18:08','2014-03-29 22:18:08','Coming soon',' Sour dough Bread','','inherit','closed','closed','','491-revision-v1','','','2014-03-29 18:18:08','2014-03-29 22:18:08','',491,'http://divyayogamonteregie.org/web/?p=492',0,'revision','',0),(493,1,'2014-03-29 18:19:57','0000-00-00 00:00:00','','Poppy seed food made by Mihaela.','','draft','closed','closed','','','','','2014-03-29 18:19:57','2014-03-29 22:19:57','',190,'http://divyayogamonteregie.org/web/?page_id=493',0,'page','',0),(494,1,'2014-03-29 18:19:57','2014-03-29 22:19:57','','Poppy seed food made by Mihaela.','','inherit','closed','closed','','493-revision-v1','','','2014-03-29 18:19:57','2014-03-29 22:19:57','',493,'http://divyayogamonteregie.org/web/?p=494',0,'revision','',0),(522,1,'2022-09-25 13:14:25','2022-09-25 17:14:25','','map','','inherit','closed','closed','','map','','','2022-09-25 13:14:25','2022-09-25 17:14:25','',9,'http://divyayogamonteregie.org/web/wp-content/uploads/2013/05/map.png',0,'attachment','image/png',0),(523,1,'2022-09-25 13:15:26','2022-09-25 17:15:26','<div><strong>Each Saturday 9h-11h all year around\r\n</strong></div>\r\n<div>675 Rue Green, Saint-Lambert, QC J4P 1V9, Canada</div>\r\n<div>Gym of Chambly Academy</div>\r\n<div><strong> </strong></div>\r\n<div><a href=\"https://www.google.com.do/maps/place/Saint-Lambert+International+High+School/@45.5101813,-73.5036585,17z/data=!4m14!1m7!3m6!1s0x4cc91b291f83dd69:0x541145490f3a73fb!2sSaint-Lambert+International+High+School!8m2!3d45.5099257!4d-73.5045812!16zL20vMDZyX3d5!3m5!1s0x4cc91b291f83dd69:0x541145490f3a73fb!8m2!3d45.5099257!4d-73.5045812!16zL20vMDZyX3d5\" target=\"_blank\" rel=\"attachment wp-att-522\"><img class=\"aligncenter  wp-image-522\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/05/map-300x162.png\" alt=\"map\" width=\"540\" height=\"298\" /></a></div>\r\n<strong>and</strong>\r\n\r\n<strong>Wednesday  6:30 to 7:30 Sept-June (when Terry Fox is open)\r\n</strong>\r\n\r\n1648 Langevin, St. Hubert, Quebec J4T 1X7','Schedule & Location','','inherit','closed','closed','','9-revision-v1','','','2022-09-25 13:15:26','2022-09-25 17:15:26','',9,'http://divyayogamonteregie.org/web/?p=523',0,'revision','',0),(524,1,'2022-09-25 13:16:04','2022-09-25 17:16:04','<div><strong>Each Saturday 9h-11h all year around\r\n</strong></div>\r\n<div>675 Rue Green, Saint-Lambert, QC J4P 1V9, Canada</div>\r\n<div>Gym of Chambly Academy</div>\r\n<div><strong> </strong></div>\r\n<div><a href=\"https://www.google.com.do/maps/place/Saint-Lambert+International+High+School/@45.5101813,-73.5036585,17z/data=!4m14!1m7!3m6!1s0x4cc91b291f83dd69:0x541145490f3a73fb!2sSaint-Lambert+International+High+School!8m2!3d45.5099257!4d-73.5045812!16zL20vMDZyX3d5!3m5!1s0x4cc91b291f83dd69:0x541145490f3a73fb!8m2!3d45.5099257!4d-73.5045812!16zL20vMDZyX3d5\" target=\"_blank\" rel=\"attachment wp-att-522\"><img class=\"aligncenter wp-image-522\" src=\"http://divyayogamonteregie.org/web/wp-content/uploads/2013/05/map-300x162.png\" alt=\"map\" width=\"675\" height=\"372\" /></a></div>\r\n<strong>and</strong>\r\n\r\n<strong>Wednesday  6:30 to 7:30 Sept-June (when Terry Fox is open)\r\n</strong>\r\n\r\n1648 Langevin, St. Hubert, Quebec J4T 1X7','Schedule & Location','','inherit','closed','closed','','9-revision-v1','','','2022-09-25 13:16:04','2022-09-25 17:16:04','',9,'http://divyayogamonteregie.org/web/?p=524',0,'revision','',0),(534,3,'2023-05-24 09:03:12','2023-05-24 13:03:12','By Remez Sasson\n\nOne day, a yogi and his disciple arrived in the big city. They had no money with them, but they needed food and a place to stay. The disciple was sure that they were going to beg for their food, and sleep in the park at night.\n\n\"There is a big park not far from here. We can sleep there at night\", said the disciple.\n\"In the open air?\" Asked the yogi.\n\"Yes\", responded the student.\n\nThe yogi smiled and said: \"No, tonight we are going to sleep in a hotel and eat there too\".\n\nThe student was amazed and exclaimed, \"We cannot afford that!\"\n\"Come and sit down\", said the yogi.\n\nThey both sat down on the ground, and the yogi said:\n\"When you focus your mind intently on any subject, it comes to pass.\"\n\nThe yogi closed his eyes and started to meditate with full concentration. After about ten minutes he got up and started to walk, with his disciple following him. They walked through several streets and alleys, until they arrived at a hotel.\n\n\"Come, let\'s enter inside\", the yogi said to his disciple.\n\nThey just set foot in the entrance, when a well-dressed man approached them.\n\n\"I am the manager of this hotel. You look like traveling swamis, and I believe you have no money. Would you like to work in the kitchen, and in return I\'ll give you food and a place to stay?\"\n\n\"Fine\", the yogi responded.\n\nThe disciple was perplexed and asked the yogi: \"Did you use any magic? How did you do that?\"\n\nThe yogi smiled and said, \"I wanted to show you how the power of thoughts works. When you think with full and strong concentration about something that you want to happen, and your mind does not resist the subject of your thought, your thought materializes.\"\n\n\"The secret is concentrating, visualizing, seeing details, having faith and projecting mental and emotional energy into the mental scene. These are the general prerequisites. When your mind is empty from thoughts, and only one single thought is allowed to enter, it gains a very great power. One should be very careful with what he thinks. A concentrated thought is powerful, and exerts a very strong influence.\"\n\nThe disciple looked at his teacher and said: \"I see that I have to sharpen my concentration in order to be able to use this power.\"\n\n\"Yes, this is the first step\", the yogi replied.','The power of thoughts','','inherit','closed','closed','','152-autosave-v1','','','2023-05-24 09:03:12','2023-05-24 13:03:12','',152,'https://divyayogamonteregie.org/web/?p=534',0,'revision','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_spidercalendar_calendar`
--

DROP TABLE IF EXISTS `wp_spidercalendar_calendar`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_spidercalendar_calendar` (
  `id` int NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `gid` varchar(255) NOT NULL,
  `time_format` tinyint(1) NOT NULL,
  `allow_publish` varchar(255) NOT NULL,
  `def_year` varchar(512) NOT NULL,
  `def_month` varchar(255) NOT NULL,
  `published` tinyint(1) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_spidercalendar_calendar`
--

LOCK TABLES `wp_spidercalendar_calendar` WRITE;
/*!40000 ALTER TABLE `wp_spidercalendar_calendar` DISABLE KEYS */;
INSERT INTO `wp_spidercalendar_calendar` (`id`, `title`, `gid`, `time_format`, `allow_publish`, `def_year`, `def_month`, `published`) VALUES (1,'Calender of events','',0,'','2010','01',1),(2,'','',0,'','','',1);
/*!40000 ALTER TABLE `wp_spidercalendar_calendar` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_spidercalendar_event`
--

DROP TABLE IF EXISTS `wp_spidercalendar_event`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_spidercalendar_event` (
  `id` int NOT NULL AUTO_INCREMENT,
  `calendar` int NOT NULL,
  `date` date NOT NULL,
  `date_end` date NOT NULL,
  `title` text NOT NULL,
  `time` varchar(20) NOT NULL,
  `text_for_date` longtext NOT NULL,
  `userID` varchar(255) NOT NULL,
  `repeat_method` varchar(255) NOT NULL,
  `repeat` varchar(255) NOT NULL,
  `week` varchar(255) NOT NULL,
  `month` varchar(255) NOT NULL,
  `month_type` varchar(255) NOT NULL,
  `monthly_list` varchar(255) NOT NULL,
  `month_week` varchar(255) NOT NULL,
  `year_month` varchar(255) NOT NULL,
  `published` int NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_spidercalendar_event`
--

LOCK TABLES `wp_spidercalendar_event` WRITE;
/*!40000 ALTER TABLE `wp_spidercalendar_event` DISABLE KEYS */;
INSERT INTO `wp_spidercalendar_event` (`id`, `calendar`, `date`, `date_end`, `title`, `time`, `text_for_date`, `userID`, `repeat_method`, `repeat`, `week`, `month`, `month_type`, `monthly_list`, `month_week`, `year_month`, `published`) VALUES (1,1,'2010-01-16','2020-12-30','Divya yoga Monteregie by Vinesh & Meera Saxena','09:00-11:00','<h1><span style=\"color: #0000ff;\">We do yoga on every Saturday from 9-11 am</span></h1>','','weekly','1','Sat,','','1','','','1',0),(2,1,'2011-01-29','2020-12-29','Last Saturday of the month conference','11:00-11:30','<h1><strong><span style=\"color: #0000ff;\">There will be a guest speaker who will talk on the health related topics.</span></strong></h1>','','monthly','1','','','2','last','Sat','1',0),(3,1,'2011-01-29','2020-08-29','Last Saturday of the month brunch','11:30-01:30','After conference we all will have vegetarian simple brunch.','','monthly','1','','','2','last','Sat','1',1);
/*!40000 ALTER TABLE `wp_spidercalendar_event` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_spidercalendar_theme`
--

DROP TABLE IF EXISTS `wp_spidercalendar_theme`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_spidercalendar_theme` (
  `id` int NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `width` varchar(255) NOT NULL,
  `cell_height` varchar(255) NOT NULL,
  `bg_top` varchar(255) NOT NULL,
  `bg_bottom` varchar(255) NOT NULL,
  `border_color` varchar(255) NOT NULL,
  `text_color_year` varchar(255) NOT NULL,
  `text_color_month` varchar(255) NOT NULL,
  `text_color_week_days` varchar(255) NOT NULL,
  `text_color_other_months` varchar(255) NOT NULL,
  `text_color_this_month_unevented` varchar(255) NOT NULL,
  `text_color_this_month_evented` varchar(255) NOT NULL,
  `event_title_color` varchar(255) NOT NULL,
  `current_day_border_color` varchar(255) NOT NULL,
  `bg_color_this_month_evented` varchar(255) NOT NULL,
  `next_prev_event_arrowcolor` varchar(255) NOT NULL,
  `show_event_bgcolor` varchar(255) NOT NULL,
  `cell_border_color` varchar(255) NOT NULL,
  `arrow_color_year` varchar(255) NOT NULL,
  `week_days_cell_height` varchar(255) NOT NULL,
  `arrow_color_month` varchar(255) NOT NULL,
  `text_color_sun_days` varchar(255) NOT NULL,
  `title_color` varchar(255) NOT NULL,
  `next_prev_event_bgcolor` varchar(255) NOT NULL,
  `title_font_size` varchar(255) NOT NULL,
  `title_font` varchar(255) NOT NULL,
  `title_style` varchar(255) NOT NULL,
  `date_color` varchar(255) NOT NULL,
  `date_size` varchar(255) NOT NULL,
  `date_font` varchar(255) NOT NULL,
  `date_style` varchar(255) NOT NULL,
  `popup_width` varchar(255) NOT NULL,
  `popup_height` varchar(255) NOT NULL,
  `number_of_shown_evetns` varchar(255) NOT NULL,
  `sundays_font_size` varchar(255) NOT NULL,
  `other_days_font_size` varchar(255) NOT NULL,
  `weekdays_font_size` varchar(255) NOT NULL,
  `border_width` varchar(255) NOT NULL,
  `top_height` varchar(255) NOT NULL,
  `bg_color_other_months` varchar(255) NOT NULL,
  `sundays_bg_color` varchar(255) NOT NULL,
  `weekdays_bg_color` varchar(255) NOT NULL,
  `week_start_day` varchar(255) NOT NULL,
  `weekday_sunday_bg_color` varchar(255) NOT NULL,
  `border_radius` varchar(255) NOT NULL,
  `year_font_size` varchar(255) NOT NULL,
  `month_font_size` varchar(255) NOT NULL,
  `arrow_size` varchar(255) NOT NULL,
  `next_month_text_color` varchar(255) NOT NULL,
  `prev_month_text_color` varchar(255) NOT NULL,
  `next_month_arrow_color` varchar(255) NOT NULL,
  `prev_month_arrow_color` varchar(255) NOT NULL,
  `next_month_font_size` varchar(255) NOT NULL,
  `prev_month_font_size` varchar(255) NOT NULL,
  `month_type` varchar(255) NOT NULL,
  `date_format` varchar(255) NOT NULL,
  `show_time` int NOT NULL,
  `show_repeat` int NOT NULL,
  `date_bg_color` varchar(255) NOT NULL,
  `event_bg_color1` varchar(255) NOT NULL,
  `event_bg_color2` varchar(255) NOT NULL,
  `event_num_bg_color1` varchar(255) NOT NULL,
  `event_num_bg_color2` varchar(255) NOT NULL,
  `event_num_color` varchar(255) NOT NULL,
  `date_font_size` varchar(255) NOT NULL,
  `event_num_font_size` varchar(255) NOT NULL,
  `event_table_height` varchar(255) NOT NULL,
  `date_height` varchar(255) NOT NULL,
  `ev_title_bg_color` varchar(255) NOT NULL,
  `week_font_size` varchar(255) NOT NULL,
  `day_month_font_size` varchar(255) NOT NULL,
  `week_font_color` varchar(255) NOT NULL,
  `day_month_font_color` varchar(255) NOT NULL,
  `views_tabs_bg_color` varchar(255) NOT NULL,
  `views_tabs_text_color` varchar(255) NOT NULL,
  `views_tabs_font_size` varchar(255) NOT NULL,
  `day_start` int NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_spidercalendar_theme`
--

LOCK TABLES `wp_spidercalendar_theme` WRITE;
/*!40000 ALTER TABLE `wp_spidercalendar_theme` DISABLE KEYS */;
INSERT INTO `wp_spidercalendar_theme` (`id`, `title`, `width`, `cell_height`, `bg_top`, `bg_bottom`, `border_color`, `text_color_year`, `text_color_month`, `text_color_week_days`, `text_color_other_months`, `text_color_this_month_unevented`, `text_color_this_month_evented`, `event_title_color`, `current_day_border_color`, `bg_color_this_month_evented`, `next_prev_event_arrowcolor`, `show_event_bgcolor`, `cell_border_color`, `arrow_color_year`, `week_days_cell_height`, `arrow_color_month`, `text_color_sun_days`, `title_color`, `next_prev_event_bgcolor`, `title_font_size`, `title_font`, `title_style`, `date_color`, `date_size`, `date_font`, `date_style`, `popup_width`, `popup_height`, `number_of_shown_evetns`, `sundays_font_size`, `other_days_font_size`, `weekdays_font_size`, `border_width`, `top_height`, `bg_color_other_months`, `sundays_bg_color`, `weekdays_bg_color`, `week_start_day`, `weekday_sunday_bg_color`, `border_radius`, `year_font_size`, `month_font_size`, `arrow_size`, `next_month_text_color`, `prev_month_text_color`, `next_month_arrow_color`, `prev_month_arrow_color`, `next_month_font_size`, `prev_month_font_size`, `month_type`, `date_format`, `show_time`, `show_repeat`, `date_bg_color`, `event_bg_color1`, `event_bg_color2`, `event_num_bg_color1`, `event_num_bg_color2`, `event_num_color`, `date_font_size`, `event_num_font_size`, `event_table_height`, `date_height`, `ev_title_bg_color`, `week_font_size`, `day_month_font_size`, `week_font_color`, `day_month_font_color`, `views_tabs_bg_color`, `views_tabs_text_color`, `views_tabs_font_size`, `day_start`) VALUES (13,'Shiny Blue','700','70','005478','E1E1E1','005478','F9F2F4','F9F2F4','005D78','B0B0B0','6A6A6A','6A6A6A','236283','005478','B4C5CC','97A0A6','B4C5CC','A9A9A9','CCD1D2','50','CCD1D2','6A6A6A','FFFFFF','00608A','','','normal','262626','','','normal','600','500','1','25','25','25','0','100','E1E1E1','E1E1E1','D6D6D6','su','B5B5B5','0','25','25','50','CCD1D2','CCD1D2','CCD1D2','1010A4','16','16','2','w/d/m/y',1,1,'D6D4D5','E1E1E1','DEDCDD','005478','006E91','FFFFFF','15','13','30','25','C3D0D6','15','12','005476','737373','01799C','FFFFFF','13',1);
/*!40000 ALTER TABLE `wp_spidercalendar_theme` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_spidercalendar_widget_theme`
--

DROP TABLE IF EXISTS `wp_spidercalendar_widget_theme`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_spidercalendar_widget_theme` (
  `id` int NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL,
  `width` varchar(255) NOT NULL,
  `week_start_day` varchar(255) NOT NULL,
  `font_year` varchar(255) NOT NULL,
  `font_month` varchar(255) NOT NULL,
  `font_day` varchar(255) NOT NULL,
  `font_weekday` varchar(255) NOT NULL,
  `header_bgcolor` varchar(255) NOT NULL,
  `footer_bgcolor` varchar(255) NOT NULL,
  `text_color_month` varchar(255) NOT NULL,
  `text_color_week_days` varchar(255) NOT NULL,
  `text_color_other_months` varchar(255) NOT NULL,
  `text_color_this_month_unevented` varchar(255) NOT NULL,
  `text_color_this_month_evented` varchar(255) NOT NULL,
  `bg_color_this_month_evented` varchar(255) NOT NULL,
  `bg_color_selected` varchar(255) NOT NULL,
  `arrow_color` varchar(255) NOT NULL,
  `text_color_selected` varchar(255) NOT NULL,
  `border_day` varchar(255) NOT NULL,
  `text_color_sun_days` varchar(255) NOT NULL,
  `weekdays_bg_color` varchar(255) NOT NULL,
  `su_bg_color` varchar(255) NOT NULL,
  `cell_border_color` varchar(255) NOT NULL,
  `year_font_size` varchar(255) NOT NULL,
  `year_font_color` varchar(255) NOT NULL,
  `year_tabs_bg_color` varchar(255) NOT NULL,
  `date_format` varchar(255) NOT NULL,
  `title_color` varchar(255) NOT NULL,
  `title_font_size` varchar(255) NOT NULL,
  `title_font` varchar(255) NOT NULL,
  `title_style` varchar(255) NOT NULL,
  `date_color` varchar(255) NOT NULL,
  `date_size` varchar(255) NOT NULL,
  `date_font` varchar(255) NOT NULL,
  `date_style` varchar(255) NOT NULL,
  `next_prev_event_bgcolor` varchar(255) NOT NULL,
  `next_prev_event_arrowcolor` varchar(255) NOT NULL,
  `show_event_bgcolor` varchar(255) NOT NULL,
  `popup_width` varchar(255) NOT NULL,
  `popup_height` varchar(255) NOT NULL,
  `show_repeat` varchar(255) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_spidercalendar_widget_theme`
--

LOCK TABLES `wp_spidercalendar_widget_theme` WRITE;
/*!40000 ALTER TABLE `wp_spidercalendar_widget_theme` DISABLE KEYS */;
INSERT INTO `wp_spidercalendar_widget_theme` (`id`, `title`, `width`, `week_start_day`, `font_year`, `font_month`, `font_day`, `font_weekday`, `header_bgcolor`, `footer_bgcolor`, `text_color_month`, `text_color_week_days`, `text_color_other_months`, `text_color_this_month_unevented`, `text_color_this_month_evented`, `bg_color_this_month_evented`, `bg_color_selected`, `arrow_color`, `text_color_selected`, `border_day`, `text_color_sun_days`, `weekdays_bg_color`, `su_bg_color`, `cell_border_color`, `year_font_size`, `year_font_color`, `year_tabs_bg_color`, `date_format`, `title_color`, `title_font_size`, `title_font`, `title_style`, `date_color`, `date_size`, `date_font`, `date_style`, `next_prev_event_bgcolor`, `next_prev_event_arrowcolor`, `show_event_bgcolor`, `popup_width`, `popup_height`, `show_repeat`) VALUES (1,'Shiny Blue','200','mo','','','','','005478','E1E1E1','FFFFFF','2F647D','939699','989898','FBFFFE','005478','005478','CED1D0','FFFFFF','005478','989898','D6D6D6','B5B5B5','D2D2D2','13','ACACAC','ECECEC','w/d/m/y','FFFFFF','','','normal','262626','','','normal','00608A','97A0A6','B4C5CC','600','500','1');
/*!40000 ALTER TABLE `wp_spidercalendar_widget_theme` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_term_relationships`
--

DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_term_relationships` (
  `object_id` bigint unsigned NOT NULL DEFAULT '0',
  `term_taxonomy_id` bigint unsigned NOT NULL DEFAULT '0',
  `term_order` int NOT NULL DEFAULT '0',
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_term_relationships`
--

LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (1,1,0),(397,2,0),(1,4,0),(399,2,0),(404,2,0),(406,2,0),(401,2,0),(407,2,0),(400,2,0),(402,2,0),(403,2,0),(408,2,0),(405,2,0),(414,2,0),(413,2,0),(415,2,0),(417,2,0),(416,2,0),(418,2,0),(419,2,0),(420,2,0),(421,2,0),(422,2,0),(423,2,0),(424,2,0),(425,2,0),(426,2,0),(427,2,0),(428,2,0),(429,2,0),(430,2,0),(431,2,0),(432,2,0),(433,2,0),(434,2,0),(435,2,0),(436,2,0),(437,2,0),(438,2,0),(439,2,0),(440,2,0),(441,2,0),(442,2,0),(443,2,0),(444,2,0),(445,2,0),(446,2,0),(447,2,0),(448,2,0),(449,2,0),(450,2,0),(454,2,0),(455,2,0),(456,2,0),(458,2,0),(459,2,0),(463,2,0),(462,2,0),(461,2,0),(460,2,0),(470,2,0),(469,2,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_term_taxonomy`
--

DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_term_taxonomy` (
  `term_taxonomy_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint unsigned NOT NULL DEFAULT '0',
  `taxonomy` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `parent` bigint unsigned NOT NULL DEFAULT '0',
  `count` bigint NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_term_taxonomy`
--

LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,1),(2,2,'nav_menu','',0,60),(3,3,'post_format','',0,0),(4,4,'post_format','',0,1);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_termmeta`
--

DROP TABLE IF EXISTS `wp_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_termmeta` (
  `meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_termmeta`
--

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

--
-- Table structure for table `wp_terms`
--

DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_terms` (
  `term_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `slug` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `term_group` bigint NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_terms`
--

LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Uncategorized','uncategorized',0),(2,'main','main',0),(3,'post-format-aside','post-format-aside',0),(4,'post-format-quote','post-format-quote',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_usermeta`
--

DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_usermeta` (
  `umeta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=77 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_usermeta`
--

LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES (1,1,'first_name',''),(2,1,'last_name',''),(3,1,'nickname','admin'),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'comment_shortcuts','false'),(7,1,'admin_color','fresh'),(8,1,'use_ssl','0'),(9,1,'show_admin_bar_front','true'),(10,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(11,1,'wp_user_level','10'),(12,1,'dismissed_wp_pointers','wp330_toolbar,wp330_saving_widgets,wp340_choose_image_from_library,wp340_customize_current_theme_link,wp350_media,easmedia_pointer_pointer,wp360_revisions'),(13,1,'show_welcome_panel','1'),(14,1,'wp_dashboard_quick_press_last_post_id','535'),(15,1,'wp_user-settings','libraryContent=browse&editor=tinymce&hidetb=1&emediagallery_tab=pop&align=center&imgsize=medium'),(16,1,'wp_user-settings-time','1381284991'),(17,1,'closedpostboxes_dashboard','a:0:{}'),(18,1,'metaboxhidden_dashboard','a:1:{i:0;s:21:\"dashboard_browser_nag\";}'),(19,1,'managenav-menuscolumnshidden','a:4:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";}'),(20,1,'metaboxhidden_nav-menus','a:3:{i:0;s:8:\"add-post\";i:1;s:12:\"add-post_tag\";i:2;s:15:\"add-post_format\";}'),(21,1,'closedpostboxes_page','a:1:{i:0;s:13:\"pageparentdiv\";}'),(22,1,'metaboxhidden_page','a:6:{i:0;s:10:\"postcustom\";i:1;s:16:\"commentstatusdiv\";i:2;s:11:\"commentsdiv\";i:3;s:7:\"slugdiv\";i:4;s:9:\"authordiv\";i:5;s:12:\"revisionsdiv\";}'),(23,1,'meta-box-order_page','a:3:{s:4:\"side\";s:36:\"submitdiv,pageparentdiv,postimagediv\";s:6:\"normal\";s:70:\"postcustom,commentstatusdiv,commentsdiv,slugdiv,authordiv,revisionsdiv\";s:8:\"advanced\";s:0:\"\";}'),(24,1,'screen_layout_page','2'),(25,1,'wporg_favorites',''),(26,1,'nav_menu_recently_edited','2'),(27,1,'edit_page_per_page','60'),(28,1,'manageedit-pagecolumnshidden','a:4:{i:0;s:6:\"author\";i:1;s:8:\"comments\";i:2;s:0:\"\";i:3;s:0:\"\";}'),(29,1,'manageuploadcolumnshidden','a:4:{i:0;s:6:\"author\";i:1;s:8:\"comments\";i:2;s:0:\"\";i:3;s:0:\"\";}'),(30,1,'upload_per_page','100'),(31,1,'al2fb_like_faces','1'),(47,1,'session_tokens','a:1:{s:64:\"4f1d8570d71a3d3435c39064bc2a7e8bcc89868e15b29fa54f3088be9958d4e5\";a:4:{s:10:\"expiration\";i:1728603340;s:2:\"ip\";s:12:\"66.158.152.1\";s:2:\"ua\";s:80:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:131.0) Gecko/20100101 Firefox/131.0\";s:5:\"login\";i:1728430540;}}'),(33,2,'nickname','denis'),(34,2,'first_name',''),(35,2,'last_name',''),(36,2,'description',''),(37,2,'rich_editing','true'),(38,2,'comment_shortcuts','false'),(39,2,'admin_color','fresh'),(40,2,'use_ssl','0'),(41,2,'show_admin_bar_front','true'),(42,2,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(43,2,'wp_user_level','10'),(44,2,'dismissed_wp_pointers',''),(46,2,'wp_dashboard_quick_press_last_post_id','526'),(48,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"66.158.152.0\";}'),(49,1,'wp_media_library_mode','list'),(50,1,'syntax_highlighting','true'),(51,1,'locale',''),(52,1,'aim',''),(53,1,'yim',''),(54,1,'jabber',''),(55,1,'wp_persisted_preferences','a:2:{s:14:\"core/edit-post\";a:3:{s:17:\"complementaryArea\";s:18:\"edit-post/document\";s:12:\"welcomeGuide\";b:0;s:26:\"isComplementaryAreaVisible\";b:1;}s:9:\"_modified\";s:24:\"2023-05-23T15:19:16.514Z\";}'),(56,3,'nickname','andres'),(57,3,'first_name',''),(58,3,'last_name',''),(59,3,'description',''),(60,3,'rich_editing','true'),(61,3,'syntax_highlighting','true'),(62,3,'comment_shortcuts','false'),(63,3,'admin_color','fresh'),(64,3,'use_ssl','0'),(65,3,'show_admin_bar_front','true'),(66,3,'locale',''),(67,3,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(68,3,'wp_user_level','10'),(69,3,'dismissed_wp_pointers',''),(70,3,'aim',''),(71,3,'yim',''),(72,3,'jabber',''),(73,3,'session_tokens','a:3:{s:64:\"69479c61c20deb9250fe20601c16704b09e4953ad8c519dbc9b43df3cc568a53\";a:4:{s:10:\"expiration\";i:1685028275;s:2:\"ip\";s:13:\"181.44.117.11\";s:2:\"ua\";s:129:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36 Edg/113.0.1774.42\";s:5:\"login\";i:1684855475;}s:64:\"eaa45ec248c629a0c5762d7f72027a2a4d494eb27404bba8e180f631704a2753\";a:4:{s:10:\"expiration\";i:1685059683;s:2:\"ip\";s:13:\"181.44.117.11\";s:2:\"ua\";s:129:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36 Edg/113.0.1774.50\";s:5:\"login\";i:1684886883;}s:64:\"c7e8a7d5bd0aa766202cf29f593cd0bdd8aa701272fbb1a237cc3a7e78359fb1\";a:4:{s:10:\"expiration\";i:1685104953;s:2:\"ip\";s:13:\"181.44.117.11\";s:2:\"ua\";s:129:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.0.0 Safari/537.36 Edg/113.0.1774.50\";s:5:\"login\";i:1684932153;}}'),(74,3,'wp_dashboard_quick_press_last_post_id','529'),(75,3,'community-events-location','a:1:{s:2:\"ip\";s:12:\"181.44.117.0\";}'),(76,3,'wp_persisted_preferences','a:2:{s:14:\"core/edit-post\";a:2:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;}s:9:\"_modified\";s:24:\"2023-05-23T15:25:30.656Z\";}');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_users`
--

DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_users` (
  `ID` bigint unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_pass` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_status` int NOT NULL DEFAULT '0',
  `display_name` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_users`
--

LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES (1,'admin','$P$B6DCv6bN71muzXWLDcvtsm0NBuQ9Yd/','admin','webmaster@divyayogamonteregie.org','','2013-05-08 17:12:14','1611542567:$P$Bu3y2GO9YIAwYWAV0BjwC56yJzIgRH.',0,'admin'),(2,'denis','$P$BuO15WLCFvRBZMTG1926VZBPwLx.3i0','denis','denis@centerforconsciousnessdevelopment.ca','','2022-10-19 02:41:33','',0,'denis'),(3,'andres','$P$ByAQQp3H8QvHsf3K6f.vbkb0VA9Gkq/','andres','ahsjimenez@gmail.com','','2023-05-23 15:21:13','1684855273:$P$BCArLbvboLrv29P9n.7Km4Saheft4Z.',0,'andres');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Dumping events for database 'divya_wp242'
--

--
-- Dumping routines for database 'divya_wp242'
--
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2024-11-22 17:34:05
