-- MySQL dump 10.11
--
-- Host: localhost    Database: threads_jo151
-- ------------------------------------------------------
-- Server version	5.0.92-community-log

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

--
-- Table structure for table `jos_banner`
--

DROP TABLE IF EXISTS `jos_banner`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_banner` (
  `bid` int(11) NOT NULL auto_increment,
  `cid` int(11) NOT NULL default '0',
  `type` varchar(30) NOT NULL default 'banner',
  `name` varchar(255) NOT NULL default '',
  `alias` varchar(255) NOT NULL default '',
  `imptotal` int(11) NOT NULL default '0',
  `impmade` int(11) NOT NULL default '0',
  `clicks` int(11) NOT NULL default '0',
  `imageurl` varchar(100) NOT NULL default '',
  `clickurl` varchar(200) NOT NULL default '',
  `date` datetime default NULL,
  `showBanner` tinyint(1) NOT NULL default '0',
  `checked_out` tinyint(1) NOT NULL default '0',
  `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
  `editor` varchar(50) default NULL,
  `custombannercode` text,
  `catid` int(10) unsigned NOT NULL default '0',
  `description` text NOT NULL,
  `sticky` tinyint(1) unsigned NOT NULL default '0',
  `ordering` int(11) NOT NULL default '0',
  `publish_up` datetime NOT NULL default '0000-00-00 00:00:00',
  `publish_down` datetime NOT NULL default '0000-00-00 00:00:00',
  `tags` text NOT NULL,
  `params` text NOT NULL,
  PRIMARY KEY  (`bid`),
  KEY `viewbanner` (`showBanner`),
  KEY `idx_banner_catid` (`catid`)
) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_banner`
--

LOCK TABLES `jos_banner` WRITE;
/*!40000 ALTER TABLE `jos_banner` DISABLE KEYS */;
INSERT INTO `jos_banner` VALUES (1,1,'banner','OSM 1','osm-1',0,43,0,'osmbanner1.png','http://www.opensourcematters.org','2004-07-07 15:31:29',1,0,'0000-00-00 00:00:00',NULL,'',13,'',0,1,'0000-00-00 00:00:00','0000-00-00 00:00:00','',''),(2,1,'banner','OSM 2','osm-2',0,49,0,'osmbanner2.png','http://www.opensourcematters.org','2004-07-07 15:31:29',1,0,'0000-00-00 00:00:00','','',13,'',0,2,'0000-00-00 00:00:00','0000-00-00 00:00:00','',''),(3,1,'','Jesus','jesus',0,3067,112,'','http://one-pilgrims-journey.blogspot.com/','2010-01-06 15:07:45',1,0,'0000-00-00 00:00:00','','<a href=\"{CLICKURL}\" target=\"_blank\">{NAME}</a>\r\n<br/>\r\nJesus is Lord! He comes into us as the Spirit and with the Father!',14,'',0,1,'0000-00-00 00:00:00','0000-00-00 00:00:00','','width=0\nheight=0'),(4,1,'','Christsweb Forum','christsweb-forum',0,3068,139,'','http://www.christsweb.net','2010-01-06 14:55:25',1,0,'0000-00-00 00:00:00',NULL,'<a href=\"{CLICKURL}\" target=\"_blank\">{NAME}</a>\r\n<br/>\r\nIf you are seeking the Kingdom of God, go here to help others.',14,'',0,2,'0000-00-00 00:00:00','0000-00-00 00:00:00','','width=0\nheight=0'),(5,1,'','Wenatchee Lighthouse','wenatchee-lighthouse',0,3064,104,'','http://www.wenatcheelighthouse.org','2010-01-06 15:02:53',1,0,'0000-00-00 00:00:00','','<a href=\"{CLICKURL}\" target=\"_blank\">{NAME}</a>\r\n<br/>\r\nIf you would like a wonderful example of what all of the Christian community should be doing for the world, go here.',14,'',0,3,'0000-00-00 00:00:00','0000-00-00 00:00:00','','width=0\nheight=0'),(6,1,'','Joomla! Shop','joomla-shop',0,3064,96,'','http://shop.joomla.org','2006-05-29 14:23:21',1,0,'0000-00-00 00:00:00','','<a href=\"{CLICKURL}\" target=\"_blank\">{NAME}</a>\r\n<br/>\r\nFor all your Joomla! merchandise.',14,'',0,4,'0000-00-00 00:00:00','0000-00-00 00:00:00','',''),(7,1,'','Joomla! Promo Shop','joomla-promo-shop',0,151,7,'shop-ad.jpg','http://shop.joomla.org','2007-09-19 17:26:24',1,0,'0000-00-00 00:00:00','','',33,'',0,3,'0000-00-00 00:00:00','0000-00-00 00:00:00','',''),(8,1,'','Joomla! Promo Books','joomla-promo-books',0,144,5,'shop-ad-books.jpg','http://shop.joomla.org/amazoncom-bookstores.html','2007-09-19 17:28:01',1,0,'0000-00-00 00:00:00','','',33,'',0,4,'0000-00-00 00:00:00','0000-00-00 00:00:00','','');
/*!40000 ALTER TABLE `jos_banner` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_bannerclient`
--

DROP TABLE IF EXISTS `jos_bannerclient`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_bannerclient` (
  `cid` int(11) NOT NULL auto_increment,
  `name` varchar(255) NOT NULL default '',
  `contact` varchar(255) NOT NULL default '',
  `email` varchar(255) NOT NULL default '',
  `extrainfo` text NOT NULL,
  `checked_out` tinyint(1) NOT NULL default '0',
  `checked_out_time` time default NULL,
  `editor` varchar(50) default NULL,
  PRIMARY KEY  (`cid`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_bannerclient`
--

LOCK TABLES `jos_bannerclient` WRITE;
/*!40000 ALTER TABLE `jos_bannerclient` DISABLE KEYS */;
INSERT INTO `jos_bannerclient` VALUES (1,'Open Source Matters','Administrator','admin@opensourcematters.org','',0,'00:00:00',NULL);
/*!40000 ALTER TABLE `jos_bannerclient` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_bannertrack`
--

DROP TABLE IF EXISTS `jos_bannertrack`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_bannertrack` (
  `track_date` date NOT NULL,
  `track_type` int(10) unsigned NOT NULL,
  `banner_id` int(10) unsigned NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_bannertrack`
--

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

--
-- Table structure for table `jos_categories`
--

DROP TABLE IF EXISTS `jos_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_categories` (
  `id` int(11) NOT NULL auto_increment,
  `parent_id` int(11) NOT NULL default '0',
  `title` varchar(255) NOT NULL default '',
  `name` varchar(255) NOT NULL default '',
  `alias` varchar(255) NOT NULL default '',
  `image` varchar(255) NOT NULL default '',
  `section` varchar(50) NOT NULL default '',
  `image_position` varchar(30) NOT NULL default '',
  `description` text NOT NULL,
  `published` tinyint(1) NOT NULL default '0',
  `checked_out` int(11) unsigned NOT NULL default '0',
  `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
  `editor` varchar(50) default NULL,
  `ordering` int(11) NOT NULL default '0',
  `access` tinyint(3) unsigned NOT NULL default '0',
  `count` int(11) NOT NULL default '0',
  `params` text NOT NULL,
  PRIMARY KEY  (`id`),
  KEY `cat_idx` (`section`,`published`,`access`),
  KEY `idx_access` (`access`),
  KEY `idx_checkout` (`checked_out`)
) ENGINE=MyISAM AUTO_INCREMENT=37 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_categories`
--

LOCK TABLES `jos_categories` WRITE;
/*!40000 ALTER TABLE `jos_categories` DISABLE KEYS */;
INSERT INTO `jos_categories` VALUES (1,0,'Latest','','latest-news','taking_notes.jpg','1','left','The latest news from the Joomla! Team',1,0,'0000-00-00 00:00:00','',1,0,1,''),(2,0,'Joomla! Specific Links','','joomla-specific-links','clock.jpg','com_weblinks','left','A selection of links that are all related to the Joomla! Project.',1,0,'0000-00-00 00:00:00',NULL,1,0,0,''),(3,0,'Newsflash','','newsflash','','1','left','',1,0,'0000-00-00 00:00:00',NULL,2,0,0,''),(4,0,'Joomla!','','joomla','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00',NULL,2,0,0,''),(5,0,'Free and Open Source Software','','free-and-open-source-software','','com_newsfeeds','left','Read the latest news about free and open source software from some of its leading advocates.',1,0,'0000-00-00 00:00:00',NULL,3,0,0,''),(6,0,'Related Projects','','related-projects','','com_newsfeeds','left','Joomla builds on and collaborates with many other free and open source projects. Keep up with the latest news from some of them.',1,0,'0000-00-00 00:00:00',NULL,4,0,0,''),(12,0,'Contacts','','contacts','','com_contact_details','left','Contact Details for this Web site',1,0,'0000-00-00 00:00:00',NULL,0,0,0,''),(13,0,'Joomla','','joomla','','com_banner','left','',1,0,'0000-00-00 00:00:00',NULL,0,0,0,''),(14,0,'Text Ads','','text-ads','','com_banner','left','',1,0,'0000-00-00 00:00:00',NULL,0,0,0,''),(15,0,'Features','','features','','com_content','left','',0,0,'0000-00-00 00:00:00',NULL,6,0,0,''),(17,0,'Benefits','','benefits','','com_content','left','',0,0,'0000-00-00 00:00:00',NULL,4,0,0,''),(18,0,'Platforms','','platforms','','com_content','left','',0,0,'0000-00-00 00:00:00',NULL,3,0,0,''),(19,0,'Other Resources','','other-resources','','com_weblinks','left','',1,0,'0000-00-00 00:00:00',NULL,2,0,0,''),(29,0,'The CMS','','the-cms','','4','left','Information about the software behind Joomla!<br />',1,0,'0000-00-00 00:00:00',NULL,2,0,0,''),(28,0,'Current Users','','current-users','','3','left','Questions that users migrating to Joomla! 1.5 are likely to raise<br />',1,0,'0000-00-00 00:00:00',NULL,2,0,0,''),(25,0,'The Project','','the-project','','4','left','General facts about Joomla!<br />',1,0,'0000-00-00 00:00:00',NULL,1,0,0,''),(27,0,'New to Joomla!','','new-to-joomla','','3','left','Questions for new users of Joomla!',1,0,'0000-00-00 00:00:00',NULL,3,0,0,''),(30,0,'The Community','','the-community','','4','left','About the millions of Joomla! users and Web sites<br />',1,0,'0000-00-00 00:00:00',NULL,3,0,0,''),(31,0,'General','','general','','3','left','General questions about the Joomla! CMS',1,0,'0000-00-00 00:00:00',NULL,1,0,0,''),(32,0,'Languages','','languages','','3','left','Questions related to localisation and languages',1,0,'0000-00-00 00:00:00',NULL,4,0,0,''),(33,0,'Joomla! Promo','','joomla-promo','','com_banner','left','',1,0,'0000-00-00 00:00:00',NULL,1,0,0,''),(34,0,'Christsweb','','christsweb','','5','left','',1,0,'0000-00-00 00:00:00',NULL,1,0,0,''),(35,0,'Book','','book','','4','left','',1,0,'0000-00-00 00:00:00',NULL,2,0,0,''),(36,0,'Writings','','anns-writings','','6','left','',1,0,'0000-00-00 00:00:00',NULL,4,0,0,'');
/*!40000 ALTER TABLE `jos_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_components`
--

DROP TABLE IF EXISTS `jos_components`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_components` (
  `id` int(11) NOT NULL auto_increment,
  `name` varchar(50) NOT NULL default '',
  `link` varchar(255) NOT NULL default '',
  `menuid` int(11) unsigned NOT NULL default '0',
  `parent` int(11) unsigned NOT NULL default '0',
  `admin_menu_link` varchar(255) NOT NULL default '',
  `admin_menu_alt` varchar(255) NOT NULL default '',
  `option` varchar(50) NOT NULL default '',
  `ordering` int(11) NOT NULL default '0',
  `admin_menu_img` varchar(255) NOT NULL default '',
  `iscore` tinyint(4) NOT NULL default '0',
  `params` text NOT NULL,
  `enabled` tinyint(4) NOT NULL default '1',
  PRIMARY KEY  (`id`),
  KEY `parent_option` (`parent`,`option`(32))
) ENGINE=MyISAM AUTO_INCREMENT=40 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_components`
--

LOCK TABLES `jos_components` WRITE;
/*!40000 ALTER TABLE `jos_components` DISABLE KEYS */;
INSERT INTO `jos_components` VALUES (1,'Banners','',0,0,'','Banner Management','com_banners',0,'js/ThemeOffice/component.png',0,'track_impressions=0\ntrack_clicks=0\ntag_prefix=\n\n',1),(2,'Banners','',0,1,'option=com_banners','Active Banners','com_banners',1,'js/ThemeOffice/edit.png',0,'',1),(3,'Clients','',0,1,'option=com_banners&c=client','Manage Clients','com_banners',2,'js/ThemeOffice/categories.png',0,'',1),(4,'Web Links','option=com_weblinks',0,0,'','Manage Weblinks','com_weblinks',0,'js/ThemeOffice/component.png',0,'show_comp_description=1\ncomp_description=\nshow_link_hits=1\nshow_link_description=1\nshow_other_cats=1\nshow_headings=1\nshow_page_title=1\nlink_target=0\nlink_icons=\n\n',1),(5,'Links','',0,4,'option=com_weblinks','View existing weblinks','com_weblinks',1,'js/ThemeOffice/edit.png',0,'',1),(6,'Categories','',0,4,'option=com_categories&section=com_weblinks','Manage weblink categories','',2,'js/ThemeOffice/categories.png',0,'',1),(7,'Contacts','option=com_contact',0,0,'','Edit contact details','com_contact',0,'js/ThemeOffice/component.png',1,'contact_icons=0\nicon_address=\nicon_email=\nicon_telephone=\nicon_fax=\nicon_misc=\nshow_headings=1\nshow_position=1\nshow_email=0\nshow_telephone=1\nshow_mobile=1\nshow_fax=1\nbannedEmail=\nbannedSubject=\nbannedText=\nsession=1\ncustomReply=0\n\n',1),(8,'Contacts','',0,7,'option=com_contact','Edit contact details','com_contact',0,'js/ThemeOffice/edit.png',1,'',1),(9,'Categories','',0,7,'option=com_categories&section=com_contact_details','Manage contact categories','',2,'js/ThemeOffice/categories.png',1,'contact_icons=0\nicon_address=\nicon_email=\nicon_telephone=\nicon_fax=\nicon_misc=\nshow_headings=1\nshow_position=1\nshow_email=0\nshow_telephone=1\nshow_mobile=1\nshow_fax=1\nbannedEmail=\nbannedSubject=\nbannedText=\nsession=1\ncustomReply=0\n\n',1),(10,'Polls','option=com_poll',0,0,'option=com_poll','Manage Polls','com_poll',0,'js/ThemeOffice/component.png',0,'',1),(11,'News Feeds','option=com_newsfeeds',0,0,'','News Feeds Management','com_newsfeeds',0,'js/ThemeOffice/component.png',0,'',1),(12,'Feeds','',0,11,'option=com_newsfeeds','Manage News Feeds','com_newsfeeds',1,'js/ThemeOffice/edit.png',0,'show_headings=1\nshow_name=1\nshow_articles=1\nshow_link=1\nshow_cat_description=1\nshow_cat_items=1\nshow_feed_image=1\nshow_feed_description=1\nshow_item_description=1\nfeed_word_count=0\n\n',1),(13,'Categories','',0,11,'option=com_categories&section=com_newsfeeds','Manage Categories','',2,'js/ThemeOffice/categories.png',0,'',1),(14,'User','option=com_user',0,0,'','','com_user',0,'',1,'',1),(15,'Search','option=com_search',0,0,'option=com_search','Search Statistics','com_search',0,'js/ThemeOffice/component.png',1,'enabled=0\n\n',1),(16,'Categories','',0,1,'option=com_categories&section=com_banner','Categories','',3,'',1,'',1),(17,'Wrapper','option=com_wrapper',0,0,'','Wrapper','com_wrapper',0,'',1,'',1),(18,'Mail To','',0,0,'','','com_mailto',0,'',1,'',1),(19,'Media Manager','',0,0,'option=com_media','Media Manager','com_media',0,'',1,'upload_extensions=bmp,csv,doc,epg,gif,ico,jpg,odg,odp,ods,odt,pdf,png,ppt,swf,txt,xcf,xls,BMP,CSV,DOC,EPG,GIF,ICO,JPG,ODG,ODP,ODS,ODT,PDF,PNG,PPT,SWF,TXT,XCF,XLS\nupload_maxsize=10000000\nfile_path=images\nimage_path=images/stories\nrestrict_uploads=1\nallowed_media_usergroup=3\ncheck_mime=1\nimage_extensions=bmp,gif,jpg,png\nignore_extensions=\nupload_mime=image/jpeg,image/gif,image/png,image/bmp,application/x-shockwave-flash,application/msword,application/excel,application/pdf,application/powerpoint,text/plain,application/x-zip\nupload_mime_illegal=text/html\nenable_flash=0\n\n',1),(20,'Articles','option=com_content',0,0,'','','com_content',0,'',1,'show_noauth=0\nshow_title=1\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=0\nshow_modify_date=0\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\nfeed_summary=0\nfilter_tags=\nfilter_attritbutes=\n\n',1),(21,'Configuration Manager','',0,0,'','Configuration','com_config',0,'',1,'',1),(22,'Installation Manager','',0,0,'','Installer','com_installer',0,'',1,'',1),(23,'Language Manager','',0,0,'','Languages','com_languages',0,'',1,'',1),(24,'Mass mail','',0,0,'','Mass Mail','com_massmail',0,'',1,'mailSubjectPrefix=\nmailBodySuffix=\n\n',1),(25,'Menu Editor','',0,0,'','Menu Editor','com_menus',0,'',1,'',1),(27,'Messaging','',0,0,'','Messages','com_messages',0,'',1,'',1),(28,'Modules Manager','',0,0,'','Modules','com_modules',0,'',1,'',1),(29,'Plugin Manager','',0,0,'','Plugins','com_plugins',0,'',1,'',1),(30,'Template Manager','',0,0,'','Templates','com_templates',0,'',1,'',1),(31,'User Manager','',0,0,'','Users','com_users',0,'',1,'allowUserRegistration=1\nnew_usertype=Registered\nuseractivation=1\nfrontend_userparams=1\n\n',1),(32,'Cache Manager','',0,0,'','Cache','com_cache',0,'',1,'',1),(33,'Control Panel','',0,0,'','Control Panel','com_cpanel',0,'',1,'',1),(34,'JCE','option=com_jce',0,0,'option=com_jce','JCE','com_jce',0,'components/com_jce/img/logo.png',0,'\npackage=1',1),(35,'JCE MENU CPANEL','',0,34,'option=com_jce','JCE MENU CPANEL','com_jce',0,'templates/khepri/images/menu/icon-16-cpanel.png',0,'',1),(36,'JCE MENU CONFIG','',0,34,'option=com_jce&type=config','JCE MENU CONFIG','com_jce',1,'templates/khepri/images/menu/icon-16-config.png',0,'',1),(37,'JCE MENU GROUPS','',0,34,'option=com_jce&type=group','JCE MENU GROUPS','com_jce',2,'templates/khepri/images/menu/icon-16-user.png',0,'',1),(38,'JCE MENU PLUGINS','',0,34,'option=com_jce&type=plugin','JCE MENU PLUGINS','com_jce',3,'templates/khepri/images/menu/icon-16-plugin.png',0,'',1),(39,'JCE MENU INSTALL','',0,34,'option=com_jce&type=install','JCE MENU INSTALL','com_jce',4,'templates/khepri/images/menu/icon-16-install.png',0,'',1);
/*!40000 ALTER TABLE `jos_components` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_contact_details`
--

DROP TABLE IF EXISTS `jos_contact_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_contact_details` (
  `id` int(11) NOT NULL auto_increment,
  `name` varchar(255) NOT NULL default '',
  `alias` varchar(255) NOT NULL default '',
  `con_position` varchar(255) default NULL,
  `address` text,
  `suburb` varchar(100) default NULL,
  `state` varchar(100) default NULL,
  `country` varchar(100) default NULL,
  `postcode` varchar(100) default NULL,
  `telephone` varchar(255) default NULL,
  `fax` varchar(255) default NULL,
  `misc` mediumtext,
  `image` varchar(255) default NULL,
  `imagepos` varchar(20) default NULL,
  `email_to` varchar(255) default NULL,
  `default_con` tinyint(1) unsigned NOT NULL default '0',
  `published` tinyint(1) unsigned NOT NULL default '0',
  `checked_out` int(11) unsigned NOT NULL default '0',
  `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
  `ordering` int(11) NOT NULL default '0',
  `params` text NOT NULL,
  `user_id` int(11) NOT NULL default '0',
  `catid` int(11) NOT NULL default '0',
  `access` tinyint(3) unsigned NOT NULL default '0',
  `mobile` varchar(255) NOT NULL default '',
  `webpage` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`id`),
  KEY `catid` (`catid`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_contact_details`
--

LOCK TABLES `jos_contact_details` WRITE;
/*!40000 ALTER TABLE `jos_contact_details` DISABLE KEYS */;
INSERT INTO `jos_contact_details` VALUES (1,'Name','name','Position','Street','Suburb','State','Country','Zip Code','Telephone','Fax','Miscellanous info','powered_by.png','top','email@email.com',1,1,0,'0000-00-00 00:00:00',1,'show_name=1\r\nshow_position=1\r\nshow_email=0\r\nshow_street_address=1\r\nshow_suburb=1\r\nshow_state=1\r\nshow_postcode=1\r\nshow_country=1\r\nshow_telephone=1\r\nshow_mobile=1\r\nshow_fax=1\r\nshow_webpage=1\r\nshow_misc=1\r\nshow_image=1\r\nallow_vcard=0\r\ncontact_icons=0\r\nicon_address=\r\nicon_email=\r\nicon_telephone=\r\nicon_fax=\r\nicon_misc=\r\nshow_email_form=1\r\nemail_description=1\r\nshow_email_copy=1\r\nbanned_email=\r\nbanned_subject=\r\nbanned_text=',0,12,0,'','');
/*!40000 ALTER TABLE `jos_contact_details` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_content`
--

DROP TABLE IF EXISTS `jos_content`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_content` (
  `id` int(11) unsigned NOT NULL auto_increment,
  `title` varchar(255) NOT NULL default '',
  `alias` varchar(255) NOT NULL default '',
  `title_alias` varchar(255) NOT NULL default '',
  `introtext` mediumtext NOT NULL,
  `fulltext` mediumtext NOT NULL,
  `state` tinyint(3) NOT NULL default '0',
  `sectionid` int(11) unsigned NOT NULL default '0',
  `mask` int(11) unsigned NOT NULL default '0',
  `catid` int(11) unsigned NOT NULL default '0',
  `created` datetime NOT NULL default '0000-00-00 00:00:00',
  `created_by` int(11) unsigned NOT NULL default '0',
  `created_by_alias` varchar(255) NOT NULL default '',
  `modified` datetime NOT NULL default '0000-00-00 00:00:00',
  `modified_by` int(11) unsigned NOT NULL default '0',
  `checked_out` int(11) unsigned NOT NULL default '0',
  `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
  `publish_up` datetime NOT NULL default '0000-00-00 00:00:00',
  `publish_down` datetime NOT NULL default '0000-00-00 00:00:00',
  `images` text NOT NULL,
  `urls` text NOT NULL,
  `attribs` text NOT NULL,
  `version` int(11) unsigned NOT NULL default '1',
  `parentid` int(11) unsigned NOT NULL default '0',
  `ordering` int(11) NOT NULL default '0',
  `metakey` text NOT NULL,
  `metadesc` text NOT NULL,
  `access` int(11) unsigned NOT NULL default '0',
  `hits` int(11) unsigned NOT NULL default '0',
  `metadata` text NOT NULL,
  PRIMARY KEY  (`id`),
  KEY `idx_section` (`sectionid`),
  KEY `idx_access` (`access`),
  KEY `idx_checkout` (`checked_out`),
  KEY `idx_state` (`state`),
  KEY `idx_catid` (`catid`),
  KEY `idx_createdby` (`created_by`)
) ENGINE=MyISAM AUTO_INCREMENT=93 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_content`
--

LOCK TABLES `jos_content` WRITE;
/*!40000 ALTER TABLE `jos_content` DISABLE KEYS */;
INSERT INTO `jos_content` VALUES (1,'Welcome to Joomla!','welcome-to-joomla','','<div align=\"left\"><strong>Joomla! is a free open source framework and content publishing system designed for quickly creating highly interactive multi-language Web sites, online communities, media portals, blogs and eCommerce applications. <br /></strong></div><p><strong><br /></strong><img src=\"images/stories/powered_by.png\" border=\"0\" alt=\"Joomla! Logo\" title=\"Example Caption\" hspace=\"6\" vspace=\"0\" width=\"165\" height=\"68\" align=\"left\" />Joomla! provides an easy-to-use graphical user interface that simplifies the management and publishing of large volumes of content including HTML, documents, and rich media.  Joomla! is used by organisations of all sizes for intranets and extranets and is supported by a community of tens of thousands of users. </p>','With a fully documented library of developer resources, Joomla! allows the customisation of every aspect of a Web site including presentation, layout, administration, and the rapid integration with third-party applications.<p>Joomla! now provides more developer power while making the user experience all the more friendly. For those who always wanted increased extensibility, Joomla! 1.5 can make this happen.</p><p>A new framework, ground-up refactoring, and a highly-active development team brings the excitement of \'the next generation CMS\' to your fingertips.  Whether you are a systems architect or a complete \'noob\' Joomla! can take you to the next level of content delivery. \'More than a CMS\' is something we have been playing with as a catchcry because the new Joomla! API has such incredible power and flexibility, you are free to take whatever direction your creative mind takes you and Joomla! can help you get there so much more easily than ever before.</p><p>Thinking Web publishing? Think Joomla!</p>',-2,1,0,1,'2008-08-12 10:00:00',62,'','2008-08-12 10:00:00',62,0,'0000-00-00 00:00:00','2006-01-03 01:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',29,0,0,'','',0,147,'robots=\nauthor='),(2,'Newsflash 1','newsflash-1','','<p>Joomla! makes it easy to launch a Web site of any kind. Whether you want a brochure site or you are building a large online community, Joomla! allows you to deploy a new site in minutes and add extra functionality as you need it. The hundreds of available Extensions will help to expand your site and allow you to deliver new services that extend your reach into the Internet.</p>','',1,1,0,3,'2008-08-10 06:30:34',62,'','2008-08-10 06:30:34',62,0,'0000-00-00 00:00:00','2004-08-09 10:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',7,0,3,'','',0,1,'robots=\nauthor='),(3,'Newsflash 2','newsflash-2','','<p>The one thing about a Web site, it always changes! Joomla! makes it easy to add Articles, content, images, videos, and more. Site administrators can edit and manage content \'in-context\' by clicking the \'Edit\' link. Webmasters can also edit content through a graphical Control Panel that gives you complete control over your site.</p>','',1,1,0,3,'2008-08-09 22:30:34',62,'','2008-08-09 22:30:34',62,0,'0000-00-00 00:00:00','2004-08-09 06:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',6,0,4,'','',0,0,'robots=\nauthor='),(4,'Newsflash 3','newsflash-3','','<p>With a library of thousands of free <a href=\"http://extensions.joomla.org\" target=\"_blank\" title=\"The Joomla! Extensions Directory\">Extensions</a>, you can add what you need as your site grows. Don\'t wait, look through the <a href=\"http://extensions.joomla.org/\" target=\"_blank\" title=\"Joomla! Extensions\">Joomla! Extensions</a>  library today. </p>','',1,1,0,3,'2008-08-10 06:30:34',62,'','2008-08-10 06:30:34',62,0,'0000-00-00 00:00:00','2004-08-09 10:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',7,0,5,'','',0,1,'robots=\nauthor='),(5,'Joomla! License Guidelines','joomla-license-guidelines','joomla-license-guidelines','<p>This Web site is powered by <a href=\"http://joomla.org/\" target=\"_blank\" title=\"Joomla!\">Joomla!</a> The software and default templates on which it runs are Copyright 2005-2008 <a href=\"http://www.opensourcematters.org/\" target=\"_blank\" title=\"Open Source Matters\">Open Source Matters</a>. The sample content distributed with Joomla! is licensed under the <a href=\"http://docs.joomla.org/JEDL\" target=\"_blank\" title=\"Joomla! Electronic Document License\">Joomla! Electronic Documentation License.</a> All data entered into this Web site and templates added after installation, are copyrighted by their respective copyright owners.</p> <p>If you want to distribute, copy, or modify Joomla!, you are welcome to do so under the terms of the <a href=\"http://www.gnu.org/licenses/old-licenses/gpl-2.0.html#SEC1\" target=\"_blank\" title=\"GNU General Public License\"> GNU General Public License</a>. If you are unfamiliar with this license, you might want to read <a href=\"http://www.gnu.org/licenses/old-licenses/gpl-2.0.html#SEC4\" target=\"_blank\" title=\"How To Apply These Terms To Your Program\">\'How To Apply These Terms To Your Program\'</a> and the <a href=\"http://www.gnu.org/licenses/old-licenses/gpl-2.0-faq.html\" target=\"_blank\" title=\"GNU General Public License FAQ\">\'GNU General Public License FAQ\'</a>.</p> <p>The Joomla! licence has always been GPL.</p>','',-2,4,0,25,'2008-08-20 10:11:07',62,'','2008-08-20 10:11:07',62,0,'0000-00-00 00:00:00','2004-08-19 06:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',7,0,0,'','',0,263,'robots=\nauthor='),(6,'Support Verses','support-verses','','<p><strong>Rev 21:</strong><br />22 And I saw no temple therein: for the Lord God Almighty and the Lamb are the temple of it.<br />23 And the city had no need of the sun, neither of the moon, to shine in it: for the glory of God did lighten it, and the Lamb is the light thereof.<br />24 And the nations of them which are saved shall walk in the light of it: and the kings of the earth do bring their glory and honour into it.<br />25 And the gates of it shall not be shut at all by day: for there shall be no night there.<br />26 And they shall bring the glory and honour of the nations into it.<br />27 And there shall in no wise enter into it any thing that defileth, neither whatsoever worketh abomination, or maketh a lie: but they which are written in the Lamb’s book of life.</p>','',1,1,0,1,'2010-01-03 00:00:00',62,'','2010-01-03 15:55:52',62,0,'0000-00-00 00:00:00','2010-01-03 00:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',12,0,4,'','',0,563,'robots=\nauthor='),(9,'Millions of Smiles','millions-of-smiles','','<p>The Joomla! team has millions of good reasons to be smiling about the Joomla! 1.5. In its current incarnation, it\'s had millions of downloads, taking it to an unprecedented level of popularity.  The new code base is almost an entire re-factor of the old code base.  The user experience is still extremely slick but for developers the API is a dream.  A proper framework for real PHP architects seeking the best of the best.</p><p>If you\'re a former Mambo User or a 1.0 series Joomla! User, 1.5 is the future of CMSs for a number of reasons.  It\'s more powerful, more flexible, more secure, and intuitive.  Our developers and interface designers have worked countless hours to make this the most exciting release in the content management system sphere.</p><p>Go on ... get your FREE copy of Joomla! today and spread the word about this benchmark project. </p>','',0,1,0,1,'2007-07-07 09:54:06',62,'','2007-07-07 09:54:06',62,0,'0000-00-00 00:00:00','2004-07-06 22:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',5,0,5,'','',0,154,'robots=\nauthor='),(10,'How do I localise Joomla! to my language?','how-do-i-localise-joomla-to-my-language','','<h4>General<br /></h4><p>In Joomla! 1.5 all User interfaces can be localised. This includes the installation, the Back-end Control Panel and the Front-end Site.</p><p>The core release of Joomla! 1.5 is shipped with multiple language choices in the installation but, other than English (the default), languages for the Site and Administration interfaces need to be added after installation. Links to such language packs exist below.</p>','<p>Translation Teams for Joomla! 1.5 may have also released fully localised installation packages where site, administrator and sample data are in the local language. These localised releases can be found in the specific team projects on the <a href=\"http://extensions.joomla.org/component/option,com_mtree/task,listcats/cat_id,1837/Itemid,35/\" target=\"_blank\" title=\"JED\">Joomla! Extensions Directory</a>.</p><h4>How do I install language packs?</h4><ul><li>First download both the admin and the site language packs that you require.</li><li>Install each pack separately using the Extensions-&gt;Install/Uninstall Menu selection and then the package file upload facility.</li><li>Go to the Language Manager and be sure to select Site or Admin in the sub-menu. Then select the appropriate language and make it the default one using the Toolbar button.</li></ul><h4>How do I select languages?</h4><ul><li>Default languages can be independently set for Site and for Administrator</li><li>In addition, users can define their preferred language for each Site and Administrator. This takes affect after logging in.</li><li>While logging in to the Administrator Back-end, a language can also be selected for the particular session.</li></ul><h4>Where can I find Language Packs and Localised Releases?</h4><p><em>Please note that Joomla! 1.5 is new and language packs for this version may have not been released at this time.</em> </p><ul><li><a href=\"http://joomlacode.org/gf/project/jtranslation/\" target=\"_blank\" title=\"Accredited Translations\">The Joomla! Accredited Translations Project</a>  - This is a joint repository for language packs that were developed by teams that are members of the Joomla! Translations Working Group.</li><li><a href=\"http://extensions.joomla.org/component/option,com_mtree/task,listcats/cat_id,1837/Itemid,35/\" target=\"_blank\" title=\"Translations\">The Joomla! Extensions Site - Translations</a>  </li><li><a href=\"http://community.joomla.org/translations.html\" target=\"_blank\" title=\"Translation Work Group Teams\">List of Translation Teams and Translation Partner Sites for Joomla! 1.5</a> </li></ul>',-2,3,0,32,'2008-07-30 14:06:37',62,'','2008-07-30 14:06:37',62,0,'0000-00-00 00:00:00','2006-09-29 10:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',9,0,0,'','',0,25,'robots=\nauthor='),(11,'How do I upgrade to Joomla! 1.5 ?','how-do-i-upgrade-to-joomla-15','','<p>Joomla! 1.5 does not provide an upgrade path from earlier versions. Converting an older site to a Joomla! 1.5 site requires creation of a new empty site using Joomla! 1.5 and then populating the new site with the content from the old site. This migration of content is not a one-to-one process and involves conversions and modifications to the content dump.</p> <p>There are two ways to perform the migration:</p>',' <div id=\"post_content-107\"><li>An automated method of migration has been provided which uses a migrator Component to create the migration dump out of the old site (Mambo 4.5.x up to Joomla! 1.0.x) and a smart import facility in the Joomla! 1.5 Installation that performs required conversions and modifications during the installation process.</li> <li>Migration can be performed manually. This involves exporting the required tables, manually performing required conversions and modifications and then importing the content to the new site after it is installed.</li>  <p><!--more--></p> <h2><strong> Automated migration</strong></h2>  <p>This is a two phased process using two tools. The first tool is a migration Component named <font face=\"courier new,courier\">com_migrator</font>. This Component has been contributed by Harald Baer and is based on his <strong>eBackup </strong>Component. The migrator needs to be installed on the old site and when activated it prepares the required export dump of the old site\'s data. The second tool is built into the Joomla! 1.5 installation process. The exported content dump is loaded to the new site and all conversions and modification are performed on-the-fly.</p> <h3><u> Step 1 - Using com_migrator to export data from old site:</u></h3> <li>Install the <font face=\"courier new,courier\">com_migrator</font> Component on the <u><strong>old</strong></u> site. It can be found at the <a href=\"http://joomlacode.org/gf/project/pasamioprojects/frs/\" target=\"_blank\" title=\"JoomlaCode\">JoomlaCode developers forge</a>.</li> <li>Select the Component in the Component Menu of the Control Panel.</li> <li>Click on the <strong>Dump it</strong> icon. Three exported <em>gzipped </em>export scripts will be created. The first is a complete backup of the old site. The second is the migration content of all core elements which will be imported to the new site. The third is a backup of all 3PD Component tables.</li> <li>Click on the download icon of the particular exports files needed and store locally.</li> <li>Multiple export sets can be created.</li> <li>The exported data is not modified in anyway and the original encoding is preserved. This makes the <font face=\"courier new,courier\">com_migrator</font> tool a recommended tool to use for manual migration as well.</li> <h3><u> Step 2 - Using the migration facility to import and convert data during Joomla! 1.5 installation:</u></h3><p>Note: This function requires the use of the <em><font face=\"courier new,courier\">iconv </font></em>function in PHP to convert encodings. If <em><font face=\"courier new,courier\">iconv </font></em>is not found a warning will be provided.</p> <li>In step 6 - Configuration select the \'Load Migration Script\' option in the \'Load Sample Data, Restore or Migrate Backed Up Content\' section of the page.</li> <li>Enter the table prefix used in the content dump. For example: \'jos_\' or \'site2_\' are acceptable values.</li> <li>Select the encoding of the dumped content in the dropdown list. This should be the encoding used on the pages of the old site. (As defined in the _ISO variable in the language file or as seen in the browser page info/encoding/source)</li> <li>Browse the local host and select the migration export and click on <strong>Upload and Execute</strong></li> <li>A success message should appear or alternately a listing of database errors</li> <li>Complete the other required fields in the Configuration step such as Site Name and Admin details and advance to the final step of installation. (Admin details will be ignored as the imported data will take priority. Please remember admin name and password from the old site)</li> <p><u><br /></u></p></div>',-2,3,0,28,'2008-07-30 20:27:52',62,'','2008-07-30 20:27:52',62,0,'0000-00-00 00:00:00','2006-09-29 12:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',10,0,0,'','',0,31,'robots=\nauthor='),(12,'Why does Joomla! 1.5 use UTF-8 encoding?','why-does-joomla-15-use-utf-8-encoding','','<p>Well... how about never needing to mess with encoding settings again?</p><p>Ever needed to display several languages on one page or site and something always came up in Giberish?</p><p>With utf-8 (a variant of Unicode) glyphs (character forms) of basically all languages can be displayed with one single encoding setting. </p>','',-2,3,0,31,'2008-08-05 01:11:29',62,'','2008-08-05 01:11:29',62,0,'0000-00-00 00:00:00','2006-10-03 10:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',8,0,0,'','',0,52,'robots=\nauthor='),(13,'What happened to the locale setting?','what-happened-to-the-locale-setting','','This is now defined in the Language [<em>lang</em>].xml file in the Language metadata settings. If you are having locale problems such as dates do not appear in your language for example, you might want to check/edit the entries in the locale tag. Note that multiple locale strings can be set and the host will usually accept the first one recognised.','',-2,3,0,28,'2008-08-06 16:47:35',62,'','2008-08-06 16:47:35',62,0,'0000-00-00 00:00:00','2006-10-05 14:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',7,0,0,'','',0,28,'robots=\nauthor='),(14,'What is the FTP layer for?','what-is-the-ftp-layer-for','','<p>The FTP Layer allows file operations (such as installing Extensions or updating the main configuration file) without having to make all the folders and files writable. This has been an issue on Linux and other Unix based platforms in respect of file permissions. This makes the site admin\'s life a lot easier and increases security of the site.</p><p>You can check the write status of relevent folders by going to \'\'Help-&gt;System Info\" and then in the sub-menu to \"Directory Permissions\". With the FTP Layer enabled even if all directories are red, Joomla! will operate smoothly.</p><p>NOTE: the FTP layer is not required on a Windows host/server. </p>','',-2,3,0,31,'2008-08-06 21:27:49',62,'','2008-08-06 21:27:49',62,0,'0000-00-00 00:00:00','2006-10-05 16:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=',6,0,0,'','',0,43,'robots=\nauthor='),(15,'Can Joomla! 1.5 operate with PHP Safe Mode On?','can-joomla-15-operate-with-php-safe-mode-on','','<p>Yes it can! This is a significant security improvement.</p><p>The <em>safe mode</em> limits PHP to be able to perform actions only on files/folders who\'s owner is the same as PHP is currently using (this is usually \'apache\'). As files normally are created either by the Joomla! application or by FTP access, the combination of PHP file actions and the FTP Layer allows Joomla! to operate in PHP Safe Mode.</p>','',-2,3,0,31,'2008-08-06 19:28:35',62,'','2008-08-06 19:28:35',62,0,'0000-00-00 00:00:00','2006-10-05 14:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',7,0,0,'','',0,26,'robots=\nauthor='),(16,'Only one edit window! How do I create \"Read more...\"?','only-one-edit-window-how-do-i-create-read-more','','<p>This is now implemented by inserting a <strong>Read more...</strong> tag (the button is located below the editor area) a dotted line appears in the edited text showing the split location for the <em>Read more....</em> A new Plugin takes care of the rest.</p><p>It is worth mentioning that this does not have a negative effect on migrated data from older sites. The new implementation is fully backward compatible.</p>','',-2,3,0,28,'2008-08-06 19:29:28',62,'','2008-08-06 19:29:28',62,0,'0000-00-00 00:00:00','2006-10-05 14:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',7,0,0,'','',0,95,'robots=\nauthor='),(17,'My MySQL database does not support UTF-8. Do I have a problem?','my-mysql-database-does-not-support-utf-8-do-i-have-a-problem','','No you don\'t. Versions of MySQL lower than 4.1 do not have built in UTF-8 support. However, Joomla! 1.5 has made provisions for backward compatibility and is able to use UTF-8 on older databases. Let the installer take care of all the settings and there is no need to make any changes to the database (charset, collation, or any other).','',-2,3,0,31,'2008-08-07 09:30:37',62,'','2008-08-07 09:30:37',62,0,'0000-00-00 00:00:00','2006-10-05 20:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',10,0,0,'','',0,27,'robots=\nauthor='),(18,'Joomla! Features','joomla-features','','<h4><font color=\"#ff6600\">Joomla! features:</font></h4> <ul><li>Completely database driven site engines </li><li>News, products, or services sections fully editable and manageable</li><li>Topics sections can be added to by contributing Authors </li><li>Fully customisable layouts including <em>left</em>, <em>center</em>, and <em>right </em>Menu boxes </li><li>Browser upload of images to your own library for use anywhere in the site </li><li>Dynamic Forum/Poll/Voting booth for on-the-spot results </li><li>Runs on Linux, FreeBSD, MacOSX server, Solaris, and AIX','  </li></ul> <h4>Extensive Administration:</h4> <ul><li>Change order of objects including news, FAQs, Articles etc. </li><li>Random Newsflash generator </li><li>Remote Author submission Module for News, Articles, FAQs, and Links </li><li>Object hierarchy - as many Sections, departments, divisions, and pages as you want </li><li>Image library - store all your PNGs, PDFs, DOCs, XLSs, GIFs, and JPEGs online for easy use </li><li>Automatic Path-Finder. Place a picture and let Joomla! fix the link </li><li>News Feed Manager. Easily integrate news feeds into your Web site.</li><li>E-mail a friend and Print format available for every story and Article </li><li>In-line Text editor similar to any basic word processor software </li><li>User editable look and feel </li><li>Polls/Surveys - Now put a different one on each page </li><li>Custom Page Modules. Download custom page Modules to spice up your site </li><li>Template Manager. Download Templates and implement them in seconds </li><li>Layout preview. See how it looks before going live </li><li>Banner Manager. Make money out of your site.</li></ul>',-2,4,0,29,'2008-08-08 23:32:45',62,'','2008-08-08 23:32:45',62,0,'0000-00-00 00:00:00','2006-10-07 06:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',11,0,0,'','',0,76,'robots=\nauthor='),(19,'Joomla! Overview','joomla-overview','','<p>If you\'re new to Web publishing systems, you\'ll find that Joomla! delivers sophisticated solutions to your online needs. It can deliver a robust enterprise-level Web site, empowered by endless extensibility for your bespoke publishing needs. Moreover, it is often the system of choice for small business or home users who want a professional looking site that\'s simple to deploy and use. <em>We do content right</em>.<br /> </p><p>So what\'s the catch? How much does this system cost?</p><p> Well, there\'s good news ... and more good news! Joomla! 1.5 is free, it is released under an Open Source license - the GNU/General Public License v 2.0. Had you invested in a mainstream, commercial alternative, there\'d be nothing but moths left in your wallet and to add new functionality would probably mean taking out a second mortgage each time you wanted something adding!</p><p>Joomla! changes all that ... <br />Joomla! is different from the normal models for content management software. For a start, it\'s not complicated. Joomla! has been developed for everybody, and anybody can develop it further. It is designed to work (primarily) with other Open Source, free, software such as PHP, MySQL, and Apache. </p><p>It is easy to install and administer, and is reliable. </p><p>Joomla! doesn\'t even require the user or administrator of the system to know HTML to operate it once it\'s up and running.</p><p>To get the perfect Web site with all the functionality that you require for your particular application may take additional time and effort, but with the Joomla! Community support that is available and the many Third Party Developers actively creating and releasing new Extensions for the 1.5 platform on an almost daily basis, there is likely to be something out there to meet your needs. Or you could develop your own Extensions and make these available to the rest of the community. </p>','',-2,4,0,29,'2008-08-09 07:49:20',62,'','2008-08-09 07:49:20',62,0,'0000-00-00 00:00:00','2006-10-07 10:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',13,0,0,'','',0,253,'robots=\nauthor='),(20,'Support and Documentation','support-and-documentation','','<h1>Support </h1><p>Support for the Joomla! CMS can be found on several places. The best place to start would be the <a href=\"http://docs.joomla.org/\" target=\"_blank\" title=\"Joomla! Official Documentation Wiki\">Joomla! Official Documentation Wiki</a>. Here you can help yourself to the information that is regularly published and updated as Joomla! develops. There is much more to come too!</p> <p>Of course you should not forget the Help System of the CMS itself. On the <em>topmenu </em>in the Back-end Control panel you find the Help button which will provide you with lots of explanation on features.</p> <p>Another great place would of course be the <a href=\"http://forum.joomla.org/\" target=\"_blank\" title=\"Forum\">Forum</a> . On the Joomla! Forum you can find help and support from Community members as well as from Joomla! Core members and Working Group members. The forum contains a lot of information, FAQ\'s, just about anything you are looking for in terms of support.</p> <p>Two other resources for Support are the <a href=\"http://developer.joomla.org/\" target=\"_blank\" title=\"Joomla! Developer Site\">Joomla! Developer Site</a> and the <a href=\"http://extensions.joomla.org/\" target=\"_blank\" title=\"Joomla! Extensions Directory\">Joomla! Extensions Directory</a> (JED). The Joomla! Developer Site provides lots of technical information for the experienced Developer as well as those new to Joomla! and development work in general. The JED whilst not a support site in the strictest sense has many of the Extensions that you will need as you develop your own Web site.</p> <p>The Joomla! Developers and Bug Squad members are regularly posting their blog reports about several topics such as programming techniques and security issues.</p> <h1>Documentation</h1> <p>Joomla! Documentation can of course be found on the <a href=\"http://docs.joomla.org/\" target=\"_blank\" title=\"Joomla! Official Documentation Wiki\">Joomla! Official Documentation Wiki</a>. You can find information for beginners, installation, upgrade, Frequently Asked Questions, developer topics, and a lot more. The Documentation Team helps oversee the wiki but you are invited to contribute content, as well.</p> <p>There are also books written about Joomla! You can find a listing of these books in the <a href=\"http://shop.joomla.org/\" target=\"_blank\" title=\"Joomla! Shop\">Joomla! Shop</a>.</p>','',-2,4,0,25,'2008-08-09 08:33:57',62,'','2008-08-09 08:33:57',62,0,'0000-00-00 00:00:00','2006-10-07 10:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',13,0,0,'','',0,22,'robots=\nauthor='),(21,'Joomla! Facts','joomla-facts','','<p>Here are some interesting facts about Joomla!</p><ul><li><span>Over 210,000 active registered Users on the <a href=\"http://forum.joomla.org\" target=\"_blank\" title=\"Joomla Forums\">Official Joomla! community forum</a> and more on the many international community sites.</span><ul><li><span>over 1,000,000 posts in over 200,000 topics</span></li><li>over 1,200 posts per day</li><li>growing at 150 new participants each day!</li></ul></li><li><span>1168 Projects on the JoomlaCode (<a href=\"http://joomlacode.org/\" target=\"_blank\" title=\"JoomlaCode\">joomlacode.org</a> ). All for open source addons by third party developers.</span><ul><li><span>Well over 6,000,000 downloads of Joomla! since the migration to JoomlaCode in March 2007.<br /></span></li></ul></li><li><span>Nearly 4,000 extensions for Joomla! have been registered on the <a href=\"http://extensions.joomla.org\" target=\"_blank\" title=\"http://extensions.joomla.org\">Joomla! Extension Directory</a>  </span></li><li><span>Joomla.org exceeds 2 TB of traffic per month!</span></li></ul>','',-2,4,0,30,'2008-08-09 16:46:37',62,'','2008-08-09 16:46:37',62,0,'0000-00-00 00:00:00','2006-10-07 14:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',13,0,0,'','',0,71,'robots=\nauthor='),(22,'What\'s New in 1.5?','whats-new-in-15','','<p>As with previous releases, Joomla! provides a unified and easy-to-use framework for delivering content for Web sites of all kinds. To support the changing nature of the Internet and emerging Web technologies, Joomla! required substantial restructuring of its core functionality and we also used this effort to simplify many challenges within the current user interface. Joomla! 1.5 has many new features.</p>','<p style=\"margin-bottom: 0in\">In Joomla! 1.5, you\'ll notice: </p>    <ul><li>     <p style=\"margin-bottom: 0in\">       Substantially improved usability, manageability, and scalability far beyond the original Mambo foundations</p>   </li><li>     <p style=\"margin-bottom: 0in\"> Expanded accessibility to support internationalisation, double-byte characters and right-to-left support for Arabic, Farsi, and Hebrew languages among others</p>   </li><li>     <p style=\"margin-bottom: 0in\"> Extended integration of external applications through Web services and remote authentication such as the Lightweight Directory Access Protocol (LDAP)</p>   </li><li>     <p style=\"margin-bottom: 0in\"> Enhanced content delivery, template and presentation capabilities to support accessibility standards and content delivery to any destination</p>   </li><li>     <p style=\"margin-bottom: 0in\">       A more sustainable and flexible framework for Component and Extension developers</p>   </li><li>     <p style=\"margin-bottom: 0in\">Backward compatibility with previous releases of Components, Templates, Modules, and other Extensions</p></li></ul>',-2,4,0,29,'2008-08-11 22:13:58',62,'','2008-08-11 22:13:58',62,0,'0000-00-00 00:00:00','2006-10-10 18:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',10,0,0,'','',0,233,'robots=\nauthor='),(23,'Platforms and Open Standards','platforms-and-open-standards','','<p class=\"MsoNormal\">Joomla! runs on any platform including Windows, most flavours of Linux, several Unix versions, and the Apple OS/X platform.  Joomla! depends on PHP and the MySQL database to deliver dynamic content.  </p>            <p class=\"MsoNormal\">The minimum requirements are:</p>      <ul><li>Apache 1.x, 2.x and higher</li><li>PHP 4.3 and higher</li><li>MySQL 3.23 and higher</li></ul>It will also run on alternative server platforms such as Windows IIS - provided they support PHP and MySQL - but these require additional configuration in order for the Joomla! core package to be successful installed and operated.','',-2,4,0,25,'2008-08-11 04:22:14',62,'','2008-08-11 04:22:14',62,0,'0000-00-00 00:00:00','2006-10-10 08:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',7,0,0,'','',0,28,'robots=\nauthor='),(24,'Content Layouts','content-layouts','','<p>Joomla! provides plenty of flexibility when displaying your Web content. Whether you are using Joomla! for a blog site, news or a Web site for a company, you\'ll find one or more content styles to showcase your information. You can also change the style of content dynamically depending on your preferences. Joomla! calls how a page is laid out a <strong>layout</strong>. Use the guide below to understand which layouts are available and how you might use them. </p> <h2>Content </h2> <p>Joomla! makes it extremely easy to add and display content. All content  is placed where your mainbody tag in your template is located. There are three main types of layouts available in Joomla! and all of them can be customised via parameters. The display and parameters are set in the Menu Item used to display the content your working on. You create these layouts by creating a Menu Item and choosing how you want the content to display.</p> <h3>Blog Layout<br /> </h3> <p>Blog layout will show a listing of all Articles of the selected blog type (Section or Category) in the mainbody position of your template. It will give you the standard title, and Intro of each Article in that particular Category and/or Section. You can customise this layout via the use of the Preferences and Parameters, (See Article Parameters) this is done from the Menu not the Section Manager!</p> <h3>Blog Archive Layout<br /> </h3> <p>A Blog Archive layout will give you a similar output of Articles as the normal Blog Display but will add, at the top, two drop down lists for month and year plus a search button to allow Users to search for all Archived Articles from a specific month and year.</p> <h3>List Layout<br /> </h3> <p>Table layout will simply give you a <em>tabular </em>list<em> </em>of all the titles in that particular Section or Category. No Intro text will be displayed just the titles. You can set how many titles will be displayed in this table by Parameters. The table layout will also provide a filter Section so that Users can reorder, filter, and set how many titles are listed on a single page (up to 50)</p> <h2>Wrapper</h2> <p>Wrappers allow you to place stand alone applications and Third Party Web sites inside your Joomla! site. The content within a Wrapper appears within the primary content area defined by the \"mainbody\" tag and allows you to display their content as a part of your own site. A Wrapper will place an IFRAME into the content Section of your Web site and wrap your standard template navigation around it so it appears in the same way an Article would.</p> <h2>Content Parameters</h2> <p>The parameters for each layout type can be found on the right hand side of the editor boxes in the Menu Item configuration screen. The parameters available depend largely on what kind of layout you are configuring.</p>','',-2,4,0,29,'2008-08-12 22:33:10',62,'','2008-08-12 22:33:10',62,0,'0000-00-00 00:00:00','2006-10-11 06:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',11,0,0,'','',0,159,'robots=\nauthor='),(25,'What are the requirements to run Joomla! 1.5?','what-are-the-requirements-to-run-joomla-15','','<p>Joomla! runs on the PHP pre-processor. PHP comes in many flavours, for a lot of operating systems. Beside PHP you will need a Web server. Joomla! is optimized for the Apache Web server, but it can run on different Web servers like Microsoft IIS it just requires additional configuration of PHP and MySQL. Joomla! also depends on a database, for this currently you can only use MySQL. </p>Many people know from their own experience that it\'s not easy to install an Apache Web server and it gets harder if you want to add MySQL, PHP and Perl. XAMPP, WAMP, and MAMP are easy to install distributions containing Apache, MySQL, PHP and Perl for the Windows, Mac OSX and Linux operating systems. These packages are for localhost installations on non-public servers only.<br />The minimum version requirements are:<br /><ul><li>Apache 1.x or 2.x</li><li>PHP 4.3 or up</li><li>MySQL 3.23 or up</li></ul>For the latest minimum requirements details, see <a href=\"http://www.joomla.org/about-joomla/technical-requirements.html\" target=\"_blank\" title=\"Joomla! Technical Requirements\">Joomla! Technical Requirements</a>.','',-2,3,0,31,'2008-08-11 00:42:31',62,'','2008-08-11 00:42:31',62,0,'0000-00-00 00:00:00','2006-10-10 06:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',6,0,0,'','',0,85,'robots=\nauthor='),(26,'Extensions','extensions','','<p>Out of the box, Joomla! does a great job of managing the content needed to make your Web site sing. But for many people, the true power of Joomla! lies in the application framework that makes it possible for developers all around the world to create powerful add-ons that are called <strong>Extensions</strong>. An Extension is used to add capabilities to Joomla! that do not exist in the base core code. Here are just some examples of the hundreds of available Extensions:</p> <ul>   <li>Dynamic form builders</li>   <li>Business or organisational directories</li>   <li>Document management</li>   <li>Image and multimedia galleries</li>   <li>E-commerce and shopping cart engines</li>   <li>Forums and chat software</li>   <li>Calendars</li>   <li>E-mail newsletters</li>   <li>Data collection and reporting tools</li>   <li>Banner advertising systems</li>   <li>Paid subscription services</li>   <li>and many, many, more</li> </ul> <p>You can find more examples over at our ever growing <a href=\"http://extensions.joomla.org\" target=\"_blank\" title=\"Joomla! Extensions Directory\">Joomla! Extensions Directory</a>. Prepare to be amazed at the amount of exciting work produced by our active developer community!</p><p>A useful guide to the Extension site can be found at:<br /><a href=\"http://extensions.joomla.org/content/view/15/63/\" target=\"_blank\" title=\"Guide to the Joomla! Extension site\">http://extensions.joomla.org/content/view/15/63/</a> </p> <h3>Types of Extensions </h3><p>There are five types of extensions:</p> <ul>   <li>Components</li>   <li>Modules</li>   <li>Templates</li>   <li>Plugins</li>   <li>Languages</li> </ul> <p>You can read more about the specifics of these using the links in the Article Index - a Table of Contents (yet another useful feature of Joomla!) - at the top right or by clicking on the <strong>Next </strong>link below.<br /> </p> <hr title=\"Components\" class=\"system-pagebreak\" /> <h3><img src=\"images/stories/ext_com.png\" border=\"0\" alt=\"Component - Joomla! Extension Directory\" title=\"Component - Joomla! Extension Directory\" width=\"17\" height=\"17\" /> Components</h3> <p>A Component is the largest and most complex of the Extension types.  Components are like mini-applications that render the main body of the  page. An analogy that might make the relationship easier to understand  would be that Joomla! is a book and all the Components are chapters in  the book. The core Article Component (<font face=\"courier new,courier\">com_content</font>), for example, is the  mini-application that handles all core Article rendering just as the  core registration Component (<font face=\"courier new,courier\">com_user</font>) is the mini-application  that handles User registration.</p> <p>Many of Joomla!\'s core features are provided by the use of default Components such as:</p> <ul>   <li>Contacts</li>   <li>Front Page</li>   <li>News Feeds</li>   <li>Banners</li>   <li>Mass Mail</li>   <li>Polls</li></ul><p>A Component will manage data, set displays, provide functions, and in general can perform any operation that does not fall under the general functions of the core code.</p> <p>Components work hand in hand with Modules and Plugins to provide a rich variety of content display and functionality aside from the standard Article and content display. They make it possible to completely transform Joomla! and greatly expand its capabilities.</p>  <hr title=\"Modules\" class=\"system-pagebreak\" /> <h3><img src=\"images/stories/ext_mod.png\" border=\"0\" alt=\"Module - Joomla! Extension Directory\" title=\"Module - Joomla! Extension Directory\" width=\"17\" height=\"17\" /> Modules</h3> <p>A more lightweight and flexible Extension used for page rendering is a Module. Modules are used for small bits of the page that are generally  less complex and able to be seen across different Components. To  continue in our book analogy, a Module can be looked at as a footnote  or header block, or perhaps an image/caption block that can be rendered  on a particular page. Obviously you can have a footnote on any page but  not all pages will have them. Footnotes also might appear regardless of  which chapter you are reading. Simlarly Modules can be rendered  regardless of which Component you have loaded.</p> <p>Modules are like little mini-applets that can be placed anywhere on your site. They work in conjunction with Components in some cases and in others are complete stand alone snippets of code used to display some data from the database such as Articles (Newsflash) Modules are usually used to output data but they can also be interactive form items to input data for example the Login Module or Polls.</p> <p>Modules can be assigned to Module positions which are defined in your Template and in the back-end using the Module Manager and editing the Module Position settings. For example, \"left\" and \"right\" are common for a 3 column layout. </p> <h4>Displaying Modules</h4> <p>Each Module is assigned to a Module position on your site. If you wish it to display in two different locations you must copy the Module and assign the copy to display at the new location. You can also set which Menu Items (and thus pages) a Module will display on, you can select all Menu Items or you can pick and choose by holding down the control key and selecting multiple locations one by one in the Modules [Edit] screen</p> <p>Note: Your Main Menu is a Module! When you create a new Menu in the Menu Manager you are actually copying the Main Menu Module (<font face=\"courier new,courier\">mod_mainmenu</font>) code and giving it the name of your new Menu. When you copy a Module you do not copy all of its parameters, you simply allow Joomla! to use the same code with two separate settings.</p> <h4>Newsflash Example</h4> <p>Newsflash is a Module which will display Articles from your site in an assignable Module position. It can be used and configured to display one Category, all Categories, or to randomly choose Articles to highlight to Users. It will display as much of an Article as you set, and will show a <em>Read more...</em> link to take the User to the full Article.</p> <p>The Newsflash Component is particularly useful for things like Site News or to show the latest Article added to your Web site.</p>  <hr title=\"Plugins\" class=\"system-pagebreak\" /> <h3><img src=\"images/stories/ext_plugin.png\" border=\"0\" alt=\"Plugin - Joomla! Extension Directory\" title=\"Plugin - Joomla! Extension Directory\" width=\"17\" height=\"17\" /> Plugins</h3> <p>One  of the more advanced Extensions for Joomla! is the Plugin. In previous  versions of Joomla! Plugins were known as Mambots. Aside from changing their name their  functionality has been expanded. A Plugin is a section of code that  runs when a pre-defined event happens within Joomla!. Editors are Plugins, for example, that execute when the Joomla! event <font face=\"courier new,courier\">onGetEditorArea</font> occurs. Using a Plugin allows a developer to change  the way their code behaves depending upon which Plugins are installed  to react to an event.</p>  <hr title=\"Languages\" class=\"system-pagebreak\" /> <h3><img src=\"images/stories/ext_lang.png\" border=\"0\" alt=\"Language - Joomla! Extensions Directory\" title=\"Language - Joomla! Extensions Directory\" width=\"17\" height=\"17\" /> Languages</h3> <p>New  to Joomla! 1.5 and perhaps the most basic and critical Extension is a Language. Joomla! is released with multiple Installation Languages but the base Site and Administrator are packaged in just the one Language <strong>en-GB</strong> - being English with GB spelling for example. To include all the translations currently available would bloat the core package and make it unmanageable for uploading purposes. The Language files enable all the User interfaces both Front-end and Back-end to be presented in the local preferred language. Note these packs do not have any impact on the actual content such as Articles. </p> <p>More information on languages is available from the <br />   <a href=\"http://community.joomla.org/translations.html\" target=\"_blank\" title=\"Joomla! Translation Teams\">http://community.joomla.org/translations.html</a></p>','',-2,4,0,29,'2008-08-11 06:00:00',62,'','2008-08-11 06:00:00',62,0,'0000-00-00 00:00:00','2006-10-10 22:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',24,0,0,'About Joomla!, General, Extensions','',0,234,'robots=\nauthor='),(27,'Chapter 3','chapter-3','','<h4>Understanding the Temple</h4>\r\n<div>\r\n<p>If any man think himself to be a prophet, or spiritual, let him acknowledge that the things that I write unto you are the commandments of the Lord. Paul</p>\r\n<p>The whole and complete thesis of this book is to introduce others to the light of God. The light of God is simply the meaning of the word light that is expressed in the Bible, the word of God. In this chapter we will discuss the process used by the apostle Paul, in the Corinthian church, to help bring a collective to the light. Also, in our examination of Paul\'s teachings, I will define how he opened the door to an understanding of the statement: the heavens declare the glory of God.</p>\r\n<p>Requiring much effort, and though I gained a minimal amount of knowledge compared to the whole of the information extant, physics and astronomy gave me more insight into my social, economic, and psychological malformations than any other of my worldly endeavors. The study of these disciplines bore a direct relationship to my need for the saving grace of our Lord Jesus Christ. And when Christ came into my heart, I immediately understood my calling-to preach and teach God\'s word in the physics community. At the same time though, I was a drunken drugged out street urchin. As a result, God has given me many joyful years laboring in Rescue Mission ministries. However, as I learn the wisdom of, and gain the ability to expound the scriptures, a portion of the apostle Paul\'s hard hitting words never ceased to resound in my heart: Let every man abide in the same calling wherein he was called. Art thou called being a servant? care not for it: but if thou mayest be made free, use it rather. For he that is called in the Lord, being a servant, is the Lord\'s freeman: likewise also he that is called, being free, is Christ\'s servant. Ye are bought with a price; be not ye the servants of men. Brethren, let every man, wherein he is called, therein abide with God. (1 Corinthians 7:20-24)</p>\r\n<p>I believe God placed me in the Rescue ministry to understand who I am; that he might teach me, precept upon precept, precept upon precept, line upon line, line upon line, here a little and there a little; and that I might be constantly aware of the truth, by keeping a mirror image of myself before me. The ministry has helped me to grow and to love and admire those who are homeless with me in Christ, for they are content to help the needy no matter what the difficulty. My personal struggle though, is to do what I am called to do, in faith, hoping that the result will bring a clearer understanding of the blessings God has given us toward the unbeliever. Those closest to me in Christ are helping me, and are in support of my realizing what I am called to do.</p>\r\n<p>I brought many difficulties into the Christian community-personal difficulties, like anger and the need to blame everyone for my inadequacies, and the inability to hear. While working on these faults, I see one thing clearly; I should not cast my pearls (the Gospel of Jesus), before swine. That is to say, no judgment, for I am what I judge. If I am righteous, righteousness will come forth. If I cast my pearls before swine, for example, if I think of someone as a dirty rotten swine pig, and I cast my pearls toward them, they will perceive of my inner hypocrisy and may turn around and rend me. If I truly love those who are unbelievers or unlearned, and they perceive my honest intention, I (but not I-the Christ that is within me) will be received with open arms.</p>\r\n<p>I have chosen to follow the apostle Paul, in the way he followed Christ. Am I an apostle?-No! I believe Paul to be a tentmaker. I am convinced that for the remainder of his time on earth, after receiving Christ, his endeavor was to build the tabernacle of God amongst men. I believe him to be a wise masterbuilder.</p>\r\n<p>In the Acts of the Apostles, Paul told King Agrippa that on the road to Damascus he encountered a great light. When Paul saw the light, he asked, Who art thou, Lord? The reply was, I am Jesus whom thou persecutest. Moreover, Jesus told him to ... \"rise, and stand upon thy feet: for I have appeared unto thee for this purpose, to make thee a minister and a witness both of these things which thou hast seen, and of those things in the which I will appear unto thee; Delivering thee from the people, and from the Gentiles, unto whom now I send thee, To open their eyes, and to turn them from darkness to light, and from the power of Satan unto God, that they may receive forgiveness of sins, and inheritance among them which are sanctified by faith that is in me. Then Paul said, Whereupon, O king Agrippa, I was not disobedient unto the heavenly vision: shewed first unto them of Damascus, and at Jerusalem, and throughout all the coasts of Judaea, and then to the Gentiles, that they should repent and turn to God, and do works meet for repentance. For these causes the Jews caught me in the temple, and went about to kill me. Having therefore obtained help of God, I continue unto this day, witnessing both to small and great, saying none other things than those which the prophets and Moses did say should come: That Christ should suffer, and that he should be the first that should rise from the dead, and should shew light unto the people, and to the Gentiles. Knowing from the Revelation of the apostle John, that the temple of God is a temple of Light, and that Paul was receiving help from God, I believe that Paul-from the moment of his encounter with the Lord-labored to build the temple of God amongst men.</p>\r\n<p>The word \"tentmaker\" has a particular connotation to me. The Greek word skenopoiov is translated tentmaker. skenopoiov is a rare word. It is thought to be formed by combining skhnhv and poievw. If so, in an earthly sense, skenopoiov would mean pitching or erecting a tent or booth. Therefore it could possibly mean \"tent-maker\" as in that of a tradesman. This meaning is wholly within the range allowed by the etymology, and would be natural if Paul was a tradesman for a living; or, after meeting Christ on the road to Damascus he went out to make tents for his friends. Along this line of thought, the tents of antiquity were for the most part made of leather, so, it is reasoned that more than likely Paul, being a skenopoiov was a leather worker.</p>\r\n<p>The word skenopoiov is used only once in the New Testament (Acts 18:3), so there is nothing to compare it to there. In the book of Acts, Paul went to Corinth and stayed with Aquila and Priscilla, because they were of the same (tevcnh/) occupation. What tevcnh/ (kind of work), is not shown in the context of the passage, so, we must lean on the rest of the scriptures. Paul, in his letters, says that he earned his own way, but there is nothing that I can find to show he worked other than his labor for the Lord. (Ref: 1 Cor. 4:12; 1 Thess. 2:9; 2Thess. 3:8; Acts 20:34) In Acts 17:16,17 Paul disputed in the streets daily: Now while Paul waited for them at Athens, his spirit was stirred in him, when he saw the city wholly given to idolatry. Therefore disputed he in the synagogue with the Jews, and with the devout persons, and in the market daily with them that met with him. In 1 Corinthians 9 Paul asks, ... \"are not ye my work in the Lord?\"-meaning the Corinthians are a result of his labor. He goes on, rhetorically, to say that he does not have the power to forbear working. He then suggests that he preaches and teaches to them without charge, even though, in the law of Moses, the ox that treads out the corn should not be muzzled. It looks pretty dim for my thesis-until we read 2 Corinthians 11:7-9. Have I committed an offence in abasing myself that ye might be exalted, because I have preached to you the gospel of God freely? I robbed other churches, taking wages of them, to do you service. And when I was present with you, and wanted, I was chargeable to no man: for that which was lacking to me the brethren which came from Macedonia supplied: and in all things I have kept myself from being burdensome unto you, and so will I keep myself. Paul\'s work was to preach and to teach the Gospel etc., and he stayed with Aquila and Priscilla because they were of the same craft. The churches of Asia salute you. Aquila and Priscilla salute you much in the Lord, with the church that is in their house. 1Co 16:19</p>\r\n<p>The meaning of the word skenopoiov is disputed by some of the great etymologists showing that skhno\" (not skhnh) meant body-the human or animal body dead or alive. skhno\" originally meant tent but was almost never used as such-the normal use of the word is the transference-body. The use of body for skhno\" is so firmly established that it is not really understood by these linguists how the word could be translated tent-nevertheless it is.</p>\r\n<p>The word skhnhv is an incredible word. It occurs 20 times in the new testament-ten times in Hebrews alone. The word means tabernacle. In Hebrews 9:1 skhnhv refers to the physical tabernacle in the old testament and in 9:11 to the spiritual tabernacle of Jesus, one that is not made with hands. It is curious that in the Gospel of John, 1:14, Jesus is said to have dwelt (tabernacled=eskhvnwsen) among us. All considered and taken to its end, I understand the word in an eschatological sense to mean not the dwelling place of God, for God is the dwelling place, but the very presence of the glory of God-indicating Jesus the light of the world.</p>\r\n<p>In the Septuagint (Greek O.T.) skhnhv occurs over 400 times; mostly for tent or tabernacle and in many cases the Hebrew equivalent means dwelling place-not especially a place for God to dwell, but, a place to assemble with or be joined with God. It seems that our earthly concept of skhnhv (tent and/or tabernacle) is a pattern of that which is to come. It is he that sitteth upon the circle of the earth, and the inhabitants thereof are as grasshoppers; that stretcheth out the heavens as a curtain, and spreadeth them out as a tent to dwell in: (Isaiah 40:22) The word tent is rendered from skhnhv in the Septuagint.</p>\r\n</div>','',-2,4,0,30,'2008-08-12 16:50:48',62,'','2010-03-10 00:32:32',62,0,'0000-00-00 00:00:00','2006-10-11 02:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',13,0,0,'','',0,169,'robots=\nauthor='),(28,'How do I install Joomla! 1.5?','how-do-i-install-joomla-15','','<p>Installing of Joomla! 1.5 is pretty easy. We assume you have set-up your Web site, and it is accessible with your browser.<br /><br />Download Joomla! 1.5, unzip it and upload/copy the files into the directory you Web site points to, fire up your browser and enter your Web site address and the installation will start.  </p><p>For full details on the installation processes check out the <a href=\"http://help.joomla.org/content/category/48/268/302\" target=\"_blank\" title=\"Joomla! 1.5 Installation Manual\">Installation Manual</a> on the <a href=\"http://help.joomla.org\" target=\"_blank\" title=\"Joomla! Help Site\">Joomla! Help Site</a> where you will also find download instructions for a PDF version too. </p>','',-2,3,0,31,'2008-08-11 01:10:59',62,'','2008-08-11 01:10:59',62,0,'0000-00-00 00:00:00','2006-10-10 06:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',5,0,0,'','',0,28,'robots=\nauthor='),(29,'What is the purpose of the collation selection in the installation screen?','what-is-the-purpose-of-the-collation-selection-in-the-installation-screen','','The collation option determines the way ordering in the database is done. In languages that use special characters, for instance the German umlaut, the database collation determines the sorting order. If you don\'t know which collation you need, select the \"utf8_general_ci\" as most languages use this. The other collations listed are exceptions in regards to the general collation. If your language is not listed in the list of collations it most likely means that \"utf8_general_ci is suitable.','',-2,3,0,32,'2008-08-11 03:11:38',62,'','2008-08-11 03:11:38',62,0,'0000-00-00 00:00:00','2006-10-10 08:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=',4,0,0,'','',0,26,'robots=\nauthor='),(30,'What languages are supported by Joomla! 1.5?','what-languages-are-supported-by-joomla-15','','Within the Installer you will find a wide collection of languages. The installer currently supports the following languages: Arabic, Bulgarian, Bengali, Czech, Danish, German, Greek, English, Spanish, Finnish, French, Hebrew, Devanagari(India), Croatian(Croatia), Magyar (Hungary), Italian, Malay, Norwegian bokmal, Dutch, Portuguese(Brasil), Portugues(Portugal), Romanian, Russian, Serbian, Svenska, Thai and more are being added all the time.<br />By default the English language is installed for the Back and Front-ends. You can download additional language files from the <a href=\"http://extensions.joomla.org\" target=\"_blank\" title=\"Joomla! Extensions Directory\">Joomla!Extensions Directory</a>. ','',-2,3,0,32,'2008-08-11 01:12:18',62,'','2008-08-11 01:12:18',62,0,'0000-00-00 00:00:00','2006-10-10 06:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',5,0,0,'','',0,80,'robots=\nauthor='),(31,'Is it useful to install the sample data?','is-it-useful-to-install-the-sample-data','','Well you are reading it right now! This depends on what you want to achieve. If you are new to Joomla! and have no clue how it all fits together, just install the sample data. If you don\'t like the English sample data because you - for instance - speak Chinese, then leave it out.','',-2,3,0,27,'2008-08-11 09:12:55',62,'','2008-08-11 09:12:55',62,0,'0000-00-00 00:00:00','2006-10-10 10:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',6,0,0,'','',0,24,'robots=\nauthor='),(32,'Where is the Static Content Item?','where-is-the-static-content','','<p>In Joomla! versions prior to 1.5 there were separate processes for creating a Static Content Item and normal Content Items. The processes have been combined now and whilst both content types are still around they are renamed as Articles for Content Items and Uncategorized Articles for Static Content Items. </p><p>If you want to create a static item, create a new Article in the same way as for standard content and rather than relating this to a particular Section and Category just select <span style=\"font-style: italic\">Uncategorized</span> as the option in the Section and Category drop down lists.</p>','',-2,3,0,28,'2008-08-10 23:13:33',62,'','2008-08-10 23:13:33',62,0,'0000-00-00 00:00:00','2006-10-10 04:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',6,0,0,'','',0,24,'robots=\nauthor='),(33,'What is an Uncategorised Article?','what-is-uncategorised-article','','Most Articles will be assigned to a Section and Category. In many cases, you might not know where you want it to appear so put the Article in the <em>Uncategorized </em>Section/Category. The Articles marked as <em>Uncategorized </em>are handled as static content.','',-2,3,0,31,'2008-08-11 15:14:11',62,'','2008-08-11 15:14:11',62,0,'0000-00-00 00:00:00','2006-10-10 12:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',8,0,0,'','',0,27,'robots=\nauthor='),(34,'Does the PDF icon render pictures and special characters?','does-the-pdf-icon-render-pictures-and-special-characters','','Yes! Prior to Joomla! 1.5, only the text values of an Article and only for ISO-8859-1 encoding was allowed in the PDF rendition. With the new PDF library in place, the complete Article including images is rendered and applied to the PDF. The PDF generator also handles the UTF-8 texts and can handle any character sets from any language. The appropriate fonts must be installed but this is done automatically during a language pack installation.','',-2,3,0,32,'2008-08-11 17:14:57',62,'','2008-08-11 17:14:57',62,0,'0000-00-00 00:00:00','2006-10-10 14:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',7,0,0,'','',0,32,'robots=\nauthor='),(35,'Is it possible to change A Menu Item\'s Type?','is-it-possible-to-change-the-types-of-menu-entries','','<p>You indeed can change the Menu Item\'s Type to whatever you want, even after they have been created. </p><p>If, for instance, you want to change the Blog Section of a Menu link, go to the Control Panel-&gt;Menus Menu-&gt;[menuname]-&gt;Menu Item Manager and edit the Menu Item. Select the <strong>Change Type</strong> button and choose the new style of Menu Item Type from the available list. Thereafter, alter the Details and Parameters to reconfigure the display for the new selection  as you require it.</p>','',-2,3,0,31,'2008-08-10 23:15:36',62,'','2008-08-10 23:15:36',62,0,'0000-00-00 00:00:00','2006-10-10 04:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',6,0,0,'','',0,41,'robots=\nauthor='),(36,'Where did the Installers go?','where-did-the-installer-go','','The improved Installer can be found under the Extensions Menu. With versions prior to Joomla! 1.5 you needed to select a specific Extension type when you wanted to install it and use the Installer associated with it, with Joomla! 1.5 you just select the Extension you want to upload, and click on install. The Installer will do all the hard work for you.','',-2,3,0,28,'2008-08-10 23:16:20',62,'','2008-08-10 23:16:20',62,0,'0000-00-00 00:00:00','2006-10-10 04:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',6,0,0,'','',0,24,'robots=\nauthor='),(37,'Where did the Mambots go?','where-did-the-mambots-go','','<p>Mambots have been renamed as Plugins. </p><p>Mambots were introduced in Mambo and offered possibilities to add plug-in logic to your site mainly for the purpose of manipulating content. In Joomla! 1.5, Plugins will now have much broader capabilities than Mambots. Plugins are able to extend functionality at the framework layer as well.</p>','',-2,3,0,28,'2008-08-11 09:17:00',62,'','2008-08-11 09:17:00',62,0,'0000-00-00 00:00:00','2006-10-10 10:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',6,0,0,'','',0,20,'robots=\nauthor='),(38,'I installed with my own language, but the Back-end is still in English','i-installed-with-my-own-language-but-the-back-end-is-still-in-english','','<p>A lot of different languages are available for the Back-end, but by default this language may not be installed. If you want a translated Back-end, get your language pack and install it using the Extension Installer. After this, go to the Extensions Menu, select Language Manager and make your language the default one. Your Back-end will be translated immediately.</p><p>Users who have access rights to the Back-end may choose the language they prefer in their Personal Details parameters. This is of also true for the Front-end language.</p><p> A good place to find where to download your languages and localised versions of Joomla! is <a href=\"http://extensions.joomla.org/index.php?option=com_mtree&task=listcats&cat_id=1837&Itemid=35\" target=\"_blank\" title=\"Translations for Joomla!\">Translations for Joomla!</a> on JED.</p>','',-2,3,0,32,'2008-08-11 17:18:14',62,'','2008-08-11 17:18:14',62,0,'0000-00-00 00:00:00','2006-10-10 14:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',7,0,0,'','',0,33,'robots=\nauthor='),(39,'How do I remove an Article?','how-do-i-remove-an-article','','<p>To completely remove an Article, select the Articles that you want to delete and move them to the Trash. Next, open the Article Trash in the Content Menu and select the Articles you want to delete. After deleting an Article, it is no longer available as it has been deleted from the database and it is not possible to undo this operation.  </p>','',-2,3,0,27,'2008-08-11 09:19:01',62,'','2008-08-11 09:19:01',62,0,'0000-00-00 00:00:00','2006-10-10 10:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',6,0,0,'','',0,26,'robots=\nauthor='),(40,'What is the difference between Archiving and Trashing an Article? ','what-is-the-difference-between-archiving-and-trashing-an-article','','<p>When you <em>Archive </em>an Article, the content is put into a state which removes it from your site as published content. The Article is still available from within the Control Panel and can be <em>retrieved </em>for editing or republishing purposes. Trashed Articles are just one step from being permanently deleted but are still available until you Remove them from the Trash Manager. You should use Archive if you consider an Article important, but not current. Trash should be used when you want to delete the content entirely from your site and from future search results.  </p>','',-2,3,0,27,'2008-08-11 05:19:43',62,'','2008-08-11 05:19:43',62,0,'0000-00-00 00:00:00','2006-10-10 06:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',8,0,0,'','',0,28,'robots=\nauthor='),(41,'Newsflash 5','newsflash-5','','Joomla! 1.5 - \'Experience the Freedom\'!. It has never been easier to create your own dynamic Web site. Manage all your content from the best CMS admin interface and in virtually any language you speak.','',1,1,0,3,'2008-08-12 00:17:31',62,'','2008-08-12 00:17:31',62,0,'0000-00-00 00:00:00','2006-10-11 06:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',5,0,2,'','',0,4,'robots=\nauthor='),(42,'Newsflash 4','newsflash-4','','Yesterday all servers in the U.S. went out on strike in a bid to get more RAM and better CPUs. A spokes person said that the need for better RAM was due to some fool increasing the front-side bus speed. In future, buses will be told to slow down in residential motherboards.','',1,1,0,3,'2008-08-12 00:25:50',62,'','2008-08-12 00:25:50',62,0,'0000-00-00 00:00:00','2006-10-11 06:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',5,0,1,'','',0,5,'robots=\nauthor='),(43,'Out of the Pit','out-of-the-pit','','<p><span style=\"font-size: x-small;\"><img src=\"images/stories/emc2.gif\" border=\"0\" align=\"right\" /></span><span style=\"font-size: x-small;\">This project is the resultant of my life\'s work</span><span style=\"font-size: x-small;\">.</span><span style=\"font-size: x-small;\"> I ask you (the select few) </span><span style=\"font-size: x-small;\">who are reading this work here on the web to candidly comment about my labor on the \"<a href=\"http://www.christsweb.net/\">Christsweb</a>\" site I have prepared for you. My intention is to publish. I need you to comment and help me work out any flaws that might impede my my success when presenting this work to a publisher. If you disagree with the thesis but think it is presented well, please help me to find a common ground with you in Christ. I need your support. This work represents the ability to retire for my wife an myself. If I fail — that\'s OK — let it be God\'s will. If God grants success beyond our needs, we will give the abundance to the poor. I pray that you will help in our endeavor.</span></p>\r\n<p><span style=\"font-size: x-small;\">I worked on this graphical concept for a long time and I believe it is correct. If you can find a flaw in my logic I would apreciate you letting me know by <a href=\"mailto:keith@christsweb.net\">email</a> or <a href=\"http://christsweb.net/\">forum</a>. Look closely at what is in the shadow.</span></p>\r\n<p><span style=\"font-size: x-small;\">Introduction</span></p>\r\n<p><span style=\"font-size: x-small;\">Chapter One – God Did It!</span></p>\r\n<p><span style=\"font-size: x-small;\">Chapter Two – </span><span style=\"font-size: x-small;\">Logos</span></p>\r\n<p><span style=\"font-size: x-small;\">Chapter Three – </span><span style=\"font-size: x-small;\">Understanding the Temple</span></p>\r\n<p><span style=\"font-size: x-small;\">Chapter Four – </span><span style=\"font-size: x-small;\">A Little Astronomy</span></p>\r\n<p><span style=\"font-size: x-small;\">Chapter Five – </span><span style=\"font-size: x-small;\">ExNihilo<br /></span></p>','',1,4,0,35,'2008-08-12 09:26:52',62,'','2010-08-10 21:02:28',62,0,'0000-00-00 00:00:00','2006-10-11 10:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',11,0,3,'Uncategorized, Uncategorized, Example Pages and Menu Links','',0,1614,'robots=\nauthor='),(44,'Evening and the Morning...','evening-and-the-morning','','<p>Evening and the morning, according to the Word of God, does not have to mean a 24 hr. period. <br /> <br /> 2Pet 3:8 But, beloved, be not ignorant of this one thing, that one day is with the Lord as a thousand years, and a thousand years as one day.<br /> <br /> No person has ever lived a thousand years, so, no person knows what a thousand years is like — one day is <strong><span style=\"color: red;\">\"as\"</span></strong> a thousand years. One day with the Lord is as an epoch or age — an era or subdivision.</p>','',1,1,0,1,'2010-01-03 00:00:00',62,'','2010-01-03 16:01:14',62,0,'0000-00-00 00:00:00','2010-01-03 00:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',2,0,3,'','',0,329,'robots=\nauthor='),(45,'Threads Community Portal','threads-community-portal','','<p><strong>Is your eye single?</strong><br /><br />The wonder of a singularity...</p>\r\n<p>The believer lives in the Light. When our faith is in God, there is a real Light that comes to dwell with us — I mean a Light that is not imagined or supposed, but, a real Light that we can actually see — Christ Jesus himself.<br /><br />Matt 6:22 The light of the body is the eye: if therefore thine eye be single, thy whole body shall be full of light.<br /><br />Luke 11:34 The light of the body is the eye: therefore when thine eye is single, thy whole body also is full of light; but when thine eye is evil, thy body also is full of darkness.<br /><br />There are the last days and there is the last day. <br /><br />If your eye is on the last days (plural), your eye is full of evil — the last days are full of war and death and devastation.<br /><br />If your eye is on the last day (singular), your eye will be full of Light — God there, is \"all in all\" — God is Light.<br /><br />I Love where I live and what I see — I am raised with Christ and live in His Kingdom and I see the Son of God who is the Glory of God. There is no night in His day of rest — the last day. The darkness of the last days, is behind me and all who believe — we live in Christ Jesus, the Light and Glory of the Father.<br /><br />Praise Jesus for His faithful acts of Grace.<br />__________________<br />Blessings to all who read this...</p>\r\n<p><img src=\"images/stories/seeking.gif\" border=\"0\" align=\"left\" /></p>','',1,1,0,1,'2010-01-02 00:00:00',62,'','2010-01-03 15:50:22',62,0,'0000-00-00 00:00:00','2010-01-02 00:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',12,0,2,'','',0,671,'robots=\nauthor='),(46,'Index','index','','<p><span style=\"font-size: x-small;\"><img src=\"images/stories/emc2.gif\" border=\"0\" align=\"right\" />This project is the resultant of my life\'s work. I ask you (the select few) who are reading this work here on the web to candidly comment about my labor on the \"<a href=\"http://www.light.cc/wiki/index.php/HomePage\">wiki</a>\" site I have prepared for you. My intention is to publish. I need you to comment and help me work out any flaws that might impede my my success when presenting this work to a publisher. If you disagree with the thesis but think it is presented well, please help me to find a common ground with you in Christ. I need your support. This work represents the ability to retire for my wife an myself. If I fail — that\'s OK — let it be God\'s will. If God grants success beyond our needs, we will give the abundance to the poor. I pray that you will help in our endeavor.</span></p>\r\n<p><span style=\"font-size: x-small;\">I worked on this graphical concept for a long time and I believe it is correct. If you can find a flaw in my logic I would apreaciate you letting me know by <a href=\"mailto:keith@christsweb.net\">email</a> or <a href=\"http://christsweb.net/\">forum</a>. Look closely at what is in the shadow.</span></p>','',1,5,0,34,'2010-01-02 22:17:03',62,'','2010-01-02 22:21:06',62,0,'0000-00-00 00:00:00','2010-01-02 22:17:03','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',3,0,2,'','',0,227,'robots=\nauthor='),(49,'Lighthouse One','lighthouse-1','','<p>God often speaks to me in analogies. Several years ago he took me on a trip down the Oregon Coast and showed me how lighthouses paint a picture of our spiritual lives. Most lighthouses are tall, towering structures along with a smaller facility for the keeper. At the top of the tower there is a jewel which houses the light.</p>\r\n<p>If you are a Christian you may think of yourself as a lighthouse. God, the Creator, is the builder of the lighthouse. James 1:17 says, “Every good gift and every perfect gift is from above, and cometh down from the Father of lights, with whom is no variableness, neither shadow of turning.”<br /><br />Jesus is the Light. John 8:12 “Then spake Jesus again unto them, saying, I am the light of the world: he that followeth me shall not walk in darkness, but shall have the light of life.” The light, called a “jewel”, is made up of a series of prisms put together in an oval shape. It uses refraction (to change the direction of rays) and reflection. Jesus reflects the Father and we are changed into reflections of Jesus. Jewels are very expensive and precious. Matthew 13:45-46 tells us, “Again, the kingdom of heaven is like unto a merchant man, seeking goodly pearls: who, when he had found one pearl of great price, went and sold all that he had, and bought it.”<br /><br />The keeper of the lighthouse is the Holy Spirit. “If ye love me, keep my commandments. And I will pray the Father, and he shall give you another Comforter, that he may abide with you for ever.” John 14:15-16 The keeper’s pride is the light, to keep it shining. The Holy Spirit’s pride is Jesus, to glorify him. The keeper’s job is a constant vigil to keep the light lit, to polish, clean, paint, to keep house, do yard work and maintenance around the lighthouse. The Holy Spirit performs these tasks in our lives as we are submitted to him.<br /><br />Matthew 5:16 says, “ Let your light so shine before men, that they may see your good works, and glorify your Father which is in heaven.</p>','',1,6,0,36,'2010-03-17 19:00:16',125,'','2010-06-27 03:09:49',62,0,'0000-00-00 00:00:00','2010-03-17 19:00:16','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',4,0,38,'','',0,782,'robots=\nauthor='),(47,'Book','book','','<p>mmmmmmm</p>','',-2,4,0,35,'2010-03-17 17:13:11',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-03-17 17:13:11','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,0,'','',0,0,'robots=\nauthor='),(48,'Ann\'s Writings','anns-writings','','<h1>Welcome!</h1>\r\n<h2><img src=\"images/stories/annstitle.jpg\" border=\"0\" width=\"228\" height=\"123\" align=\"left\" /></h2>\r\n<p>These little essays were inspirations given to me during part of the time my husband and I ministered at the Hospitality House Rescue Mission, a homeless shelter in Washington State. Most were included as part of a monthly newsletter put out by the House, hence the references to the mission and our work there. <br />It is my hope that as you read my thoughts you will see a Christ who is involved in our everyday experience, a Christ who loves you and wants to be a part of your moments. Let Him occupy your thoughts as He does mine.\r\n','\r\n<br />If you are a Christian you may think of yourself as a lighthouse. God, the Creator, is the builder of the lighthouse. James 1:17 says, \"Every good gift and every perfect gift is from above, and cometh down from the Father of lights, with whom is no variableness, neither shadow of turning.\"</p>\r\n<table style=\"height: 179px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"500\">\r\n<tbody>\r\n<tr>\r\n<td valign=\"top\">\r\n<p><a href=\"index.php?option=com_content&amp;view=article&amp;id=48\">Home</a><br /><a href=\"index.php?option=com_content&amp;view=article&amp;id=49\">Lighthouse One</a><br /> <a href=\"index.php?option=com_content&amp;view=article&amp;id=56\">Lighthouse Two</a><br /> Lighthouse Three <br />Lighthouse  Four<br />Abiding in the Vine<br /> A Mystery<br /> Charity<br /> Choice<br /> Comfort<br /> Deny Christ?<br /> Dependence<br /> Discipline<br /><br /></p>\r\n</td>\r\n<td valign=\"top\">For Mothers<br />Gardening<br /> Giving<br /> God Answers<br /> I Shall Not Want<br /> Light and Dark<br /> Mansion<br /> Meaning has Growth<br /> New Year<br /> Perfect Heart<br /> Rescue Ministry<br /> Resting<br /> ResQ<br /><br /></td>\r\n<td valign=\"top\">Returning<br />Right Notes<br /> Say So<br /> Schoolmaster<br /> Simplicity<br /> Speaking the Truth<br /> Temptation<br /> Testimony<br /> The Widow\'s Mite<br /> Trust<br /> What if Jesus Came?<br /> When are we saved? <br /> Whiter than Snow</td>\r\n</tr>\r\n</tbody>\r\n</table>',1,5,0,34,'2010-03-17 17:48:23',125,'','2010-04-02 19:28:00',62,0,'0000-00-00 00:00:00','2010-03-17 17:48:23','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',11,0,3,'','',0,916,'robots=\nauthor='),(50,'Introduction','introduction','','<h3 style=\"text-align: center;\"><img src=\"images/stories/header.jpg\" border=\"0\" width=\"560\" height=\"123\" /></h3>\r\n<h3>Light is the answer.</h3>\r\n<p>This writing is to help us understand what the Bible is  telling us concerning Light. God is Light. Jesus is the Light of the  world. When we believe, Jesus comes to sup with us. Jesus is a real  light that is brighter than the noonday sun. To each who believes he is  the Light and Glory of God — he comes. The Light is in the world and the  world was made by him, but the world knows him not. The Bible says that  the condemnation is that light is come into the world, and men loved  darkness rather than light, because their deeds were evil.  Unfortunately, he even comes to his own and his own receive him not.</p>\r\n<p>The Light comes to us individually and then he ascends  telling us that we collectively will ascend with him and meet him in the  clouds. When the last trumpet blows and all who are on the earth  believe and we have all ascended with Him as he is with the Father there  will be a new heaven and a new earth — it is then we will know through  experience the words of the two men in white apparel who said, “… why  stand ye gazing up into heaven? this same Jesus, which is taken up from  you into heaven, shall so come in like manner as ye have seen him go  into heaven.”</p>\r\n<p>His coming is his ascension. I know this is a bold statement,  his coming is his ascension, however, when the Light of the glorious  gospel of Christ is manifest, or ascended into the clouds from the  mortal flesh of all those who do and will believe and the last trumpet  blows, the perfect will have come for all the world to see the marriage  of the bride and the lamb.  Death then, is swallowed up in victory by  the life which is the Light from heaven and is above the brightness of  the midday sun. This Light is God himself and the Lamb. There will be no  need of the sun or the moon to shine on the earth for the Lord God  Almighty and the Lamb are the temple of it.</p>\r\n<p>By knowing, understanding and living the precepts given to us  by the light of God, we shall find eternal life. In the light, every  dilemma can be reconciled. A steadfast consideration of light will solve  our social, political, and worldly problems. We can have one goal, one  vision — without being required to change cultural values — man can  become one in the light.</p>\r\n<p>While looking into the night sky, we see minute flecks of  light standing out in the vast darkness. Like the stars in the heaven,  we, the body of Christ, are lights to the world. In the darkness there  is always a remnant of light; in the light there is no darkness. Light  is the only singularity!</p>\r\n<p>God is light; Jesus Christ is the light of the world.</p>\r\n<p>This little book is about light. It\'s about finding the place  where there is no darkness — a place of rest — the Sabbath. It\'s about  being raised into heavenly places. It is about charity. It is about  giving the light and love and healing of God to the world — freely and  without cost — for the edification of those who receive and for the  profit of our Lord God Almighty and the Lamb. It is about the urgency of  this matter — that none will be lost. It is about the incumbency — the  duty and obligation of all who believe to give the gospel to those who  are without the love of God. It is about going into all nations with our  gifts from God, healing all peoples physically and spiritually,  thereby, bringing the Kingdom to fruition that the end will come.</p>\r\n<p>In some ways we have missed the importance of light — all too  often we speak of it in passing. We study, meditate, and scrutinize  words like spirit, love, life, truth, etc.; and we find each of these  precepts individually perfect in the glorification of God. With all due  respect, I long for the time we, as a body, will also engage in the more  weighty discourses pertaining to light. Throughout the Bible, the  teaching of light is prevalent, so we do not want to minimize it in any  way, nor do we want to gloss over it — we want to grab hold and work out  its meaning — in all of its grandeur. En masse, we should encourage  each other to talk about the light, study the light, think about the  light, live in the light; thereby, with and by his grace, we can help  others to be raised from the cares and woes of this world unto the right  hand of God — into all that is good. Thank you Jesus!</p>\r\n<p>The prophets and the Psalmist discoursed in the hope of the  coming Messiah: \"For, behold, the darkness shall cover the earth, and  gross darkness the people: but the LORD shall arise upon thee, and his  glory shall be seen upon thee. And the Gentiles shall come to thy light,  and kings to the brightness of thy rising\" (Isa. 60:2-3). \"O send out  thy light and thy truth: let them lead me; let them bring me unto thy  holy hill, and to thy tabernacles\" (Ps. 43:3). \"The entrance of thy  words giveth light; it giveth understanding unto the simple\" (Ps.  119:130). Even so, when Jesus the Messiah came, many could not see Him.</p>\r\n<p>Jesus taught his disciples: \"Ye are the light of the world. A  city that is set on an hill cannot be hid\" (Matt. 5:14).</p>\r\n<p>After his encounter with a great light on the road to  Damascus, Paul the apostle was sent to the people and the Gentiles by  the Lord to open their eyes and to turn them from darkness to light  (Acts 26:18). It is said by Paul, \"... Awake thou that sleepest, and  arise from the dead, and Christ shall give thee light\" (Eph. 5:14).</p>\r\n<p>The light is no longer a mystery. The writers of the old and  the new testaments understood the fullness of the light and they passed  it on to us. John, in his first letter, says, “This then is the message  which we have heard of him, and declare unto you, that God is light, and  in him is no darkness at all.” 1John 1:5 In the book of Genesis, the  first words directly attributed to God are, \"Let there be light: and  there was light.\" God, as revealed in the coming heavenly city, is the  temple of light: \"And I saw no temple therein: for the Lord God Almighty  and the Lamb are the temple of it. And the city had no need of the sun,  neither of the moon, to shine in it: for the glory of God did lighten  it, and the Lamb is the light thereof\" (Rev. 21:22 — 23).</p>\r\n<p>My personal relationship with Christ is somewhat like that of  the apostle Paul. I do not claim to be an apostle or prophet, however,  Jesus engendered in me to know, understand, and follow his teachings and  the writings of the prophets and apostles concerning his glorious  coming and to follow after them. After meeting Jesus, I found in myself  the urgency to learn to verbalize the meaning of light. I have, without  faltering, determined to find its place in our doctrinal matrix.</p>\r\n<p>I prayed with all of my heart to do the will of God, and the  Lord found a way for me to do it. I believe what I am doing is my duty —  my prayer is that I will harm no one. My hope is that all who read this  will turn to our Lord Jesus to validate any truth that might be  discovered here.</p>\r\n<p>I think we are to give up whatever else we are doing and seek  the kingdom of God and his righteousness on earth. We are mandated to  go into the world and preach the gospel, with every jot and tittle of  the word of God.</p>\r\n<p>The purpose of this writing is to simply begin a dialogue on  light. I am trusting that through this work some may turn from the  darkness of sin to the wonderful glorious light of the gospel of Christ  who is the image of God.</p>\r\n<p>Thank you Jesus!</p>','',1,5,0,34,'2010-04-01 20:24:11',62,'','2010-04-01 22:09:01',62,0,'0000-00-00 00:00:00','2010-04-01 20:24:11','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',3,0,1,'','',0,699,'robots=\nauthor='),(52,'Logos','logos','','<h1 style=\"text-align: center;\"><img src=\"images/stories/header.jpg\" border=\"0\" width=\"560\" height=\"123\" /></h1>\r\n<h1 style=\"text-align: center;\">Chapter Two</h1>\r\n<h3>Logos</h3>\r\n<div>\r\n<p>I believe the Bible is the Word of God. And in fact, I  understand the words in the Bible to be God. I believe the Bible has  been placed on this earth through the loving inspired hearts and minds  of the prophets and the apostles. I am convinced that it is perfect,  whole, and complete. The reason: I have been saved. No other book, and I  have read many, can give us the knowledge and the saving grace of the  Lord Jesus Christ. If we believe, the words of Jesus enter into our very  soul and change our lives. In turn, the life that is in us, is born  from us as manifest light to the world. We are born again; the world is  unctioned to the light of eternal life.</p>\r\n<p>I read the Bible from start to finish. I believe that is was  put in our hands to be read in that manner. I hear it said that we  should start in the middle, or, with the Gospel of John, or some such  thing; but, I am convinced that it should be read from the beginning.  When I speak to those who have not read the Bible as I think it is  intended to be read, I hear another story than from those who read the  work straight through. Those who have read from Genesis on, seem to know  the path toward heaven. Those who have read piece meal, weather they  have read it all or not, seem to know there is a heaven, but are not  clear according to the Bible, how to get there. When we start from the  middle we are constantly looking back toward the beginning. By starting  in the beginning, we are looking (from every direction) toward the  coming Messiah; when we meet Jesus, we believe his words, and he directs  our eyes and our hearts toward the eternal heavens.</p>\r\n<p>If I bear witness of myself, my witness is not true. There is  another that beareth witness of me; and I know that the witness which  he witnesseth of me is true. Ye sent unto John, and he bare witness unto  the truth. But I receive not testimony from man: but these things I  say, that ye might be saved. He was a burning and a shining light: and  ye were willing for a season to rejoice in his light. But I have greater  witness than that of John: for the works which the Father hath given me  to finish, the same works that I do, bear witness of me, that the  Father hath sent me. And the Father himself, which hath sent me, hath  borne witness of me. Ye have neither heard his voice at any time, nor  seen his shape. And ye have not his word abiding in you: for whom he  hath sent, him ye believe not. Search the scriptures; for in them ye  think ye have eternal life: and they are they which testify of me. And  ye will not come to me, that ye might have life. I receive not honour  from men. But I know you, that ye have not the love of God in you. I am  come in my Father\'s name, and ye receive me not: if another shall come  in his own name, him ye will receive. How can ye believe, which receive  honour one of another, and seek not the honour that cometh from God  only? Do not think that I will accuse you to the Father: there is one  that accuseth you, even Moses, in whom ye trust. For had ye believed  Moses, ye would have believed me: for he wrote of me. But if ye believe  not his writings, how shall ye believe my words? (John 5:31:47)</p>\r\n<p>If I speak the truth, and you can rejoice for a while in the  light of what I say, that\'s OK. But, Jesus doesn\'t want the testimony of  men. To receive the light of Life, believe and understand the Old  Testament writings, they speak of Jesus. You do that by reading them.  Moreover, if you are aware of those who do not have the ability to read,  you yourself, or, find someone that will read this incredible  description of Jesus to them. If you refuse, they will not have HIS word  abiding in them. Remember, we cannot believe the writings of Moses if  we do not read them. Without the prophets we are not able to completely  understand or believe the words of Jesus.</p>\r\n<p>In this chapter it will be our endeavor to find the  significance of the English term, Word. We will start at the beginning  of the Bible- Literally. At the beginning is the word in. The meaning of  the word seems elusive. When I question as to what in means, invariably  I am asked, \"In what?\". \"No\", I will say, \"What does the word in mean  without regard to anything else?\". \"Well, I don\'t know, it could mean  inside or within.\" \"Yes\", I will say, \"Now, what does In the beginning  mean?\" \"Well, I suppose it means In the beginning. You know, way back in  time-at the beginning.\" This is typical of the many conversations I  have had concerning the term in.</p>\r\n<p>The secular use of the word is that of a preposition;  combined with a noun in makes up a phrase; such as, in the garden (a  physical place), in support (situational), in the spirit (manner). When  we scrutinize the word, it always means within, inside, or in the midst  of something. In a hurry, means that I am inside, within, in the midst  of a hurry.</p>\r\n<p>The theological use of the word in must include the Greek  term en. En</p>\r\n<p>Albert Einstein, had a deep conviction that a higher power of  thought was manifest by the inscrutable universe. Purportedly, his God  was the God of Spinoza. In 1699 J.G. Wachter\'s Der Spinozimus im  Judenthumb, endeavored to show that the seed of the pantheistic system  of Spinoza came from the Kabbalah. However, the theological formulas of  pantheism, \"God is everything\" and \"Everything is God\" were also found  in Muslim and Christian mysticism. At that time, and even today,  pantheistic thought processes are embedded in the mathematical theories  that pervade our sociological, psychological, and economical worldly  view. The pantheistic doctrine that God \"is everything\" etc., taken to  it\'s logical end reduces God to that which is manifest, and is directly  opposed to the teachings of the apostles John and Paul, who respectively  say, God is a Spirit: and they that worship him must worship him in  spirit and in truth. ( Joh 4:24); And when all things shall be subdued  unto him, then shall the Son also himself be subject unto him that put  all things under him, that God may be all in all. (1Co 15:28) According  to the prophets and apostles of the Bible, God the creator of the  cosmological system in all ways waxes greater than his creation, as  would be the nature of the potter\'s ascendancy over the pot. Even the  Son is subject to the Father: Believest thou not that I am in the  Father, and the Father in me? the words that I speak unto you I speak  not of myself: but the Father that dwelleth in me, he doeth the works.  (Joh 14:10) Everything is in God, and God is in everything.</p>\r\n<p>In is the word of distinction. In is the first word in the  Bible. It begins the biblical discourse requiring a choice. The  selection we make concerning the meaning of the first word determines  the outcome of our very existence-we act in faith. I believe that  etymology, philology, and by course historical context, are the keys to  understanding text from antiquity. Even so, what is essential and  ultimately true, when it comes down to the nitty-gritty of things, is:  the Spirit, the words themselves, will make the increase.</p>\r\n<p>Generally it is thought that the word in in the phrase \"In  the beginning\" in Genesis 1:1, refers to a first moment in time. Because  of the said historical sense in the first few verses of the creation  story, the connotation of in is an act or process, beginning and on this  side of time-this formulation requires in to mean, at the beginning. At  the beginning, an historical term, is opposed to the word in in the  phrase \"In the beginning\" in John 1:1, which is reported to mean, prior  to the beginning-existence before time. Here we have a word that means  one thing in one place, and another meaning in another place, same  phrase-In the beginning God created the heaven and the earth; and, In  the beginning was the word ... .</p>\r\n<p>The apostle John in the beginning of his first letter, wrote:  That which was from the beginning, which we have heard, which we have  seen with our eyes, which we have looked upon, and our hands have  handled, of the Word of life; (For the life was manifested, and we have  seen it, and bear witness, and shew unto you that eternal life, which  was with the Father, and was manifested unto us;). In these verses we  see the phrase, from (apo=meaning out of) the beginning; the life was  manifested to John and his fellows in Christ. Manifest inherently means  that which is already there; as well, readily perceived, not concealed,  open to the senses. The Word of life is the light of men. The Word is  the logos (logos) of life, the very God of Creation.</p>\r\n<h4>Beginning</h4>\r\n<p>In the New Testament, the word arch is most always rendered  beginning; such as, 1 John 1:1. However, considering the historical  context it is said to mean a first point in time. Beginning (arch) means  from or out (apo) of the beginning and assumes the inclusion of the  Greek term logos which is from before time; and which, refers to the  Christ. Again, in 1Jo 2:24 Let that therefore abide in you, which ye  have heard from the beginning. If that which ye have heard from the  beginning shall remain in you, ye also shall continue in the Son, and in  the Father.</p>\r\n<p>I believe this is a pivotal point, it is here that we will be  able to either accept or reject all I am going to say or have said. The  following concerns the bottom line of this thesis. It is not provable  in history, philology, etymology, or anywhere outside of the biblical  words presented. I believe it can only be proven by the Holy Spirit.  Jesus says, the words that I give you are spirit and they are life. I am  sure that the words given will prove a foundation for all to  believe-for the words that manifest are God.</p>\r\n<p>The word beginning is a most miraculous word. Beginning is  the embodiment of Christ the Word of Life, who is God, as are other  words in the Bible; such as, ending, light, life, word, spirit, etc.  Jesus said he is the beginning and the ending. It is true that each of  the above words can be used in a worldly sense, e.g., the spirit of a  team, the light from a bulb, the ending of a pier, the life of a ball  bearing; but, in the word of God, these words with biblical meanings are  the all powerful eternal existence of man, the saving grace of God.  When Jesus says he is the alpha and the omega, the beginning and the  ending, he is aware of the content of any previous words given.  Remember, it is through Jesus, the light of the world (kosmos) that  everything was made. Jesus is the beginning and everything came from the  beginning and resides within the beginning. The word in, in the phrase,  In the beginning in Genesis 1:1, therefore, is required to mean within,  inside in the midst of that which is the beginning.</p>\r\n</div>','',1,4,0,25,'2010-04-01 22:09:42',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-04-01 22:09:42','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,2,'','',0,594,'robots=\nauthor='),(51,'God did it...','god-did-it','','<h2 style=\"text-align: center;\"><img src=\"images/stories/header.jpg\" border=\"0\" width=\"560\" height=\"123\" style=\"border: 0;\" /></h2>\r\n<h2 style=\"text-align: center;\">Chapter One</h2>\r\n<h3>God did it!</h3>\r\n<p>In the beginning God created the heaven and the earth. Gen.  1:1</p>\r\n<p>While thinking about this book, a truth about myself cropped  up. I found that I often think and write from a negative/critical point  of view. In my search to correct this difficulty, I learned that if we  determine something is wrong, love will change our discernment into  compassion, rather than criticism. Knowing that, I must continually ask  God to remind me about love. This led me to think about my life prior to  meeting Jesus. Sad to say, negativism has long been a problem in my  life.</p>\r\n<p>My desire is to go through as many of the following pages as I  can without railing accusation. Because of this, I\'ll give you a candid  view of me before knowing God-and how I came to know him. I believe my  conversion to Christianity is integral to your understanding of any  viewpoint I might possess; so, by giving you the capsule version, I\'ll  be getting everything out in the open-I can be up front. Maybe then, as I  refer back to this chapter for reference, seeing who I really am will  assist me in keeping the thoughts of my heart in the right place. With  that said, I hope you will forgive my brashness in the next few  paragraphs.</p>\r\n<h4>The terrible Day of the Lord</h4>\r\n<p>I believe that through his son Jesus, the light of the world,  our compassionate God is graciously extending his gift of eternal  salvation to all-without cost.</p>\r\n<p>He looketh upon men, and if any say, I have sinned, and  perverted that which was right, and it profited me not; He will deliver  his soul from going into the pit, and his life shall see the light. Lo,  all these things worketh God oftentimes with man, To bring back his soul  from the pit, to be enlightened with the light of the living. Job  33:27-30</p>\r\n<p>In my studies and prayers, I have grown to know that every  word in the Bible is the saving grace of God. In fact, to those who  believe, the words are God incarnate-life itself. I love knowing that  all of the precepts, written down by the Judeo-Christian sages of old,  are required for all to be saved. Each of us living, and all who lived,  have in various ways fallen short of the Glory of God, but, in the  Bible, no matter who we are and where we come from, our individual  spiritual needs are met. The Bible covers every circumstance of life. It  brings forth our fallen nature, and encourages us to collectively  return to the righteousness of our inception. For those who have a  personal relationship with God, the Bible incorporates the pathway to  the true vision for man.</p>\r\n<p>Close to two thousand years ago, the Revelation of Jesus  Christ came to John the apostle in a vision from God. He was told to  write what he saw in a book. I read the book. It\'s about a place of  beauty and wonder, a place full of the joy of eternal life. I believed  the book to be true, and I asked God if I could go there. God is kind to  answer prayer. Those who believe are raised at his own right hand with  his son Jesus. It was revealed to John that God and the Lamb are a  temple of light. I have been given to look upon the glorious light and  am now a new creature in Christ; my hopes, thoughts and dreams are that  everyone will choose the path leading to the temple of God.</p>\r\n<p>For me, the coming of the day of the Lord was a terrible  thing. I remember my first desire to read the Bible. It was to gather  proof against the hypocritical Christians in the world. I had never read  Scripture and I wasn\'t positive who God is, but I was sure that what  those \"Christians\" were saying could not be in their Holy Book. Because  of the way they acted toward me, I believed the church to be a ruse;  they and their Bible were one of the primary reasons I had given up hope  in our society. They were playing a big role in the ruining of my life  and I wanted them to stop. No person, group, or book, knew the answer to  life and death; and I was going to prove it. Then I would find a way to  leave the planet. I just couldn\'t live any longer the way I felt.</p>\r\n<p>Therefore I hated life; because the work that is wrought under  the sun is grievous unto me: for all is vanity and vexation of spirit.  Eccl. 2:17</p>\r\n<p>Along with feelings of rejection toward the Christians, I had  come to realize the physics community, of whom I longed to be a part,  was hell bent to destroy the freedoms we as a social order innately  sought. We allowed that branch of science, and their ilk, to hold back  knowledge of the physical heavens from the rest of the world.  Furthermore, we encouraged the physicists to surreptitiously feed our  armies with the means to eradicate mankind. I began to see that the  underlying impetus behind the conglomerate effort to know the workings  of our solar surroundings was power-the kind that would allow man to  rule man. Something was wrong.</p>\r\n<p>And the earth was without form, and void; and darkness was  upon the faceof the deep. And the Spirit of God moved upon the face of  the waters. Gen. 1:2</p>\r\n<p>Even so, I believed the model held by the physics community to  be the greatest of all paradigms; set in place properly, it would not  only be a perfect ruling dynamic, but it had the wherewithal to save the  world. I just couldn\'t figure out why those we entrusted as caretakers  of the paradigm did not want God in the equation. Though I personally  didn\'t think much about a supreme being, the purity of physics required  all things be considered. I felt that if anything was left out of our  calculations, we could not realize a true paradigmatic statement. That\'s  when I saw it; the laws of physics were set in a linear historical  frame and they broke down by not being able to predict anything prior to  what the physicists call a singularity. Theorems of cosmology required  that in time past the universe was compressed to a state of zero. This  infinite density, called a singularity, reduced man\'s highest form of  thought to a place of nothingness-where the light is turned off. Without  God, we hit a brick wall; linearity needed to be replaced by an omni,  that is, eternal frame. Be that as it may, while purporting gravity, the  cosmologists saw all the heaven\'s energy migrating toward a mass point  and condensed into a state of vacuity. And with that, they realized the  greatest weapon of them all-the Big Bang. My conclusions were: we were  extracting from the heavens the exact method to manufacture great bombs,  and by so doing, we had turned away from any relationship we might have  had with God. We wanted to rule. The proof: our country was focused on  the inevitable attack by those we feared might retaliate against our  overt efforts to control their behavior. We didn\'t trust God, we built  fallout shelters to protect ourselves from our own unrighteous behavior.  Just rewards, I thought.</p>\r\n<p>We, the multitudes, kept our heads in the sand because we were  supplied with gifts of placation-TV\'s, VCR\'s, electric mixers,  motorized this and that, electric toothbrushes, and the like. Moreover,  learning to operate these mechanical niceties kept mass man opiated-we  were like babies in a playpen. We were taught to hold these contrivances  close to our bosom, and we obliged by curling around them in a fetal  position. Some of us protected our homes and workplaces with steel bars  for fear of losing our wonderful contraptions. Our country generated  enough money in the sales of these gifts in kind to pay for all the  research and development we needed for our war machine.</p>\r\n<p>As any bully would, we rationalized armed conflict to be a  successful sociological process. After all, look at our efforts in the  second world war; pulling together to stamp out tyranny was good!  Further, because of the mechanical and electronic skills required for  success, we reasoned we could live for a long time in the luxury of the  spoils. Instead, we lived in fear of our enemy, and without God.</p>\r\n<p>The indicators, the messages sent to us by our leadership,  were that we would continually be drawn together if we kept the war  effort going. Each war would be a goal-as though we were playing a game.  We started manufacturing bombs and other weapons and put them up for  sale to the world at large, always keeping the most sophisticated for  ourselves. We devised electronic war games to alter the mind-set of our  children in case we needed more than a generation to gain control of the  earth. We inundated our little cowboys and cowgirls with electric  mini-jeeps and machine guns that sounded real. In the name of God, our  offspring would march in the pathways of our deception. We supplied  weapons to any war we could find or covertly create. And, as though it  were the ultimate game of chess, we used the powerful image of the \"good  life\" in our country to draw the rest of the world\'s eyes off what we  were doing and what we could see (mathematically) in the heavens.</p>\r\n<p>We utilized our knowledge of the heavenly mechanics to remain  one step ahead in the weapons race. We were told it was a race created  for the benefit of the people. Like every corporate conglomerate,  though, we often realized an urgent need for expansion; with a change of  venue here, and another tac there, we finally settled on Star Wars.  Listen to the name and purpose of these words-Star Wars. Had we a motto  for our growing madness, I think it would have said: bomb everyone who  wants to bomb anybody-nuke the nukers. It was clear-cut that as a self  appointed nation we alone would decide what\'s good and evil on this  earth. For a better vantage point, for us to rule with an iron hand, we  took our venerable war machine into the heavens-the very place that has  the ability to provide peace on earth.</p>\r\n<p>I must have been in a deep sleep. I was so involved in what I  thought to be the purity of the academic study of physics and the  history thereof, that I didn\'t understand our haste to be of a dubious  nature. I got caught up in the arms race like most everyone else. When I  opened my eyes and saw what I saw, I had to shake my head to clear it,  and I said to myself, \"Do nothing, you can\'t beat it.\" I was fearful. We  had a bomb facing every direction, not only toward the enemy but back  toward ourselves-dictating our actions. We were living in a false  peace-aptly called a cold war. It was then I deemed the physics and war  communities like unto a man who would enter a large populated room with a  hand grenade. He would pull the pin and yell out \"All right you  so-and-sos, get down on your faces and shut-up.\" There would be  compliance, then peace, but not heartfelt peace.</p>\r\n<p>I couldn\'t find any compassion for academia. I blamed them. I  hated them for what they were doing to me and our country. Whoa,-my legs  wobbled from my thoughts. I fell to my knees. I considered myself to be  like them and I couldn\'t do anything about it. In my heart I cried out  to know Love. I could go nowhere. The heaviness of my understanding  rendered me still.</p>\r\n<p>My most valuable possession, the profound thoughts of the  physical community that I believed could never be superseded, plummeted  me into a place of melancholic void, a space with no life. Everything  known about the heavens was being used to do injustice to man-and I  bought into it. I felt that the totality of my being personified death. I  was sore-afraid. This penetrating moment of understanding is what I  call my great spiritual black out.</p>\r\n<p>Seeing me in this most untenable state, my wife-to-be sought  help. She joined a church. We were told to discontinue our living  arrangement until we were married. This was the last straw. There  couldn\'t be more. Devastated and alone-separated from life itself-I was  unable to fully comprehend. What is going on, I thought? The very  community that professed love was doing their best to break us up. I  wanted justice. Revenge crept up inside of me. Those ... Christians were  saying we were living in sin; what about them I thought. They were  greedily protecting their way of life while the greater portion of the  people on the earth were starving. Hypocrites!</p>\r\n<p>Obviously, I couldn\'t go to the spiritual community. I had no  personal relationship with God or them. My inability to see the light in  the physical community kept me from any hint of refuge on this earth. I  had no place to share my feelings. My depression became so great that I  was afraid to die for fear of what forever might be.</p>\r\n<p>O Lord, by these things men live, and in all these things is  the life of my spirit: so wilt thou recover me, and make me to live.  Isa. 38:16</p>\r\n<p>I screwed up my courage, and proceeded to throw away all of my  dreams. I quit work. I left home. I purchased a used copy of the King  James Version of the Bible (because it was the oldest) and stormed off  to be close to the sea. I armed myself with the destruction of  Christianity-their own Words.</p>\r\n<p>In my first attempt, I couldn\'t understand a syllable of the  King James English. I had read a great deal of Shakespeare, but, there  was no sense to be made of this writing. Could it be there was some sort  of hidden code? (In retrospect, I was tenaciously clinging to my only  understanding-even though I perceived it to have no foundation.) By the  grace of God, I remembered I was told to \"kneel and pray\" before reading  the book. I thought it was silly to get on my knees, (what could I do  there that I couldn\'t do standing or sitting) but I did. \"I don\'t know  who you are God, and I don\'t know what to say, but if you\'re there  please help me to understand.\" An awareness of something began to tug at  my soul. It kept coming to my mind that I would hear the truth if I  tried reading the Bible again.</p>\r\n<p>Many times in the past, questions emerged from within me  concerning how man came into being or what made the earth and the stars.  In the academic disciplines I had read, the only answer that I could  find was: it could have been this, or, according to an ancient writer if  this were so, then maybe that happened. In the Bible, the first words  said to me were God did it! I clearly understood what was said. I made a  choice. Without question I believed for the first time. God took me to  the beginning and started me in a direction I innately wanted to  go-toward heaven. At that moment, one on one, God created for me the  Heaven and the Earth.</p>\r\n<p>My first reading of the Bible was very deliberate. It took six  weeks. I stopped only for sleep and prayers of forgiveness for the  things I had done. Most of my reading was outside, in a little clump of  trees, close to the water, where I could be by myself. Nothing could  have kept me from the truth that was unfolding. I had been unctioned to  leave the darkness behind. From Genesis to the Revelation, the words of  God riveted my soul with the wonder of creation and the knowledge of my  wretchedness.</p>\r\n<p>When I met Jesus, I could see myself as one who would throw  dice for his garments, and stick a spear in his side to test if he were  dead.</p>\r\n<p>I finished the Revelation and immediately returned to the old  testament. I sought to understand more of Christ and the Church through  the relationship of Ruth to Boaz. When the awareness came, my whole  being seemed to focus on our Saviour Jesus and his reasons for allowing  the terribleness of the cross to happen. It was then I believed Jesus to  be the Messiah. I came undone. I knew that every part of me was known. I  felt naked. In my thoughts I was a drunk, a whoremonger, a murderer, a  perverted soul with no right to life-Satan himself-and all the host of  heaven was watching. The terror was more than I could bear. I cried for  God to eradicate me from the earth, to send me to hell for the benefit  of those I might endanger.</p>\r\n<p>And God said, Let there be light: and there was light. Gen.  1:3</p>\r\n<p>Instead of God taking me off the earth, I woke up on the  ground prostrate and crying uncontrollably. For a moment I thought a  whirlwind had entered me and moved every particle of my physicality  around and into a different place. There was mud and grass covering my  face and imbedded deep into my fingernails. I was surrounded by Jesus,  the light. The book was true. It said, \"Behold, I stand at the door, and  knock: if any man hear my voice, and open the door, I will come in to  him, and will sup with him, and he with me\" (Rev. 3:20).</p>\r\n<p>Shortly, I felt the softness of a hand on my shoulder. It was  an old lady. She said her name was Ruth. She had come to tell me Jesus  is my Saviour-I had been forgiven. She told me she had been watching me  for several weeks. She sat on the ground with me and for the better part  of the day comforted me with her hugs and exceptional knowledge of  Scripture. She assured me that the light I was experiencing was Jesus,  and showed me the biblical proof. I asked her about mercy, faith, grace,  flesh and sin. I told her my darkest secrets. I asked her why Jesus  wasn\'t talking to me like he did with Paul. She said, he probably  revealed all he had to say to me in the Scripture, but he promised he  would visit those who believed. I asked if I could see her again; almost  dismissing the thought, she said Jesus would show me the way.</p>\r\n<p>In those few precious moments with Ruth, and for the first  time in my life on this earth, I experienced truth, love, friendship,  joy, righteousness, and forgiveness. How I long to give those things  away as she gave them to me.</p>\r\n<p>The visible light was with me for months. I told everyone  about it. Thinking me crazy, my friends began to dissipate. Some of the  people in the churches I attended suggested psychological help. I  thought all Christians had seen the light. Isn\'t it Jesus that sets us  apart? Jesus is the light of the world, the firstfruits of the spirit.  We are the light of the world, the firstfruits thereafter. When I  insisted, I was called Satan. I was told I was transforming myself into  an angel of light. The confusion overwhelmed me. I wanted things cleared  up so I could at least talk to people who professed they had been  saved. As my zealousness began to fade, a gift was strongly implanted in  my mind to thoroughly study every word in the Bible, to \"prove all  things.\" I wasn\'t going to stop talking about Jesus, so I had no choice.  It was difficult for me to comprehend that maturity comes with wisdom  and I had little. Down deep inside though, to the marrow of my bones, I  was convinced there is nothing more important than God, Jesus, the Holy  Spirit, and eternal life. I couldn\'t be Satan-I had been forgiven!</p>\r\n<p>One day I noticed the light surrounding me had begun to recede  toward the heavens. In tears, I frantically searched the Scripture to  find out why. With great relief, I found passages saying Jesus would  return, \"Nevertheless I tell you the truth; It is expedient for you that  I go away: for if I go not away, the Comforter will not come unto you;  but if I depart, I will send him unto you\" (John 16:7). \"Let your  conversation be without covetousness; and be content with such things as  ye have: for he hath said, I will never leave thee, nor forsake thee\"  (Hebr. 13:5). I trusted him.</p>\r\n<p>And God saw the light, that it was good: and God divided the  light from the darkness. Gen.1:4</p>','',1,4,0,25,'2010-04-01 21:57:43',62,'','2010-04-01 22:04:42',62,0,'0000-00-00 00:00:00','2010-04-01 21:57:43','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',3,0,3,'','',0,720,'robots=\nauthor='),(53,'Understanding the Temple','understanding-the-temple','','<h1 style=\"text-align: center;\"><img src=\"images/stories/header.jpg\" border=\"0\" width=\"560\" height=\"123\" /></h1>\r\n<h1 style=\"text-align: center;\">Chapter Three</h1>\r\n<h2>Understanding the Temple</h2>\r\n<div>\r\n<p>If any man think himself to be a prophet, or spiritual, let  him acknowledge that the things that I write unto you are the  commandments of the Lord. Paul</p>\r\n<p>The whole and complete thesis of this book is to introduce  others to the light of God. The light of God is simply the meaning of  the word light that is expressed in the Bible, the word of God. In this  chapter we will discuss the process used by the apostle Paul, in the  Corinthian church, to help bring a collective to the light. Also, in our  examination of Paul\'s teachings, I will define how he opened the door  to an understanding of the statement: the heavens declare the glory of  God.</p>\r\n<p>Requiring much effort, and though I gained a minimal amount  of knowledge compared to the whole of the information extant, physics  and astronomy gave me more insight into my social, economic, and  psychological malformations than any other of my worldly endeavors. The  study of these disciplines bore a direct relationship to my need for the  saving grace of our Lord Jesus Christ. And when Christ came into my  heart, I immediately understood my calling-to preach and teach God\'s  word in the physics community. At the same time though, I was a drunken  drugged out street urchin. As a result, God has given me many joyful  years laboring in Rescue Mission ministries. However, as I learn the  wisdom of, and gain the ability to expound the scriptures, a portion of  the apostle Paul\'s hard hitting words never ceased to resound in my  heart: Let every man abide in the same calling wherein he was called.  Art thou called being a servant? care not for it: but if thou mayest be  made free, use it rather. For he that is called in the Lord, being a  servant, is the Lord\'s freeman: likewise also he that is called, being  free, is Christ\'s servant. Ye are bought with a price; be not ye the  servants of men. Brethren, let every man, wherein he is called, therein  abide with God. (1 Corinthians 7:20-24)</p>\r\n<p>I believe God placed me in the Rescue ministry to understand  who I am; that he might teach me, precept upon precept, precept upon  precept, line upon line, line upon line, here a little and there a  little; and that I might be constantly aware of the truth, by keeping a  mirror image of myself before me. The ministry has helped me to grow and  to love and admire those who are homeless with me in Christ, for they  are content to help the needy no matter what the difficulty. My personal  struggle though, is to do what I am called to do, in faith, hoping that  the result will bring a clearer understanding of the blessings God has  given us toward the unbeliever. Those closest to me in Christ are  helping me, and are in support of my realizing what I am called to do.</p>\r\n<p>I brought many difficulties into the Christian  community-personal difficulties, like anger and the need to blame  everyone for my inadequacies, and the inability to hear. While working  on these faults, I see one thing clearly; I should not cast my pearls  (the Gospel of Jesus), before swine. That is to say, no judgment, for I  am what I judge. If I am righteous, righteousness will come forth. If I  cast my pearls before swine, for example, if I think of someone as a  dirty rotten swine pig, and I cast my pearls toward them, they will  perceive of my inner hypocrisy and may turn around and rend me. If I  truly love those who are unbelievers or unlearned, and they perceive my  honest intention, I (but not I-the Christ that is within me) will be  received with open arms.</p>\r\n<p>I have chosen to follow the apostle Paul, in the way he  followed Christ. Am I an apostle?-No! I believe Paul to be a tentmaker. I  am convinced that for the remainder of his time on earth, after  receiving Christ, his endeavor was to build the tabernacle of God  amongst men. I believe him to be a wise masterbuilder.</p>\r\n<p>In the Acts of the Apostles, Paul told King Agrippa that on  the road to Damascus he encountered a great light. When Paul saw the  light, he asked, Who art thou, Lord? The reply was, I am Jesus whom thou  persecutest. Moreover, Jesus told him to ... \"rise, and stand upon thy  feet: for I have appeared unto thee for this purpose, to make thee a  minister and a witness both of these things which thou hast seen, and of  those things in the which I will appear unto thee; Delivering thee from  the people, and from the Gentiles, unto whom now I send thee, To open  their eyes, and to turn them from darkness to light, and from the power  of Satan unto God, that they may receive forgiveness of sins, and  inheritance among them which are sanctified by faith that is in me. Then  Paul said, Whereupon, O king Agrippa, I was not disobedient unto the  heavenly vision: shewed first unto them of Damascus, and at Jerusalem,  and throughout all the coasts of Judaea, and then to the Gentiles, that  they should repent and turn to God, and do works meet for repentance.  For these causes the Jews caught me in the temple, and went about to  kill me. Having therefore obtained help of God, I continue unto this  day, witnessing both to small and great, saying none other things than  those which the prophets and Moses did say should come: That Christ  should suffer, and that he should be the first that should rise from the  dead, and should shew light unto the people, and to the Gentiles.  Knowing from the Revelation of the apostle John, that the temple of God  is a temple of Light, and that Paul was receiving help from God, I  believe that Paul-from the moment of his encounter with the Lord-labored  to build the temple of God amongst men.</p>\r\n<p>The word \"tentmaker\" has a particular connotation to me. The  Greek word skenopoiov is translated tentmaker. skenopoiov is a rare  word. It is thought to be formed by combining skhnhv and poievw. If so,  in an earthly sense, skenopoiov would mean pitching or erecting a tent  or booth. Therefore it could possibly mean \"tent-maker\" as in that of a  tradesman. This meaning is wholly within the range allowed by the  etymology, and would be natural if Paul was a tradesman for a living;  or, after meeting Christ on the road to Damascus he went out to make  tents for his friends. Along this line of thought, the tents of  antiquity were for the most part made of leather, so, it is reasoned  that more than likely Paul, being a skenopoiov was a leather worker.</p>\r\n<p>The word skenopoiov is used only once in the New Testament  (Acts 18:3), so there is nothing to compare it to there. In the book of  Acts, Paul went to Corinth and stayed with Aquila and Priscilla, because  they were of the same (tevcnh/) occupation. What tevcnh/ (kind of  work), is not shown in the context of the passage, so, we must lean on  the rest of the scriptures. Paul, in his letters, says that he earned  his own way, but there is nothing that I can find to show he worked  other than his labor for the Lord. (Ref: 1 Cor. 4:12; 1 Thess. 2:9;  2Thess. 3:8; Acts 20:34) In Acts 17:16,17 Paul disputed in the streets  daily: Now while Paul waited for them at Athens, his spirit was stirred  in him, when he saw the city wholly given to idolatry. Therefore  disputed he in the synagogue with the Jews, and with the devout persons,  and in the market daily with them that met with him. In 1 Corinthians 9  Paul asks, ... \"are not ye my work in the Lord?\"-meaning the  Corinthians are a result of his labor. He goes on, rhetorically, to say  that he does not have the power to forbear working. He then suggests  that he preaches and teaches to them without charge, even though, in the  law of Moses, the ox that treads out the corn should not be muzzled. It  looks pretty dim for my thesis-until we read 2 Corinthians 11:7-9. Have  I committed an offence in abasing myself that ye might be exalted,  because I have preached to you the gospel of God freely? I robbed other  churches, taking wages of them, to do you service. And when I was  present with you, and wanted, I was chargeable to no man: for that which  was lacking to me the brethren which came from Macedonia supplied: and  in all things I have kept myself from being burdensome unto you, and so  will I keep myself. Paul\'s work was to preach and to teach the Gospel  etc., and he stayed with Aquila and Priscilla because they were of the  same craft. The churches of Asia salute you. Aquila and Priscilla salute  you much in the Lord, with the church that is in their house. 1Co 16:19</p>\r\n<p>The meaning of the word skenopoiov is disputed by some of the  great etymologists showing that skhno\" (not skhnh) meant body-the human  or animal body dead or alive. skhno\" originally meant tent but was  almost never used as such-the normal use of the word is the  transference-body. The use of body for skhno\" is so firmly established  that it is not really understood by these linguists how the word could  be translated tent-nevertheless it is.</p>\r\n<p>The word skhnhv is an incredible word. It occurs 20 times in  the new testament-ten times in Hebrews alone. The word means tabernacle.  In Hebrews 9:1 skhnhv refers to the physical tabernacle in the old  testament and in 9:11 to the spiritual tabernacle of Jesus, one that is  not made with hands. It is curious that in the Gospel of John, 1:14,  Jesus is said to have dwelt (tabernacled=eskhvnwsen) among us. All  considered and taken to its end, I understand the word in an  eschatological sense to mean not the dwelling place of God, for God is  the dwelling place, but the very presence of the glory of God-indicating  Jesus the light of the world.</p>\r\n<p>In the Septuagint (Greek O.T.) skhnhv occurs over 400 times;  mostly for tent or tabernacle and in many cases the Hebrew equivalent  means dwelling place-not especially a place for God to dwell, but, a  place to assemble with or be joined with God. It seems that our earthly  concept of skhnhv (tent and/or tabernacle) is a pattern of that which is  to come. It is he that sitteth upon the circle of the earth, and the  inhabitants thereof are as grasshoppers; that stretcheth out the heavens  as a curtain, and spreadeth them out as a tent to dwell in: (Isaiah  40:22) The word tent is rendered from skhnhv in the Septuagint.</p>\r\n</div>','',1,4,0,25,'2010-04-01 22:16:34',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-04-01 22:16:34','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,1,'','',0,548,'robots=\nauthor='),(54,'A Little Astromomy','a-little-astromomy','','<p style=\"text-align: center;\"><img src=\"images/stories/header.jpg\" border=\"0\" width=\"560\" height=\"123\" /></p>\r\n<h1 style=\"text-align: center;\">Chapter Four</h1>\r\n<h3>A Little Astromomy</h3>\r\n<blockquote>\r\n<div>\r\n<p>According to the grace of God which is given unto me, as a  wise master-builder, I have laid the foundation, and another buildeth  thereon. But let every man take heed how he buildeth thereupon. For  other foundation can no man lay than that is laid, which is Jesus  Christ. Now if any man build upon this foundation gold, silver, precious  stones, wood, hay, stubble; Every man\'s work shall be made manifest:  for the day shall declare it, because it shall be revealed by fire; and  the fire shall try every man\'s work of what sort it is. If any man\'s  work abide which he hath built thereupon, he shall receive a reward. If  any man\'s work shall be burned, he shall suffer loss: but he himself  shall be saved; yet so as by fire. Paul-1Cor. 3:10-15</p>\r\n<p>There was a man in my life-whether all that I say about him  is real or fictional is for God to determine. I didn\'t like this man  until he died. He was the man that married my mother and I did not like  him. He was an auto mechanic; a peculiar sort of man because he worked  all of the time. My mother said that he was always doing things for  others and never charging for his time. I didn\'t like him because we  were poor. He worked all day at the auto shop. On the weekends and most  evenings he worked in our two-car garage in the back of the house. I  didn\'t like him because sometimes he made me wash the greasy auto parts  and hold the lamp for him so he could see the engine of the car he was  working on. He told me all about combustion engines, but I didn\'t want  to listen.</p>\r\n<p>We had an old LaSalle car that he loved. I think it had  twelve cylinders, I\'m not sure. He could get that old car to run so  smooth we couldn\'t hear it when we were inside it, and we couldn\'t even  feel it move when it was running. About once a month he worked on the  LaSalle. The majority of the time he made my brother and me help.</p>\r\n<p>I thought him strange because before he did anything to the  car he would pull his violin out from under the bed in my mother\'s room  and make a few sounds like he was tuning it. He never played the violin,  he just tuned it. For some reason though, I knew he could play it if he  had to-he talked a lot about classical music. Once in a while after he  would painstakingly perfect the sound of the violin, I would hear part  of a melody, but not much, not for long. However, when he was finished  tuning, he could make the violin sound like a bird. To this day when  working on the computer I like to have a guitar handy, to tune before I  start; it kinda makes things go better. Anyway, after he finished tuning  the violin we would go out into the garage and tear into the big green  LaSalle.</p>\r\n<p>One evening after we got it running smooth, my step-father  asked me to drive the car out of the garage. I couldn\'t figure it out. I  was the only one helping, I don\'t know where my brother was. I had  never driven before-my brother had, but I hadn\'t. He told me how to do  it though, and I backed the car out of the garage while he watched. I  did a good job. When I finished he came and sat on the passenger side,  leaving me in the driver\'s seat, and closed the car door. I couldn\'t  believe it-I felt aces! We listened. We couldn\'t hear anything and we  couldn\'t feel the car move. He leaned against the dash and looked out  the windshield straining his neck a little because the garage was close  in front of us and the glass was almost straight up and down and said,  \"Look up, into the sky, try not to move-look hard. When the car is  running and it feels as still and sounds as quiet as the universe, it\'s  in tune, just like everything up there is. That\'s the way you can tell  if you\'ve done a good job.\" Maybe I liked him.</p>\r\n<p>My stepfather had glaucoma. He developed leukemia and died  when I was young. For the short time I knew him, bits and pieces of his  conversation made me believe that he worked on some bomb in Arizona or  Nevada or somewhere. After he died, I made up stories about him to  myself until I couldn\'t tell what was true and what was not. I knew he  was a genius though, and I guessed that because of his eyes he couldn\'t  do the work he used to do. He knew so much stuff. He talked about the  bomb and how it was made. He wished we would not have done what we did  in Japan. Sometimes he got drunk when he talked about it. He wanted to  be a good man, I didn\'t know what his problem was.</p>\r\n<p>When I got older and I wanted to be alone I would go  somewhere and lie on a hillside or in the middle of a meadow and look up  at the night sky and think of my stepfather. He introduced me to the  wonder of the universe. Because of what he told me, I devised many plans  on how the night sky works. He told me that everything up there fit  together, all of it was connected-and the stars related to each other  like friends. He told me that God made the lot of it. He said if I  wanted to, I could know everything there is to know about the heavens. I  would lie there and think for quite a while. The only thing I truly  knew though, concerning my stepfather, is that I didn\'t get to tell him I  liked him before he died. He never knew it.</p>\r\n<p>It is difficult for me to change my way when I don\'t want to,  especially when I feel comfortable where I am. Before I began studying  the thoughts of others, I devised many methods for the universe to work,  but each one seemed to fall apart at one end or the other. I would  spend months and sometimes more than a year concocting a scheme that I  was sure would work; and when it wouldn\'t, I felt as though I lost my  dog or my arm was being cut off. Imagine this: for over three centuries,  hundreds, maybe thousands of people have devoted their lives developing  the complexities of the Newtonian dynamic; just to have it replaced by  another paradigm. Yes, they had been looking for a better way, but  still, what would it do to their mind-set? With all that, I was not  going to stop looking for the universal secret to life-I was afraid of  death. I saw my stepfather in the hospital and I swore to myself that I  would do everything I could to overcome. I was going to live forever. I  decided to leave my family. I figured that if they were not important to  me, I wouldn\'t have to watch them fail and wither away. If I didn\'t get  close to anyone I would never have to go to another funeral.</p>\r\n<p>For the years prior to my knowing God I traveled all over the  country, studying in the great libraries, collecting information. Most  of the time I would go to a university in a certain city, find out what  was required in a particular curriculum and study the texts. Sometimes I  would take classes to help myself keep on track. I worked as little as  possible for a living. I kept my nose in the books. I read the classics,  theory of education, philosophy, psychology, eastern thought, theatre,  optics, astronomy and physics, to the limit of my understanding. I chose  those fields because at the time I understood their theoretical subject  matter to be what I needed to get where I wanted to go. I leaned more  toward physics and astronomy; I felt these two systems of information  could produce the foundation for man to gain access to forever.</p>\r\n<p>Early Astronomy</p>\r\n<p>While looking into the antiquities of astronomy and physics, I  learned that astronomy, born out of astrology, was the first physical  science-even before medicine. From the information I was able to glean, I  found that the process of acquiring knowledge of the celestial spheres  has directly and in a special way governed our activities and thoughts  here on earth-and in particular the Western World.</p>\r\n<p>From sketchy records, going back to 2000 B.C., we find  concepts of the universe. Archaeological investigations in Mesopotamia,  Egypt, and as far east as the valleys of China and India have yielded  the inhabitants\' knowledge of celestial motions. The awareness of moving  objects in the sky without doubt exercised an influence on these  ancient people.</p>\r\n<p>\"The heavens reveal ideas; the holyman takes them as his  model\"</p>\r\n<p>Book of Changes</p>\r\n<p>The Chinese, often considered the oldest civilization, had a  calendar that reflected their observed knowledge of celestial changes.  This knowledge, to a great extent, governed their own activity. Their  temples, for example, always faced the rising sun. Also, they noticed  that each day the sun would shift its position according to the stars.  The lowest arc of the sun\'s travel across the sky would mark what we now  know as the winter solstice. Some assert their division of the circle  into 365.25 equal parts to be proof of the accuracy of their  observations. All this, coupled with irregular heavenly activities, such  as the appearance of comets, brought forth some terrifying  superstitions that abounded in this ancient culture. For example,  because of their astrological bent, the underlying disharmony of a comet  was thought to indicate failure by the governing rulers. All in all, in  the Chinese culture, more than 2000 years before Christ, there was a  high level of understanding of the events taking place in their  celestial treasury.</p>\r\n<p>Probably the best astronomers of antiquity were the  Babylonians. Like the Chinese they were stargazers. They named many of  the constellations, such as, Orion, the Pleiades, Aldebaran, and Sirius.  It is believed that they were, for the most part, responsible for the  pseudoscience of astrology. After a time, the astronomical movement of  the celestial bodies became a religious dogma to the Babylonians. Unlike  the Chinese, whose stars became gods, the Babylonian gods became stars.  The Babylonians placed their native divinities into the heavens; and  all the mythic traits of these divinities were transferred to the stars.  It was the first and only time that any religion made their divine  beings visible and calculable. That is, the divine worship of the  Babylonians was made equivalent to astronomy. Their religious message  was revealed through picture writing in the sky.</p>\r\n<p>The task of Greek astronomy was to eliminate the apparent  planetary irregularities perceived even by the Babylonians. One of the  most striking of these irregular events was the motion of Mars. Month by  month for half of the year the distance Mars would travel grew longer;  thereafter, the length of the planet\'s journey would diminish. The  Greeks thought it to be an illusion; surely the cosmos is perfect in its  circular motion and its unchanging velocity.<br /> Once the center of the orbit of Mars was no longer the center  of the earth, the solution to the problem of cosmological irregularities  could be explained. Apollonius of Perga, a mathematician of report, who  had supplemented Euclidean geometry with the laws of curves such as the  ellipse, the parabola, and the hyperbola, constructed a geometry that  would provide a mathematical rationale to satisfy the Greek appetency  for harmony. Even though the planets might circle around an assumed  empty point, the earth still remained the center of the universe, and  the pride of the Hellenistic philosophers was justified.</p>\r\n<p>This achievement lasted for one hundred years. Then, the  digging around by one called Hipparchus showed that the irregularities  of Mars were greater than had been assumed-he knew the ingenious  construction of Apollonius had failed. Hipparchus was so shaken because  he had destroyed a triumphant cosmology, he could not bring himself to  solve the mysteries of the planetary orbits.</p>\r\n<p>Not to worry though, an Egyptian, Claudius Ptolemaeus, came  to the rescue of Grecian astronomy and restored the harmonization of the  cosmos Hipparchus had so reticently and sorrowfully demolished. Ptolemy  had such superior qualities as a theoretician that his \"Great System\"  (Megale Syntaxis tes Astronomias, known from the Arabic translation as  the Almagest) lived for approximately fifteen hundred years. Yes, the  system was complicated, but by moving the center of Apollonius\'  imaginary circle twice the distance from Earth and overlaying his  planetary circle upon that of Apollonius\', Ptolemy was able to calculate  with some accuracy the future positions of Mars. Because of  capitulation, Ptolemy\'s \"epicycles\" seemed to be a barnacle on his  sinking ship of astronomical thought. Nevertheless, it was the earth  centered system of the universe propounded by Ptolemy that triumphed  over Apollonius\' theory that the planets circled around an assumed point  in a void.</p>\r\n<p>Algebra, and Euclid\'s geometry, describing space as  three-dimensional, were tools that aided the Greeks in their  observational capabilities, but, they did not have a scientific method  of investigation. They treated experimentation with contempt and  aloofness. They did recognize that things were going on in nature that  they could not understand; however, any hypotheses that was  philosophically pleasing and logical to them was \"proven,\" even when  contradicted by observation.</p>\r\n<p>After the decline of the ancient Greek civilization, any sort  of scientific investigation, for the most part, came to a halt. As the  Roman empire strutted to power, a new progress of expansion, commerce,  politics, and warfare was shared by those who would accept the good life  that the Greeks sought to achieve. The Romans abandoned all thought of  nature and the universe.</p>\r\n<p>The inability of astronomers to build upon or supplant the  Great System of Ptolemaeus, along with the ever increasing stronghold of  astrology in the Christian community, were enormous factors in the  suppression of astronomical thought between the rise of the Roman Empire  and (what we know today as) the era of the classical physicists.</p>\r\n<p>The notation of the activities of the heavenly spheres all  but gave way to astrological writings in the sky. For a short time, the  need by the Christians to place the Gospel in the stars took precedence  over any sort of realistic approach to heavenly observation. There was  what seemed to be a reversion to the Babylonian tradition of placing the  divinities into the stars. Finally, the fathers of the Church began to  fight this tendency. Tertullian, for example, sharply admonished the  Church with these words: \"The magical relationships in the heavens  existed only up to the appearance of Christ. Through Christ man was  raised from servant of the stars to master of the stars.\"</p>\r\n<p>Was astrology a form of idolatry? The Church fathers believed  it to be so. Stargazing would be permitted for noting the signs of  weather and such (Augustine, for one, felt that the stars had an  influence over nature), but fortune-telling astrology was not to be  permitted. The Church took an official stance on this matter. Even so,  astrology won a powerful place in Christianity.</p>\r\n<p>As the darkness of the Middle Ages began to settle on the  Western World, there was a hint of realism that kindled a new light. By  this time, the Church had banned astronomy along with astrology. There  was a fear in the Church that the study of the movements of the sun,  moon, and planets would turn men\'s minds to pagan idol worship. Be that  as it may, many astronomical and scientific achievements, including  those of Ptolemy, were translated from the Arabic and brought to  Christendom. The era that would all but end the regressive tendencies of  astrology, and bring astronomy into a commonplace, was at hand.</p>\r\n<p>Some call Johann Muller of Konigsberg (about 1450) the first  \"true\" modern scientist. His role in the revival of Renaissance  astronomy was important. At the University of Vienna he completed and  published Georg von Peurbach\'s translation of the Almagest, Theoricae  novae planetarum (New Theories of the Planets), and wrote his own work  on trigonometry. He understood the sky to be curved, and applied Arabic  trigonometry to it. He even suggested to the Pope, that out of fifty of  the Church\'s calculated Easter dates, thirty were incorrect. Toward the  latter part of the Middle Ages astronomers in the West were making  sensible, impartial, and sober observations of the heavens.</p>\r\n<p>Classical Astronomy</p>\r\n<p>Jastrow, an \"...agnostic in religious matters,\" in his work  \"God and the Astronomer,\" speaks about what he thinks are \"...some  strange developments going on in astronomy-partly because of their  religious implications and partly because of the peculiar reactions of  my colleagues.\" The Universe had, in some sense, a beginning: there was a  prime mover-or a creative agent-that the scientists did not want to  come to terms with. The Steady State cosmology (which had no beginning)  had been superseded by the Big Bang theory.</p>\r\n<p>The general scientific picture of the universe was now one  that suggested an enormous explosion; and we are witnessing the  aftermath. The universe is expanding before our eyes. And, if we were to  look back (in our mind\'s eye) to the moment of this beginning we would  see \"The dazzling brilliance of the radiation ... .\" Again, the density  of the hot Universe must have had no description. \"The picture suggests  the explosion of a cosmic hydrogen bomb.\" This cosmic bomb would mark  the birth of the Universe.</p>\r\n<p>The Big Bang seemed to support the biblical view of the  origin of the world. The theologians, in general, were delighted with  the proof that the Universe had a beginning. The astronomers, though  they were supposed to have an objective mind about things, had become  irritated. Their reaction was much the same as the theologians  displeasure with the Steady State theory. The new evidence was in  conflict with the scientists\' beliefs. There is a faint glow of  radiation around the earth, and it is coming from every direction in the  heavens. It was found by Arno Penzias and Robert Wilson of the Bell  Laboratories, and was the almost certain evidence that made the Big Bang  theory a reality. It would be impossible to paper over this one.</p>\r\n<p>The measurements showed that the earth could not be the  origin of this radiation-the entire universe, the moon, the sun, and any  particular object in the sky seemed to be the source. Penzias and  Wilson had stumbled upon one of the mysteries of the Cosmos. Some  scientists, who we now know were ahead of their time, such as Ralph  Alpher and Robert Herman, had asserted that the Universe resembled a  white-hot fireball in its very first moments. The Penzias-Wilson  radiation-and this is the clincher-was from that fireball. As the  Universe expanded and cooled, the fireball would have become less  brilliant, but the radiation would not have disappeared. Around the  earth is a diffuse glow of this ancient fireball radiation-the pattern  of wavelengths expected from the light and heat of a prime explosion are  the same as those found by Penzias and Wilson. As a result, the Big  Bang theory has no competitors. Try as they would, the supporters of the  Steady State theory were unable to find any alternative explanation.</p>\r\n<p>This kind of observation found its inception in the labors of  the classical physicists who were in the throes of the modern  scientific endeavor-the astrologers continued in their prognostications.</p>\r\n<p>Some of the more eminent astrologers, such as Nostradamus of  Paris, who foresaw the demise of King Henry II in a duel, made it  difficult for astronomy to come to the fore. Everyone knew that a king  could or would not engage in a duel; however in a court tournament, the  splinter of a lance flew at the king and the projectile struck him dead.</p>\r\n<p>Although Tycho Brahe was a passionate lover of astrology, he  was an astute observer of the heavens. He took pride in his \"Tychonic  Cosmology\" thinking that he had surpassed the theoretic of Copernicus.  Nevertheless, he was truly a man of astronomical distinction. He was  destined to surpass the Greeks. His refraction table corrected the basic  error of the Greeks that resulted from rays of light being bent as they  entered the earth\'s atmosphere. He was possibly the first to bring the  precision we need for astronomical insight. He labored diligently to  restore the dignity of man that Copernicus had demolished by putting the  sun in the center of the universe. He harbored a deep feeling that God  made man the benefactor and central figure of the cosmos. The earth had  to be the focal point of God\'s attention. His solution to the problem  was that the sun revolved around the earth annually and the planets  revolved around the sun.</p>\r\n<p>Johannes Kepler, Brahe\'s student and assistant, may have been  the last of the astrologer-astronomers. With Kepler, it seems, was a  turning toward the realism of astronomy. Although Tycho Brahe was a  successful astrologer who wrote horoscopes for the king\'s court, was  made responsible for the predictions of good and bad \"political  weather,\" and had written volumes concerning the \"new star\" that  appeared in the northern sky of 1572, Kepler decided that keeping  statistics would be the best form of objectivity. He himself made a few  solid predictions concerning the weather, but his almanac failed  miserably. He gave up forecasting.<br /> Brahe believed anything that appeared in the heavens after the  creation must be transitory. His new star lasted eighteen months. (We  would know the star today as a nova.) Brahe thought it a sign that there  would be a new light in religion, in Finland, between 1593 and 1632.  His prediction was thought to be fulfilled in one Gustavus Adolphus II,  king of Sweden (Finland was under the political power of Sweden at that  time) and who was born 1594 and died in 1632.</p>\r\n<p>Kepler did have a keen regard for personal horoscopes, but he  did not want to engage in the foretelling of personal fate. It is known  that when a certain general wanted to know how long to trust in the  good fortune the military was bringing him, the reply from Kepler was,  \"Whosoever would have the answers to such questions from the stars  alone, without reckoning with the character and the free will of man,  has not yet rightly learned to trim the lamp of reason which God has  lighted in him. If you would be hoodwinked to your face, turn to the  young astrologers; there are many who have the faith and the brazenness  to indulge in such games. True astrology is a holy testimony to God\'s  glorious works, and I for my part, do not wish to dishonor it.\"</p>\r\n<p>Both Tycho Brahe, and Kepler with his waning astrological  bent, believed that an understanding of the unity of the universe would  give man a better ability to order his own fate. Tycho Brahe said, in a  lecture at the University of Copenhagen in 1574, \"To deny the forces and  influence of the stars is to undervalue firstly the divine wisdom and  providence and moreover to contradict evident experience. For what could  be thought more unjust and foolish about God than that He should have  made this large and admirable scenery of the skies and so many brilliant  stars to no use or purpose-whereas no man makes even his least work  without a certain aim.\" Tycho Brahe was unable to formulate an accurate  picture of the universe, but he did something more than others of his  leaning; he kept records that were true to his observations regardless  of the conclusions drawn.</p>\r\n<p>Johannes Kepler was given the advantage of being the  successor to Tycho Brahe. His adoption of the heliocentric principle  given by Copernicus and his driving curiosity made Kepler a  mathematician indeed. He was enthralled with the beauteous symmetry of  the universal system. He thought there must be a simplicity-a  synthesis-that would describe in geometrical relationships the motions  of the celestial spheres. But Mars was his greatest difficulty; the  planet would not fit into the Copernican theory.</p>\r\n<p>Copernicus, in a book published in 1543, \"De Revolutionibus\"  had offered an alternative to Ptolemy\'s \"Almagest.\" Copernicus analyzed a  vast amount of data including that of Ptolemy. And, as he reconsidered  the planetary motions, and their relationship with the sun, his  assertion was that the sun should be the central point of the system  rather than the earth. He removed the five planetary epicycles of  Ptolemy and replaced them with a great number of small epicycles in  order to make accurate planetary predictions. Although he was steeped in  mediaeval tradition; such as, the uniform circular motion of the  planets, and the stars being surrounded by the planets on a crystal  sphere, many of his ideas were historically significant. He believed  that the earth\'s rotation (an exemplary thought to be sure) produced the  daily motion of the stars. He thought the earth was just another planet  revolving around the Sun.</p>\r\n<p>Kepler couldn\'t be satisfied with a mystical interpretation  of what he observed. He instead looked for a relationship that was  causal. With all the data he possessed, he set out to test the  Copernician theory of the heliocentric solar system. There was always  error in circles and epicycles, but Kepler found that the paths of the  planets could be described by an elliptical movement. He recognized that  the orbit of Mars could be represented as an ellipse with the sun at  one focal point and an unoccupied point in space at the other. His first  law of planetary motion was written as such: \"Each planet moves around  the sun in an orbit whose shape is that of an ellipse, with the sun at  one focal point.\" His second law of planetary motion, which explained  his observance of Mars speeding up when approaching the sun and slowing  while moving away from the sun, was this: \"A straight line joining the  planet and the sun sweeps out equal areas in space in equal intervals of  time.\" His third law: \"The square of the period of any planet is  proportional to the cube of its semimajor axis,\" is a relationship  recognized by Kepler that each and every planet has in the length of  time required to revolve around the sun (the period of a planet) and its  average distance (the semimajor axis of its orbit) from the sun.</p>\r\n<p>The Copernican revolution lasted two hundred years; his work  caused a frenzy in the Church. Many men, Galileo being one of them, were  threatened with death or were burned at the stake in order to keep  their \"heretical beliefs\" silenced. It was the Galilean instrument (the  telescope) that brought proof that would indicate a heliocentric solar  system. The truth will out; \"De Revolutionibus\" planted a seed that  would bring a new life into the scientific community. Moreover, Kepler  played a demonstrative role in the spreading of the \"new life\"  Copernicus had so arduously labored to give.</p>\r\n<p>Exactly who it was that invented the telescope is not clear.  It may have been the Dutch spectacle maker Hans Lippershey, who combined  lenses to produce an enlarged image of a distant object. Credit for the  \"astronomical\" telescope is given to Galileo Galilei. It is thought  that Galileo heard about the work of Hans Lappershey. He set out to  produce a telescope without knowing its ramifications.</p>\r\n<p>By whatever means the telescope came into being, the results  of its work became the vanguard of astronomical thought in the  seventeenth century. The significance of the Galilean telescope was that  it proved there to be centers of revolution other than the earth  itself, and revealed stars that could not be seen with the naked eye.  The discovery of the moons of Jupiter helped to strengthen the  Copernican theory that the earth was not the center of the universe.  Galileo was able to observe Venus through all its phases. Under the  Ptolemaic system Venus couldn\'t move to the opposite side of the sun  from the earth. The earth could never see its fully illuminated face.  The truth is, the Ptolemaic system required Venus to appear in a \"new\"  phase or as a crescent. This was absolute proof that the system of  Ptolemais had met its demise and the heliocentric theory of Copernicus  would live.</p>\r\n<p>There is a principle which is a bar against all information,  which is proof against all arguments and which cannot fail to keep a man  in everlasting ignorance-that principle is contempt prior to  investigation.</p>\r\n<p>Herbert Spencer</p>\r\n<p>Galileo had opened an era of experimentation and invention  that would be the mainstay of the scientific endeavor. He traveled to  Rome with his newfound information. The Church leadership pronounced his  teachings heretical and required that no one should expound upon them  as representing reality. He was forced by the Inquisition to abjure his  position that the earth was not the center of the solar system. When he  asked some of his contemporaries to look through his telescope at the  heavens, and in particular the moons of Jupiter; tradition says their  response was, \"I see nothing.\" Admitting what they had seen would have  been a refutation of their dogmatic understandings. Sir Isaac Newton  must have been talking about Galileo and those of his mien when he said,  \"If I have been able to see farther than others, it is because I was  standing on the shoulders of giants.\"</p>\r\n<p>Isaac Newton, himself a giant in the world of classical  physicists, made lasting contributions in his work \"Mathematical  Principles of Natural Philosophy\" (\'Principia\'). He invented calculus,  demonstrated that white light could be separated into its various colors  by refraction, and explained the astrodynamics of gravitation. In his  explanation of the earth\'s spherical shape, Copernicus suggested there  was mutual attraction of objects. The same thing was implied by Kepler  (and other physicists) when mentioning the possibility of an inverse  square attraction between objects. None of them, however, provided proof  of this matter.</p>\r\n<p>Newton consolidated the views of his time into a general  theory of motion, which, when applied to the solar system, satisfied the  requirements of astronomy. His law of motion can be explained in this  manner: were you to place an object (such as a clothes hanger) on a  string and tie the string between the legs of a stool, then move the  hanger along the string, the hanger would be moving in a straight line  in relation to the stool. Now, pick up the stool and move the hanger  while walking with the stool; the hanger\'s fixed frame of reference has  been changed. The hanger now has a different motion relative to its  rigid reference frame-which could be the deck, the walls, or even the  house-boat you are on. This reference frame is called a \"base,\"  oftentimes referred to as a \"Galilean base.\" Ultimately this base is  attached to the center of mass of the solar system. It is without  rotation relative to the fixed stars. Newton referred to any movement  relative to a Galilean base as \"absolute motion.\"<br /> <br /> Newton was sure that if there was truly an attractive force in  the heavens it could be mathematically defined. The distance of the moon  from the earth, he thought, was sixty times the earth\'s radius. It  would follow then that the attractive force of the earth on the moon  would be one-sixtieth its strength-given the distance. However, Kepler\'s  third law stated that with any two planets the ratio of the cubes of  their semimajor axes is equal to the ratio of the squares of their  periods. Because of Kepler\'s third law, Newton was able to deduce that  the attraction of the earth on the moon would diminish inversely as the  square of the distance, which meant the attraction ratio of the earth on  the moon would be as little as one-three thousand six hundredth.<br /> The concept of mutual attraction between objects came to the  fore in the mind of Newton. He must have been thinking of the apple  falling to the earth and that the same force would probably be tugging  at the moon. Assuming that the natural motion of an object would be a  straight line, and that a circular motion would be caused by the  influence of a mutual attractive force, Newton was able to generalize  Galileo\'s thoughts on inertia. Newton\'s first law stated: \"Every body  preserves in its state of rest, or of uniform motion in a right  (straight) line, unless it is compelled to change that state by force  impressed thereon.\" His genius was in his ability to synthesize.</p>\r\n<p>An object (such as an apple) would fall with an acceleration  rate of thirty-two feet per second every second. The first second  therefore, would yield a distance of sixteen feet. When Newton divided  three thousand six hundred into the sixteen feet the moon would be  falling in its first second, he came up with fifty-three thousandths of  an inch and the classical dynamic in the guise of the law of gravitation  was born.</p>\r\n<p>Newton had proven that there was a mutual attraction between  celestial bodies. His equation for this force would be thus: Gravitation  equals the product of the masses divided by the square of the distance.</p>\r\n<p>Newton\'s dynamic \"Law of Universal Gravitation\" proved its  validity for all movement in the sky. It can calculate the movement of  meteors, binary stars, and comets. It can explain the weight of stars,  deviations in the orbits of the planets resulting from the influence of  other planets and moons, and it can predict the position, mass, and  orbit of unknown planets. Moreover, every tiny particle of mass has  graviton (hypothetical particle-a postulated energy exchange to make  gravitational interaction consistent with quantum theory) and Newton\'s  formula is applicable to it.</p>\r\n<p>Together, Galileo\'s \"Dialogues\" and Newton\'s \"Principia\"  brought forth a new view of the world. This \"World-Machine\" displaced  the spheres of Aristotle with a mathematical dynamic that would require a  capitulation by the scientific and theological communities.</p>\r\n<p>Aristotle would explain that objects fall because each thing  seeks its own natural resting-place. Heavy objects would fall downward  (the bigger the more rapidly) and light things such as fire had a  tendency to find their rest in an upwardly direction. The followers of  Aristotle were looking for reason-the purpose (teleology) of God. They  had a deductive process of thinking. Starting from a general principle,  they would reason to the particulars. These particulars were not always  in accordance with observation. Galileo and Newton, on the other hand,  set aside all deductive reason and engaged in the process of induction,  starting from a set of particular observations to find a general  dynamic.</p>\r\n<p>The medieval picture of the universe, a mergence of  Aristotelian cosmology and Christian theology, which was based on the  laws of morality rather than the laws of mechanics, found its own  Aristotelian place of rest. Ian G. Barbour says, \"At times man\'s  spiritual destiny seemed to so outweigh temporal relationships that the  world was treated as a great allegory whose essential secret was its  religious meaning, not its operation or its causes.\"</p>\r\n</div>\r\n</blockquote>','',1,4,0,35,'2010-04-02 18:31:48',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-04-02 18:31:48','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,2,'','',0,627,'robots=\nauthor='),(55,'ExNihilo','exnihilo','','<h2 style=\"text-align: center;\"><img src=\"images/stories/header.jpg\" border=\"0\" width=\"560\" height=\"123\" /></h2>\r\n<h2 style=\"text-align: center;\">Chapter Five</h2>\r\n<h3>ExNihilo</h3>\r\n<div>\r\n<p>\"Let there be light: and there was light.\"-GOD</p>\r\n<p>From ancient times, thoughts concerning the origin of the  world have been associated with a deity who made the light and  subsequently the heavens, the earth, and man. The God who separated  light from darkness has been considered a life giving force, the first  cause, and because of this act of love, the foundation and the very  existence of man.</p>\r\n<p>The new theories of the origin of the world, as seen by  modern cosmogony seem perplexing to the human mind. Through the  centuries, as mankind gradually accumulated knowledge about the various  observed phenomena taking place in the world system, a scientific method  began to take shape, concluding that the way to the discovery of a  first cause would be through historical data — hence, the theory of the  big bang and a new era.</p>\r\n<p>There have been many from the Church and the physical  disciplines that have characterized the scientific era by searching out  an understanding of the origin of the world\'s emergence totally from  natural causes, e.g., a reasonably complete and consistent theory of  planetary formation. This comes through knowledge of the workings of our  solar system and the progress of observational astronomy. However,  though the universal picture has been broadened, difficulties remain —  explaining the origin and evolution of the great galactic families of  stars is one. Understanding the nature, size, and shape of one galaxy  and then comparing it to another may suggest to us which one is older,  but alas, everything is relative. How old is the oldest?</p>\r\n<p>There is no scientific absolute that can explain a cause. The  big bang is a belief based on hypothetical circumstances. It is thought  to have resulted from a continuous evolutionary process that started in  a highly compressed homogeneous material a few billion years ago. I ask  myself, where were you when that happened? Then I say to myself, it  must be hypothetical.</p>\r\n<p>Some scientists believe the same circumstances require a  hypothesis that says the existing universe has been somewhat the same  throughout eternity. The \"steady-state” universe theory claims the  continuous creation of matter in intergalactic space.</p>\r\n<p>Cosmogony is generally left in the hands of the theologians.  It concerns the creation, origination, or manner of coming into being of  the world or universe. More specifically, a biblical cosmogony that is  generally accepted in the monotheistic Protestant tradition is: the  doctrine of the origin of the universal cosmic order by the creative  power of God. Ex nihilo is a cosmogony that means the universe was  created out of nothing, or, — not from previously existing material. In  order though, to introduce my thoughts on biblical cosmogony, I find it  necessary to insert a short piece I wrote some time ago.</p>\r\n<p>Creation out of nothing — ex nihilo — infers there is no God.  Can there be something from nothing? It is \"nothing\" that does not  exist, for God is all in all. All in all connotes existence — God  exists!</p>\r\n<p>If we separate the physical from the spiritual, without  regard to a continuum, then that which is physical would come from  nothing — ex nihilo — and the bodily ascension of Jesus Christ would be  without reason. If however, we consider there is one spiritual entity,  the \"all in all,\" and we come from and reside within that spirit which  exists in its eternal state, the Light, then the reason is that we have  come from something. God created us means we come from something. God is  spirit. God is something. \"Nothing\" then, would not exist. And, it  would be reasonable for the physical body of Jesus to make the change  and ascend into Glory.</p>\r\n<p>Let\'s reason together. If we put \"nothing\" in a box over  here, and put \"something\" in a box over there, a duality exists. If God  is \"all, and in all\" there is no duality — there is God and that which  is created — the singularity of one within the other.</p>\r\n<p>Because we choose a linear historical frame of reference for  our academic pursuits, in the deep recesses of our mental and spiritual  understandings we can only see darkness. The great authoritative  kabbalist Nahmanides in his commentary to the Torah of creatio ex nihilo  suggested that in its literal sense it is the free creation of the  primeval matter from which everything was made. However, he implied by  his kabbalistic allusion in his commentary to Genesis 1, that the true  mystical meaning of the text is the emergence of all things from the  absolute nothingness of God. Essentially, the kabbalists thought that  this nothingness is the barrier confronting the human intellectual  faculty when it reaches the limits of its capacity. There is a realm  they think, that no created being can intellectually comprehend, which  can only be described as \"nothingness.\" Most Christian denominations  agree to creatio ex nihilo, believing that the only source of the  doctrine of creation out of nothing is found in the Bible. However, this  theological cosmogony creatio ex nihilo is in line with most scientific  thought. The prevailing cosmological and astronomical proofs of this  line of reason, i.e. their singularity theorems, suggest that at some  definite time in the past the universe was compressed to a state of zero  size and infinite density, called a singularity. As the doctrine  creatio ex nihilo leads us to a state of nothingness, so does the  written mathematical laws of physics break down into a place of  nothingness at a singularity — darkness is to much for the human mind or  mathematics to comprehend. It seems that history can only lead us to  ... .</p>\r\n<p>According to the Bible, I find it difficult to understand the  universe was created ex nihilo (out of nothing) or from chaos (pre —  existing matter). Moreover, I do not believe in a solid — state theory  (that the universe has always been in existence).</p>\r\n<p>What I know according to the Bible is: Jesus is the  beginning.</p>\r\n<p>Re 1:8 I am Alpha and Omega, the beginning and the ending,  saith the Lord, which is, and which was, and which is to come, the  Almighty.</p>\r\n<p>God formed the light and created the darkness.</p>\r\n<p>Isa 45:7 I form the light, and create darkness: I make peace,  and create evil: I the LORD do all these things.</p>\r\n<p>The created darkness was there prior to God forming the  light.</p>\r\n<p>Gen 1:1 In the beginning God created the heaven and the  earth.</p>\r\n<p>2 And the earth was without form, and void; and darkness was  upon the face of the deep. And the Spirit of God moved upon the face of  the waters.</p>\r\n<p>3 And God said, Let there be light: and there was light.</p>\r\n<p>Jesus is the light of the world (the Greek word for world is  kosmos).</p>\r\n<p>Joh 8:12 Then spake Jesus again unto them, saying, I am the  light of the world: he that followeth me shall not walk in darkness, but  shall have the light of life.</p>\r\n<p>Jesus is the only begotten of the Father</p>\r\n<p>Joh 1:14 And the Word was made flesh, and dwelt among us,  (and we beheld his glory, the glory as of the only begotten of the  Father,) full of grace and truth.</p>\r\n<p>Jesus is seen by man as a visable light</p>\r\n<p>Acts 26:13 At midday, O king, I saw in the way a light from  heaven, above the brightness of the sun, shining round about me and them  which journeyed with me.</p>\r\n<p>14 And when we were all fallen to the earth, I heard a voice  speaking unto me, and saying in the Hebrew tongue, Saul, Saul, why  persecutest thou me? it is hard for thee to kick against the pricks.</p>\r\n<p>15 And I said, Who art thou, Lord? And he said, I am Jesus  whom thou persecutest.</p>\r\n<p>All of creation was and is within Jesus</p>\r\n<p>Eph 4:9 (Now that he ascended, what is it but that he also  descended first into the lower parts of the earth?</p>\r\n<p>Eph 4:10 He that descended is the same also that ascended up  far above all heavens, that he might fill all things.)</p>\r\n<p>In the end, God and the lamb are the temple and that temple  is light</p>\r\n<p>Rev 21:22 And I saw no temple therein: for the Lord God  Almighty and the Lamb are the temple of it.</p>\r\n<p>23 And the city had no need of the sun, neither of the moon,  to shine in it: for the glory of God did lighten it, and the Lamb is the  light thereof.</p>\r\n<p>24 And the nations of them which are saved shall walk in the  light of it: and the kings of the earth do bring their glory and honour  into it.</p>\r\n<p>25 And the gates of it shall not be shut at all by day: for  there shall be no night there.</p>\r\n<p>26 And they shall bring the glory and honour of the nations  into it.</p>\r\n<p>27 And there shall in no wise enter into it any thing that  defileth, neither whatsoever worketh abomination, or maketh a lie: but  they which are written in the Lamb’s book of life.</p>\r\n<p>All of the previous verses tell me Gen 1:1, \"In the beginning  ...\", means everything was created within the begotton light of the  world. The same verses tell me all who believe are now and will be  within Christ Jesus the light of the world forever. For me to understand  this, means that in Him there is no darkness. There is no recourse but  to tell everyone on the planet.</p>\r\n<p>According to the Bible, I do not believe the universe was  created ex nihilo (out of nothing — God is substantive) or from chaos  (pre — existing matter). Moreover, I do not believe in a solid-state  theory (that the universe has always been in existance).</p>\r\n<p>I believe that out of and within God and Christ was the  heavens and the earth created.</p>\r\n<p>I cannot understand why we argue from extra — Biblical  asumption that comes to us via the doctrine of man. There is no proof in  our arguments. Can we stop and argue Biblical proofs? What does the  Bible say?</p>\r\n<p>Please regard first word in verse 22 below? — the word is  \"In\" (Greek \"en\" = inside, within). The whole of the creation of God is  \"in\" Christ who is the first and the last the only begotten of God. We  must believe for the following to be true.</p>\r\n<p>Eph 2:18 For through him we both have access by one Spirit  unto the Father.</p>\r\n<p>19 Now therefore ye are no more strangers and foreigners, but  fellowcitizens with the saints, and of the household of God;</p>\r\n<p>20 And are built upon the foundation of the apostles and  prophets, Jesus Christ himself being the chief corner stone;</p>\r\n<p>21 In whom all the building fitly framed together groweth  unto an holy temple in the Lord:</p>\r\n<p>22 In whom ye also are builded together for an habitation of  God through the Spirit.</p>\r\n<p>Bible scholars have chosen an historical critical paradigm to  decipher Biblical texts. In my opinion this paradigm was given its  lofty place in Biblical exegesis because of our need to etymologize and  Bishop Usshers competitive efforts with astronomical calculations of his  time so he could prove the day and the hour of creation. At that time,  astromomy was leaving astrology behind because of our methods of  tracking the stars and figuring out from where they came. It is the  historical paradigm that will seemingly refute my understanding in every  way shape and form. I believe it is the history of Biblical words that  enables us to decipher the true contextual meaning of the Bible. I have  read many extra-biblical histories though, and I find most are based in  part on assumption. Show me an extra-biblical history and I will show  you one by another author that is different.</p>\r\n<p>The coming Kingdom is not an assumption — it is based on  faith. When I see the acts of faith in and by the Christian community, I  see the evidence of things not seen. I see the kingdom coming. Our  faith comes not from looking back as did Lot\'s wife, but from looking  toward what is hoped for by the believing community.</p>\r\n<p>I believe eternity is the true Biblical paradigm. I believe  that eternal concepts are omni in nature as opposed to a lineal  historical frame. I believe God, the Son and the Holy Spirit are  omni-present in relation to the creation. I believe there is no duality.  I believe all things created are within God and the Son. When I look at  time, I see the earth rotating every 24 hours and I see the earth going  round the sun every 364 1/4 days and then I say to myself (I got this  from Einstein) if I were to travel out into space until I couldn\'t see  the earth — what time would it be? Then I come back to my senses and  realize that God made the lights in the firmament for seasons and days  and years. All in all, I cannot see all of this in a linear time frame.</p>\r\n<p>The word \"be reshyith\" is translated as: In the Beginning.  The Septuagint renders the first words \"en arche\" as does the quote you  gave in John 1:1. Rav Berg, says the Creator chose the letter B (Bet,  Bayt) since it is the first letter of the word blessing. Bayt is the  second letter of the Hebrew alphabet and is the archtype of all  \'containers\', the physical means by which Aleph can cause animation of  life. Aleph is all that is and all that is not, that which cannot be  conceived. Aleph must have a \'receptacle\' in order for the abstract to  come into existence.</p>\r\n<p>I didn\'t know about Rav Berg until recently. I have always  believed the first words in Genesis and John meant \"In\" within the  beginning Christ Jesus because he is all and in all save for the father.</p>\r\n<p>The historical paradigm renders the first words (in reality)  \"at\" the beginning. When I read 1 John 4:2 history requires the word  \"in\" to be \"has\" come in the flesh. The truth is that Jesus is in the  flesh of the believer. Jesus is the resurrection and we are the body of  Christ. So, \"Every spirit that confesseth that Jesus Christ is come in  the flesh is of God\". In context John is not speaking from an historical  frame.</p>\r\n<p>Looking into history will render assumption — looking at  eternity will render God.</p>\r\n<p><strong>I would like to give to you, <em>in part,</em></strong><strong> how I  understand that the heavens declare the glory of God</strong><strong><em>. </em></strong></p>\r\n<p>When we look into the darkness of the night sky we see many  stars. Each star that we see shines on us. Because we can see a star is  proof that the star shines on us. Each star shines on every other star  unless there is another star or obstruction in the way. Moreover, every  star shinning on every other star creates the structure of the heavens.</p>\r\n<p>It is said that when we create a telescope large enough, and  we look out into the heavens, we will see only luminescent light — in  every spot we look with this great telescope there will be a shinning  star. This is called the optical horizon.</p>\r\n<p>Because we are on the earth and are outside of the sun, we  are obstructed from seeing the stars on the other side of the sun that  would shine on us, however, through our sun we can partake of the life  of the other stars that are shining on it. Still, being on the earth,  during the day, we are obstructed from the night sky and the stars that  are there and in the night we are obstructed from the sun and those  stars on the other side of the sun. Were we inside of the sun, and we  looked out with our great telescope, all we would be able to see would  be light — there would be no darkness.</p>\r\n<p>Be as it may, we the body of Christ, like the stars in the  heavens, are luminaries through the darkness of the ways of world. Each  of those who are not a believer is an obstruction in our heavenly  construct on the earth. The only way to a perfect completion of our  heavenly construct, the temple of God here in earth, is to give to those  who are without life. And, that life is our Lord the “sun of  righteousness” — Jesus the Son of God. Through Jesus, we who believe can  partake of the life and light of the Father who is the creator of the  heavens and the earth — in him there is no obstruction.</p>\r\n<p>Thank you Jesus.</p>\r\n</div>','',1,4,0,35,'2010-04-02 18:35:50',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-04-02 18:35:50','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,1,'','',0,535,'robots=\nauthor='),(56,'Lighthouse Two','lighthouse-2','','<p>In keeping with an earlier writing, I would invite you once again to think of yourself as a lighthouse. The Father is the builder, Jesus is the Light, and the Holy Spirit is the keeper.<br /><br />The Holy Spirit’s job is to glorify Jesus and to work in the believer’s life to bring him or her into conformity with the life of Christ. When we invite the Holy Spirit to live in our heart we serve Jesus in several ways.<br /><br />1.  We are vessels. I believe that the collective body of Christ is the temple of the Holy Spirit. I Cor. 6:19-20 says,  “What? know ye not that your body is the temple of the Holy Ghost which is in you, which ye have of God, and ye are not your own? For ye are bought with a price: therefore glorify God in your body, and in your spirit, which are God\'s.”<br />2. We are to show the way to others, just as the lighthouse does, by shining our light. Jesus said, “I am the way, the truth, and the life: no man cometh unto the Father, but by me.” John 14:6<br />3. Another of our functions is to warn others of impending danger.<br />“Then he said, I pray thee therefore, father, that thou wouldest send him to my father\'s house: For I have five brethren; that he may testify unto them, lest they also come into this place of torment.” Luke 16:27-28 All scripture contains warnings to those who chose to go their own way, apart from the direction of our loving God.<br />4. We are to serve Jesus in any capacity that he asks of us. Joshua tells us “And if it seem evil unto you to serve the LORD, choose you this day whom ye will serve; whether the gods which your fathers served that were on the other side of the flood, or the gods of the Amorites, in whose land ye dwell: but as for me and my house, we will serve the LORD.” Josh. 24:15<br /><br />Though lighthouses of today are run electronically, in the old days the keeper was vital to the light. It could not shine if he was not there to light it. In his absence the lighthouse was subject to vandalism and ruin by weather and circumstances. So it is with us. We cannot be vessels or witnesses, we cannot warn others, we cannot serve Jesus if we fail to ask the Holy Spirit to inhabit and direct our lives. When the Spirit of Jesus lives in us, then we fulfill our mission on earth.</p>','',1,6,0,36,'2010-04-02 19:11:37',125,'','2010-06-27 03:08:16',62,0,'0000-00-00 00:00:00','2010-04-02 19:11:37','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',3,0,37,'','',0,615,'robots=\nauthor='),(57,'Lighthouse Three','lighthouse-three','','<h2>Many comparisons can be made between lighthouses and their function, and our spiritual lives. I invite you to think about another analogy.</h2>\r\n<p><br />Although most lighthouses now are electrified, lights of old were usually oil lamps set inside the jewel, which then magnified and reflected the flame.  A variety of causes could dim the light. The oil lamp would build up a layer of soot and smoke from the inside. The windows could be dirtied with bird droppings and salt-water corrosion on the outside. The keeper gave his attention to keeping the jewel polished and the windows clean and clear.<br /><br />The Holy Spirit, our “lighthouse keeper”, does the same for us by bringing God’s word to our remembrance. Sin, or darkness, can dim and even put out our light. 1 John 1:5 says, “This then is the message which we have heard of him, and declare unto you, that God is light, and in him is no darkness at all.” <br /><br />Our lights will be dimmed with corrosion if we fail to study God’s word—if we are inattentive or slothful about learning His will. Prayer and fellowship with other believers will help to keep our lights clean and polished. Look out for the soot and smoke of unbelief, pride, idolatry, discouragement, discontent.  Unforgiveness will bring on total darkness. The Bible says that if we don’t forgive those who offend us, God cannot forgive us our sins. We will be eternally dirty! <br /><br />The Psalmist prayed,  “Create in me a clean heart, O God; and renew a right spirit within me. Wash me thoroughly from mine iniquity, and cleanse me from my sin. Purge me with hyssop, and I shall be clean: wash me, and I shall be whiter than snow.” (Ps. 51:10, 2, 7.) <br /><br />Jesus words to us are, “Let your light so shine before men, that they may see your good works, and glorify your Father which is in heaven.”  Matt. 5:16<br />So be a lighthouse on this earth!</p>','',1,6,0,36,'2010-06-27 00:04:04',125,'','2010-06-27 03:10:15',62,0,'0000-00-00 00:00:00','2010-06-27 00:04:04','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',3,0,36,'','',0,417,'robots=\nauthor='),(58,'Lighthouse Four','lighthouse-four','','<p>The construction and stability of various lighthouses closely parallels the spiritual lives of God’s people. <br /><br />The Umpqua Lighthouse in Oregon was originally built on the sandy shore of the Umpqua River where it flowed into the sea. The ground eroded after some time and the lighthouse fell into the surf! It was rebuilt on solid rock higher above the ocean where it stands secure today. In Matthew 7:24-27 Jesus says, “Therefore whosoever heareth these sayings of mine, and doeth them, I will liken him unto a wise man, which built his house upon a rock: And the rain descended, and the floods came, and the winds blew, and beat upon that house; and it fell not: for it was founded upon a rock. And every one that heareth these sayings of mine, and doeth them not, shall be likened unto a foolish man, which built his house upon the sand: And the rain descended, and the floods came, and the winds blew, and beat upon that house; and it fell: and great was the fall of it.” The “Rock” is Jesus and faith in his word.<br /><br />The enemies of the disciple of Christ are many. The lighthouse on Alcatraz Island in the San Francisco Bay is inspiring. The first lighthouse established on the west coast, it was severely damaged by the 1906 earthquake. When a penitentiary was built on the island, the light had to be rebuilt much higher to shine out above its prison. In the 1960’s, during an Indian takeover of the island, the light was extinguished. The siege was ended, the light relit, and it shines brightly today. <br /><br />Many Christians, in defense of their faith, have overcome amazing obstacles. The Tillamook Lighthouse is an example to us. It is set apart on a large rock some distance from the shoreline. During construction a worker was drowned, supplies were constantly lost; builders were cold, wet, hungry, and isolated. During high seas, rocks would pummel the building, making holes in the roof. The jewel was chipped, railings knocked down, keepers injured; yet this light burned faithfully for 77 years. Paul encourages us in II Cor. 4:8-10, “We are troubled on every side, yet not distressed; we are perplexed, but not in despair; Persecuted, but not forsaken; cast down, but not destroyed; Always bearing about in the body the dying of the Lord Jesus, that the life also of Jesus might be made manifest in our body.”  <br /><br />I want to share with you a wonderful promise that God makes to all who are facing the trial of their faith in Jesus. It is Romans 8:37-39. “Nay, in all these things we are more than conquerors through him that loved us. For I am persuaded, that neither death, nor life, nor angels, nor principalities, nor powers, nor things present, nor things to come, Nor height, nor depth, nor any other creature, shall be able to separate us from the love of God, which is in Christ Jesus our Lord.”  Let your light shine!</p>','',1,6,0,36,'2010-06-27 00:12:17',125,'','2010-06-27 03:07:46',62,0,'0000-00-00 00:00:00','2010-06-27 00:12:17','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',2,0,35,'','',0,372,'robots=\nauthor='),(59,'Charity','charity','','<p>The word of God is alive and active! When I maintain my relationship with that Word by continually reading it and letting it speak to me, sharing it with other believers, I am given new understandings. The Lord has given me a fresh insight on 1 Corinthians 13, the “love” chapter. I encourage you to read it with me.<br /><br />“Charity suffereth long, and is kind; charity envieth not; charity vaunteth not itself, is not puffed up, doth not behave itself unseemly, seeketh not her own, is not easily provoked, thinketh no evil; beareth all things, believeth all things, hopeth all things, endureth all things. Charity never faileth…”<br /><br />Charity is the perfect love of God, His people loving others the way He loves. This description of charity simply means absence of “self”. Read each phrase and consider its meaning. Think about how you would behave in your relationships if you were not seeking your own rights. Think about how others would be drawn to God if they saw only the love of Jesus expressed in your concern for their betterment. Only when we forget “what about me” and take on God’s way of loving can we attain these attributes.<br /><br />This isn’t easy. Paul said, “I die daily”. We must, too. The natural man can have all knowledge, all faith, and be devoid of charity. The man who has forgotten himself and embraced the love of God in his heart and in his actions is the man who sees not through a glass darkly, but face to face. He is the one who has left off childish things and has become a man. He is the person who no longer sees in part, but to whom the perfect has come. The “perfect” is the pure and selfless love of God, expressed through Jesus.<br /><br />“And now abideth faith, hope, charity, these three; but the greatest of these is charity.”</p>','',1,6,0,36,'2010-06-27 00:25:06',125,'','2010-06-27 03:07:25',62,0,'0000-00-00 00:00:00','2010-06-27 00:25:06','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',2,0,34,'','',0,438,'robots=\nauthor='),(60,'Comfort','comfort','','<p>\"For the LORD shall comfort Zion: he will comfort all her waste places; and he will make her wilderness like Eden, and her desert like the garden of the LORD; joy and gladness shall be found therein, thanksgiving, and the voice of melody.\" Isaiah 51:3<br /> <br />Our Lord is incredibly good and gracious!  I recently came across this verse and realized that I could substitute my own name for the word Zion. \"For the Lord shall comfort Ann.”  For many years I felt that my life was like a waste place and a wilderness with the deepest desires of my heart going unanswered. I believed God was faithful but his response to my cry seemed like a carrot on a stick being forever held in front of me and never grasped. I drew encouragement from the Old Testament story of Joseph, (Gen. 30 through 50) who spent many years waiting for God to fulfill His word. He never gave up his trust in God no matter how adverse his circumstances, and at the end he was able to say, \"But as for you, ye thought evil against me; but God meant it unto good, to bring to pass, as it is this day, to save much people alive.\" Gen. 50:20<br /><br />For me, when it seemed I had nothing left, when life as I had known it ended, when all my dreams seemed dashed, the Lord came and brought comfort to my waste places. He brought me out of my personal wilderness into the Promised Land. He made my life grow and blossom like a garden. He filled me with joy and gladness and thanksgiving by giving me a life partner who shared my desire to minister to others in teaching and in hospitality.<br /><br />How can I ever thank Him for His faithfulness and goodness to me? One way is to tell everyone about Him. He is the great and awesome God who always keeps His promises to His children! \"Now unto him that is able to do exceeding abundantly above all that we ask or think, according to the power that worketh in us, unto him be glory in the church by Christ Jesus throughout all ages, world without end. Amen.\" Eph. 3:20-21<br /><br /></p>','',1,6,0,36,'2010-06-27 00:26:07',125,'','2010-06-27 03:07:10',62,0,'0000-00-00 00:00:00','2010-06-27 00:26:07','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',2,0,33,'','',0,423,'robots=\nauthor='),(61,'For Mothers','for-mothers','','<p>This is a letter for mothers, not every mother, but some who have faced a particular sort of agony for their children. Do you have a son who, in his teenage years or in adulthood, left home, responsibility, and the conventional way of life for a life on the tracks, perhaps as a drunk or drug addict? Did your son live under bridges, along the river, becoming a dumpster diver, frequenting homeless shelters? Did he suffer scorn and disgust? <br /><br />I have met your son! Years ago he came to our homeless shelter and decided to stay and give his life to Jesus. As I sit in Bible study with him I see that he is closer to Jesus than most in the outside world because he knows where he has come from and it has cost him everything to get where he is now. Your son knows whom he is and that he comes to God with nothing but the ravages and ruin of sin. I am deeply humbled by his humility.<br /><br />I have talked with your son as a friend. He listened to my struggles and heartaches and he sobbed aloud with me. He begged me to love the one I was hurting. I knelt at his feet and he held my hand and I knew that he felt the pain of what I had done as though it were his own. I stood in awe at the way Jesus had spoken to me. Your son was Jesus to me!<br /><br />Be encouraged, mother. See through the eyes of God. Know that those who serve your son are serving Jesus. But know that the greatest wonder of all is that your son, in the likeness of Jesus, serves those whom God sends to him.<br />Surely there is no greater joy for a mother!</p>','',1,6,0,36,'2010-06-27 00:27:56',125,'','2010-06-27 03:06:20',62,0,'0000-00-00 00:00:00','2010-06-27 00:27:56','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',2,0,30,'','',0,451,'robots=\nauthor='),(62,'Deny Christ?','deny-christ','','<p>Peter swore that he was ready to go to prison or to death for his Lord Jesus. Why then did Jesus say to Peter, “I tell thee, Peter, the cock shall not crow this day, before that thou shalt thrice deny that thou knowest me?” Luke 22:33-34 Most of us who love Jesus would say the same words Peter said, and many Christians throughout history have lost their lives for their faith. Is it possible for us to deny Jesus while at the same time vowing our faithfulness to him?<br /><br />One day in my reading I saw the Luke passage clearly linked up with Matthew 25. Verse 40 says, “And the King shall answer and say unto them, Verily I say unto you, Inasmuch as ye have done it unto one of the least of these my brethren, ye have done it unto me.”<br /><br />The Jesus living in me reaches out to the Jesus in the homeless, naked, hungry, imprisoned, thirsty, sick, and the stranger. These destitute people may be believers or they may not be. It doesn’t matter — we meet their needs anyway, because Jesus did.  I may speak about these things all I want. I may hope that someone else will do it.  But unless I myself actually do the reaching out and helping, my words are empty, and I have denied Jesus.<br /><br />We need not be afraid for ourselves as Peter was, of what it might cost us financially or socially or physically. When we know we are crucified with Christ, then it is He who lives in us and He who supplies everything we need to do the work the Father asks of us. He takes care of us and gives us incredible joy as we reach out in obedience. His words are true!</p>','',1,6,0,36,'2010-06-27 03:00:18',125,'','2010-06-27 03:06:52',62,0,'0000-00-00 00:00:00','2010-06-27 03:00:18','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',2,0,31,'','',0,427,'robots=\nauthor='),(63,'God Answers','god-answers','','<p>Jesus answered and said unto them, “Verily I say unto you, If ye have faith, and doubt not, ye shall not only do this which is done to the fig tree, but also if ye shall say unto this mountain, Be thou removed, and be thou cast into the sea; it shall be done. And all things, whatsoever ye shall ask in prayer, believing, ye shall receive.” Matt. 21:21-22<br /><br />Is this really true? Have you prayed and not seen the answer?  The Lord has been reminding me lately that He does indeed answer every prayer. His ways and His timing we don’t always understand. We can’t even imagine the wondrous way He moves in our lives and in the lives of everyone else who is involved in the answer to our prayer. Sometimes it takes years for the answer to our heart’s cry to come forth—but I can tell you from my own experience that He does “exceeding abundantly above all that we ask or think, according to the power that worketh in us...” Eph. 3:20.<br /><br />There is an important condition to having the answer to our prayers.  We must have faith and we must not doubt. To me that means putting my faith into action, believing everything God says and being obedient to His word. If I do that, then I want only His will, nothing more, nothing less, nothing else. I relinquish my own will to Him, dying to myself, so that He can do whatever He wants with my prayer request and me. I give over into His hands the person or the cause I am praying for, not binding them with my own ideas about how God should work. Then I rest and wait. “Thou wilt keep him in perfect peace, whose mind is stayed on thee: because he trusteth in thee.” Is. 26:3<br /><br />In my hardheaded, stiff-necked way, all this has taken me years to truly grasp. I’m still learning. My prayer for you, for all of us, is that we would trust God early, love Him always, and praise Him at every moment for all His wondrous works!</p>','',1,6,0,36,'2010-06-27 03:02:18',125,'','2010-06-27 03:06:37',62,0,'0000-00-00 00:00:00','2010-06-27 03:02:18','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',2,0,32,'','',0,418,'robots=\nauthor='),(64,'Giving','giving','','<p>An ancestor of mine has recently given me a treasure. While looking through an ancient family Bible, copyright 1851, I found a tiny, yellowed, brittle newspaper clipping of this poem:<br /><br /><strong>Giving Again</strong><br /><br />Giving is living, the angels said.<br />Go feed to the hungry sweet charity’s bread;<br />And must I keep giving and giving again?<br />My selfish and querulous answer ran.<br />“Oh no,” said the angel, piercing me through.<br />“Just give till the Master stops giving to you.”<br /><br />Seldom have I seen such a powerful statement. The answer is obvious–God never stops giving to us, even when we don’t believe in Him or push Him to the background of our lives. How few of us can measure up to that kind of love.<br /><br />I know two men at the Hospitality House who come as close as anyone I’ve ever known to the kind of giving that is like the Master’s. Jimmy Gaston is the driver for the House and Joe Chastain is his right hand man. The two are also best friends. They spend a lot of time kidding each other, making everyone else laugh, too.<br /><br />However, Jimmy and Joe’s best qualities are their love for the Lord and their lives lived in service to Him. They pick up the donations from the grocery stores and from other contributors. You may have seen them on their rounds. Jimmy also gives anyone from the House a ride to or from work, to appointments, to church, to doctors. He’s always ready for his next assignment, always diligent. Jimmy gives encouragement, too; he readily talks about his relationship with Jesus and has a great listening ear. He’ll stop by the silkscreen shop almost daily just to say “God bless you”.<br /><br />Joe has a reputation for helping with just about any job that needs doing. He says he does it for the Lord. Not only does he give assistance at the House, he also helps his friends in the community with chores around their homes. His best gift is one of friendship. He frequents the silkscreen shop, sitting in on our fellowship time, just because he is our friend.<br /><br />May God bless Jimmy and Joe as richly as they have blessed all those whose lives they have touched. When you see them in town, say “Hi”. You’ll see what I mean.<br /><br />We’ll stop giving at the Hospitality House, when He stops giving to us.</p>','',1,6,0,36,'2010-06-27 03:10:23',125,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-06-27 03:10:23','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,29,'','',0,424,'robots=\nauthor='),(65,'I Shall Not Want   ','i-shall-not-want-','','<p>Most of us will agree that December can be an exhausting as well as a joyous time of year.  For me, Christmas is an added dimension to what is so far the busiest time of my life. The Lord has brought to my mind and allowed me to meditate on some special verses not usually associated with Christmas but which I need to hear. Maybe they will comfort you, too.<br /><br />The LORD is my shepherd; I shall not want. He maketh me to lie down in green pastures: he leadeth me beside the still waters. He restoreth my soul... Surely goodness and mercy shall follow me all the days of my life: and I will dwell in the house of the Lord forever. Psalm 23:1-3a, 6<br /><br />When I begin to fret and fume about not having enough time to accomplish all that needs doing, the Lord quiets me with the assurance that He is the One directing my life. I will not lack any good thing. God knows what is best for me, both on the spiritual and the physical plain. I can rest quietly in the green pastures with Him. The nourishment of His word is both satisfying and fertile. I know He has gone before me to prepare this place of rest. No harm will come to me. He provides calm, clean, clear, refreshing water for me, the water of life, His Son Jesus. All the worldly concerns that pollute and harass my soul He removes. He restores me to my rightful place in Him. <br /><br />I can go to this green pasture with its still waters anytime I please, but the best news of all is that I need never leave there!<br /><br />All of us at Threads of Light wish you a beautiful Christmas as you remember God’s love in sending Jesus for our salvation. He wants you to have peace now and forever!</p>','',1,6,0,36,'2010-06-27 03:13:05',125,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-06-27 03:13:05','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,28,'','',0,473,'robots=\nauthor='),(66,'New Year','new-year','','<p>“And this I pray, that your love may abound yet more and more in knowledge and in all judgment; That ye may approve things that are excellent; that ye may be sincere and without offense till the day of Christ; Being filled with the fruits of righteousness, which are by Jesus Christ, unto the glory and praise of God.” Philippians 1:9-11<br /><br />Do you make New Years’ resolutions? Do you want to lose weight, quit some bad habit, walk your dog more often? I’ve made some, but seldom succeeded in keeping them for long. Instead, my continuing desire and hope is to follow Jesus more closely and press on in the process of becoming conformed to His image. He alone can change me.<br /><br />The verses above made a big impression on me one holiday evening as I attended a small church in Olympia with family members. I decided to read and pray them daily.<br /><br />In my own words, “Lord, I pray that my love for You may abound more and more and that I will come to a higher and fuller knowledge of You and Your will. May I learn to have right judgment, seeing and loving others as You see and love them. Help me to prove  those things that are excellent by searching and knowing Your words so that I can approve Your excellency in others. May my love for You be sincere, not letting me be an offense either to You or to those whom I love in Your name. Fill me with the fruits of Your righteousness. These come only from Your working in me as I abide in You, Jesus, and are for the sole purpose of glorifying and praising God.”<br /><br />My prayer for those of us at the Mission, and for you, is that our resolution would be always to follow Jesus, for our lifetime and for eternity. May God bless you and give you a happy new year!</p>','',1,6,0,36,'2010-06-27 03:14:35',125,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-06-27 03:14:35','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,27,'','',0,396,'robots=\nauthor='),(67,'Mansions','mansions','','<p>“In my Father\'s house are many mansions: if it were not so, I would have told you. I go to prepare a place for you.” John 14:2<br /><br />About the time of the Apple Blossom Festival, a man named Royce came to the Mission. He was a talented ventriloquist with a little friend named Si. What a delight to hear him tell Bible stories and present the gospel of Jesus Christ to all who would listen. He had traveled by bicycle from Montana and all over the state of Washington, trusting God to provide for him. He told us about a man he met in a town near here who was concerned that he and his dummy had no place to spend the night. The comment was, ‘Well, you are homeless, aren’t you?” Royce’s reply was that he was not homeless at all. He lived in the Kingdom of heaven in the mansion prepared for him.<br /><br />What a wonderful statement! I’ve thought a lot about it since. Here are some other verses, favorites of mine. “If ye then be risen with Christ, seek those things which are above, where Christ sitteth on the right hand of God. Set your affection on things above, not on things on the earth. For ye are dead, and your life is hid with Christ in God.” Col. 3:1-3<br /><br />Before his ascension Jesus told his followers he would prepare a place for them. Could it be that when we give our heart to Jesus we enter our mansion at that time and are forever with Him? As a believer, following in Jesus’ footsteps, I know I am already in heaven with him, hidden in God! I don’t have to wait to die for it to happen! So if I am already in my mansion, I can never be homeless, no matter if I own nothing more than the clothes on my back.<br /><br />What security I have. What a sense of protection — peace and safety — to know I am in my “place.” I am surrounded by the walls of a mansion created for me by God. I will dwell there forever!</p>','',1,6,0,36,'2010-06-27 03:15:27',125,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-06-27 03:15:27','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,26,'','',0,577,'robots=\nauthor='),(68,'The Perfect Heart','the-perfect-heart','','<p>“I will behave myself wisely in a perfect way. O when wilt thou come unto me? I will walk within my house with a perfect heart.”   <br />Psalms 101:2<br /><br /> What does David’s statement mean? Is a perfect heart something we also can attain to? Is it something we can boldly declare ourselves to have, as David did?<br /><br />In 2 Chronicles 14, 15, and 16 we read the story of Asa, a king of Judah who did right in the eyes of the Lord. He set himself and his people to follow God no matter what. When the enemy came, he prayed.<br /><br />“And Asa cried unto the LORD his God, and said, LORD, it is nothing with thee to help, whether with many, or with them that have no power: help us, O LORD our God; for we rest on thee, and in thy name we go against this multitude. O LORD, thou art our God; let not man prevail against thee.” 2 Chron. 14:11<br /><br />When the land was troubled, a prophet came to Asa with these words:<br />“Be ye strong therefore, and let not your hands be weak: for your work shall be rewarded.”  2 Chron. 15:7<br /><br />In the same story we read, “For the eyes of the LORD run to and fro throughout the whole earth, to shew himself strong in the behalf of them whose heart is perfect toward him.”  2 Chron 16:9<br /><br />Does having a perfect heart imply sinlessness, or that we never make mistakes? No, God’s people were then and are now misguided and imperfect throughout their lives. “But the high places were not taken away out of Israel: nevertheless the heart of Asa was perfect all his days.”  2Chron. 15:17<br /><br />The perfect in heart believe God, follow his commandments, and trust in him for every circumstance of their lives. They seek their help from no other source but God. He is all in all! They wear the white robe of righteousness given them when they trust Christ for forgiveness of sin and for salvation to eternal life.   We can have the same confidence that David did!</p>','',1,6,0,36,'2010-06-28 20:22:14',125,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-06-28 20:22:14','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,25,'','',0,379,'robots=\nauthor='),(69,'Rescue Ministry','rescue-ministry','','<p>God has placed me in a wonderful ministry, one of blessing and fulfillment. The men at the Hospitality House have nothing or very little materially compared to the standard in this country, yet my husband and I are the constant recipients of their giving. One friend gives us love gifts of whatever abundance he has, his friendship, his acts of service. He has a true servant’s heart. Another drops by our T-shirt shop every day and encourages us with a hug and a “God bless you”. Several come in just to see what we’re doing because they believe in our ministry. Some stay to help in their special areas of expertise.<br /><br />What blesses me the most, however, is hearing the stories of the work God is doing in our friends’ hearts. When we sit around the table at meals or at Bible study we talk about how we found God (or how He found us). I am always amazed at the various ways God brings His children into the Kingdom. Many agree that coming to the Hospitality House was a turning point in their lives. Here they have found friends who care and who give support in overcoming the old lifestyle of drugs or alcohol or joblessness. Here they have heard the gospel and seen it worked out in the lives of those who serve at the Mission.<br /><br />I am convinced that the rescue ministry is the truest form of the church.  We see men brought to Jesus just as they must have been in the New Testament times, with no regard to denomination, social status, habit of dress, or life history. Those who come here are first fed, clothed, and given a bed to sleep in, and then they find out about the living Lord, the author of and the reason for the friendship and love and care they receive. For those who believe, a new life has begun!</p>','',1,6,0,36,'2010-06-28 20:24:17',125,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-06-28 20:24:17','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,24,'','',0,390,'robots=\nauthor='),(70,'ResQ','resq','','<p>We have a new little black kitty that was found at about three weeks of age abandoned and crying near our shop. We named him ResQ. It’s great fun watching him grow and learn, explore and discover. He has the run of the house and the shop now, and it’s comical to see him teasing and imitating the older cats. He plays furiously, and then he comes to me and snuggles up on my lap or against my neck and naps till he’s rejuvenated. I love it when he does that. It gives me pleasure to cuddle him.<br /><br />God has used ResQ to speak to me. When I’m exhausted, worried or fretting about something, I can’t handle it on my own. I go to my loving Father and snuggle up to His breast, in His hand, where He refreshes me. He takes away my cares and gives me rest. I know He receives great pleasure when His child does this.<br /><br />“For thus saith the Lord GOD, the Holy One of Israel; In returning and rest shall ye be saved; in quietness and in confidence shall be your strength:” (Isaiah 30:15) In my own words, this verse says to me that several times a day in the midst of my busyness I must return my thoughts to God and rest with Him awhile. It saves me from myself. I get quiet, shutting out the events and commotion that surround me. I read His words, I pray, I feel a great assurance that nothing touches me outside His will for me. I have a deep, immovable confidence in His love and care for me and for those I love and am concerned for. <br /><br />As I care for and love my kitty ResQ, so He cares for and loves us on so much deeper a level than we can comprehend. Rest in Him today and always!</p>','',1,6,0,36,'2010-06-28 20:26:09',125,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-06-28 20:26:09','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,23,'','',0,471,'robots=\nauthor='),(71,'Returning','returning','','<p>Autumn is my favorite time of year! While walking from my home to the Mission one day I felt the joy that comes with the smell of the harvest air, the beauty of the colored leaves, and the crispness of the yellows and reds and browns under my feet. My thoughts turned naturally to God. I am learning ever more completely to be dependent upon and surrendered to Him. It’s a restful place to be.  The dilemmas that come to me are not mine to solve.  As the trees shed their dying leaves, I daily shed my concerns and perplexities and return them to my Father.</p>\r\n<p>The trees teach me a wonderful lesson. Isaiah 30:15 says, “For thus saith the Lord GOD, the Holy One of Israel; In returning and rest shall ye be saved; in quietness and in confidence shall be your strength...” The meaning of the word “returning” is retirement or withdrawal. Unless the tree casts off its leaves and becomes dormant for a season it can’t produce the intended crop. Unless I cast my cares and my joys on the Lord and rest in Him, He cannot bring forth fruit in my life.</p>\r\n<p>Resting does not mean doing nothing. It means ceasing from our own works and doing only the works of God. “And the work of righteousness shall be peace; and the effect of righteousness quietness and assurance for ever.” Isaiah 32:17.</p>\r\n<p>I pray with the psalmist David, “LORD, my heart is not haughty, nor mine eyes lofty: neither do I exercise myself in great matters, or in things too high for me. Surely I have behaved and quieted  myself, as a child that is weaned of his mother: my soul is even as a weaned child.” Psalm 131:1-2</p>','',1,6,0,36,'2010-06-28 20:31:08',125,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-06-28 20:31:08','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,22,'','',0,422,'robots=\nauthor='),(72,'Right Notes ','right-notes-','','<p>Finally, brethren, whatsoever things are true, whatsoever things are honest, whatsoever things are just, whatsoever things are pure, whatsoever things are lovely, whatsoever things are of good report; if there be any virtue, and if there be any praise, think on these things. Philippians 4:8<br /><br />I study piano with another teacher, sharpening my skills and learning new repertoire, which I then pass on to my own students. At my last lesson, halfway through my piece I hit a badly discordant note and stopped playing. My teacher said, “ Don’t worry about that wrong note, just think how many right notes you played before you got there!” Right away the Holy Spirit brought to my mind a picture of my spiritual life. What do I do when I discover a fault or commit a sin? Do I let it defeat me or do I think about what God has done thus far in helping me to become more like Jesus? While practicing my piano piece I zero in on the difficult area and work on it till it’s corrected. However, before the correction is complete I go back and play the whole piece to hear all the beautiful right notes again. I do this in my relationship with Jesus, too. He wants me to let Him change me, and we work on that pretty consistently. He also constantly reassures me of His love and reminds me of the glorious plan He has for me to dwell with Him for eternity. He shows me the big picture. We must have this attitude in our relationships with others, too. We see their faults and may have to address them, but we see the talents, gifts, and Godly characteristics that are within. We love them as God loves us. <br /><br />During a time of fellowship at the T-shirt shop we were discussing a certain aspect of our growth in obedience to the Word. One friend said that even though he knows he has a long way to go to reach his goal to become more Christ like, he was encouraged when he looked back and saw how far he’s come since he’s been a Christian. His focus was on the “right notes” he’s played. That’s what I believe the verse above is telling us. Let’s not get discouraged by our ‘wrong notes” and park there. Let’s go forward and dwell on the goodness of God and His wonderful plan for our lives.</p>','',1,6,0,36,'2010-06-28 20:39:25',125,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-06-28 20:39:25','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,21,'','',0,396,'robots=\nauthor='),(73,'Schoolmaster','schoolmaster','','<p>In most of the epistles Paul wrote he went to great lengths to describe and compare the concepts of being under the law versus being saved by grace. He says the law is our teacher.<br />“Wherefore the law was our schoolmaster to bring us unto Christ, that we might be justified by faith. But after that faith is come, we are no longer under a schoolmaster.” Galatians 3:24-25<br /><br />As I sit day after day listening to and instructing my piano students I see many parallels between the art of learning to play the piano and learning to know and love God. A student may learn to play all the correct notes but until he grasps the concepts of phrasing, articulation, dynamics and expression, he will play mechanically. He will not be free to touch his own and another’s emotions and spirit. Until the teacher actually demonstrates these concepts, the student may not be aware of his lack.<br /><br />So it is in our spiritual lives. We are very often not aware of our sin until we hear it pointed out to us. Then we are free to correct it or not, as we choose. A love for music and a desire to play the piano causes the student to seek for and put into practice the tenets of musicality.  Our love for God and our desire to serve Him makes us seek after the things of God. <br /><br />Gal. 5:18 tells us, “But if ye be led of the Spirit, ye are not under the law.”  As the piano student learns the rudiments of the art he becomes able to soar above the rules and is free to express himself in his music. He has incorporated the spirit of the music into his being.  When we love God and ask Him to be Lord of our lives we obey Him because of His Spirit within us. We are no longer “under the law” but above it because we have grasped the love and the grace of God. “But the fruit of the Spirit is love, joy, peace, long-suffering, gentleness, goodness, faith, meekness, temperance: against such there is no law.” Gal. 5:22-23 Thanks be to God that He so freely and lovingly teaches us!</p>','',1,6,0,36,'2010-06-28 20:40:37',125,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-06-28 20:40:37','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,20,'','',0,469,'robots=\nauthor='),(74,'Simplicity','simplicity','','<p>What could be simpler and sweeter than a tiny baby? As I await eagerly the birth of our first grandchild I think again of the coming of our Lord in such a humble, small way – in the form of a little baby. Christians all over the world are united at this time of year in the celebration of Jesus’ birth.<br /><br />Too often, though, we are divided from one another by our differences of opinion on certain doctrinal issues. Paul addressed this problem in the Corinthian church. “Do ye look on things after the outward appearance? If any man trust to himself that he is Christ’s, let him of himself think this again, that, as he is Christ’s, even so are we Christ’s.” (2 Cor. 10:7) Later, he says, “But I fear, lest my any means, as the serpent beguiled Eve through his subtlety, so your minds should be corrupted from the simplicity that is in Christ. (2 Cor. 11:3) The serpent succeeded in casting doubt in Eve’s mind as to the goodness of God and His Word. She allowed him to divide her from God. When we Christians allow ourselves to be divided from each other by our egos and our self-righteousness, it is no less the work of the serpent.<br /> <br />The key word is ‘simplicity’. At the Rescue Mission we learn that Jesus was born in the flesh, showed us the way to live, died on the cross to free us from our sins and remove the load of guilt we carry. We know that He became poor so that we might become rich, that he became sin who knew no sin so that we might be made the righteousness of God in Him. We know he rose from the dead and lives forever with the Father, so that we can do the same when we give our lives to Him.<br /><br /> Let us all return to our beginnings in Jesus and rest there in unity with our fellow believers. A blessed Christmas to all!</p>','',1,6,0,36,'2010-06-28 20:41:46',125,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-06-28 20:41:46','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,19,'','',0,428,'robots=\nauthor='),(75,'Say So!','say-so','','<p>“Let the redeemed of the Lord say so, whom he hath redeemed from the hand of the enemy.” Psalm 107:2<br /><br />In Psalm 107 we read about the various afflictions and troubles of humanity and about how God rescues us from all these when we cry out to him. Several times during the exhortation we find the plea, “Oh that men would praise the Lord for his goodness, and for his wonderful works to the children of men!” (Verses 8,15, 21, 31.)<br /><br />Have you a story to tell about how God delivered you? Are you glad to be saved? Tell it to someone else this day. It is a joy to the heart of God when his people recognize what he has done for them. It is even more a pleasure when his children tell others, in praise and thanksgiving.<br /><br />Many have wandered in the wilderness, hungry and thirsty, desiring a place to dwell in peace and safety. Some of us are lost and lonely because of our rebellion from God. Our hearts have become burdened and weighed down. Call out to Him and He will save you from your distress. Some are in the prison of their own sin, made captives of their fleshly desires. If you cry out, He will set you free!<br /><br />I rejoice to say that the Lord has recently performed several miracles in my family. One was the healing of physical illness and another the restoring of a broken relationship. He met our financial need, also. I want to tell everybody!<br /><br />Have you something you want the world to know about the greatness of God? Tell all you see. If you’d like, I will publish your story on our web pages, or put it in this newsletter. The unbelieving world needs to know.<br /><br />“Oh that men would praise the Lord for his goodness, and for his wonderful works to the children of men!”</p>','',1,6,0,36,'2010-06-28 20:42:31',125,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-06-28 20:42:31','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,18,'','',0,396,'robots=\nauthor='),(76,'What if Jesus comes back like...?','what-if-jesus-comes-back-like','','<p>A subject I’ve been thinking about lately was really brought home to me at our Praise-a-Thon while I listened to Rik Osborne singing Colin Ray’s song, “What If Jesus Comes Back Like That?” The song describes a hobo living under a bridge and it also portrays a premature baby born addicted to crack. The singer asks what we would do if Jesus came back like that. I’ve heard positive comments to the words, and also remarks from people who think the song is blasphemous. Let me give you some scriptures to think about.<br /><br />“...he hath no form nor comeliness; and when we shall see him, there is no beauty that we should desire him. He is despised and rejected of men; a man of sorrows, and acquainted with grief: and we hid as it were our faces from him; he was despised, and we esteemed him not. Surely he hath borne our griefs, and carried our sorrows: yet we did esteem him stricken, smitten of God, and afflicted.” Isaiah 53:2-4<br /><br />“For I was an hungered, and ye gave me meat: I was thirsty, and ye gave me drink: I was a stranger, and ye took me in: Naked, and ye clothed me: I was sick, and ye visited me: I was in prison, and ye came unto me. And the King shall answer and say unto them, Verily I say unto you, Inasmuch as ye have done it unto one of the least of these my brethren, ye have done it unto me.” Matthew 25:35-36, 40<br /><br />God created every person in His image. “That was the true Light, which lighteth every man that cometh into the world.” John 1:9<br /><br />So Jesus does come back “like that”. He comes in the hungry and thirsty soul. He comes in the homeless, the naked, the sick and the one in prison. He comes with no beauty, despised and rejected, grieving, stricken, afflicted. We would like to think that He only comes as the victorious warrior, full of glory, majesty, might and power, saving the world. Yes, He does come like that, too.<br /><br />What will you do with Jesus’ words in Matthew 25? Will you reach out to those in need, realizing that in so doing, you are reaching out to Jesus? The resurrection is not past. (2 Tim. 2:18) He comes alive and new in each one who believes in Him.</p>','',1,6,0,36,'2010-06-28 20:43:31',125,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-06-28 20:43:31','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,17,'','',0,445,'robots=\nauthor='),(77,'Trust','trust','','<p>The other day I was pondering upcoming trips over the snowy passes to Seattle hospital appointments for family members. I heard a definite voice saying, “Trust in me.”  What? Had I allowed a tinge of worry concerning these events? I spoke back to God and acknowledged His love and care for my loved ones and for me. Peace returned to my heart.<br /> <br />I feel a deep trust that God is in control. I’ve given Him that control by a definite act of my will. Think about it. The only real choice we have in this life is to give God control or to try to keep that control for ourselves. Everything else that happens in our lives depends on which choice we’ve made. When we choose life with God He causes all circumstances to work towards that life. The choice for self leads to death. It’s that simple! He will give us our hearts’ desire, whether it is to have His will in all things or whether it is to have our will in all things. One path leads to eternal life with Jesus, the other to eternal death. These are the inescapable consequences of each person’s decision. <br /><br />“Trust in the Lord with all thine heart; and lean not unto thine own understanding. In all thy ways acknowledge him, and he shall direct thy paths.” Proverbs 3:5-6<br /><br />He will arrange the events of my life exactly how He chooses. My part is to lie safe in His hand, surrounded by His light and love, waiting upon Him for each and every moment. My goal is to keep my heart and spirit open towards the Lord at all times, knowing I can only do this by realizing my complete weakness and dependency. It’s not something I can do at all on my own but through Christ I can do all things. That’s the way He planned it! Praises to God!</p>','',1,6,0,36,'2010-06-28 20:45:55',125,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-06-28 20:45:55','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,16,'','',0,476,'robots=\nauthor='),(78,'Speaking the Truth','speaking-the-truth','','<p>One of the most difficult growth processes in my Christian walk has been telling other people how I feel when their behavior affects me negatively. When the actions of someone else hurt, irritate, offend, or cause some other difficulty for me, I tend to make excuses for not confronting them. I say to myself “I’m wrong — I’m not being Christ like —they won’t listen — I’m afraid — they don’t care — I’ll hurt their feelings — they will reject me — I can’t find the right words or the right time — I’ll only make it worse — on and on.<br /><br />I’ve discovered some verses that describe perfectly the turmoil that goes on in my brain, and they also offer the solution.<br /> <br />Psalm 32 says, “Blessed is the man unto whom the LORD imputeth not iniquity, and in whose spirit there is no guile. When I kept silence, my bones waxed old through my roaring all the day long.” (v. 2-3) I wondered how I could both keep silence and roar at the same time. Here’s how — when I have “stuffed” my feelings and not spoken to the offender (kept silence) I find I can’t get quiet before the Lord. As soon as I begin to read my Bible or pray, a hoard of thoughts “roar” into my brain and I can’t concentrate on anything but my resentments. I have endless conversations in my mind with myself and with the “tormentor” who has treated me so unfairly. The more I do this, the more I withdraw my love from that person. The Lord has helped me to see that when I withhold love from my brother and am not honest with him, (guile) it becomes sin in me. <br /><br />“For day and night thy hand was heavy upon me: my moisture is turned into the drought of summer. Selah. I acknowledged my sin unto thee, and mine iniquity have I not hid. I said, I will confess my transgressions unto the LORD; and thou forgavest the iniquity of my sin. Selah.” (v. 4-5) When I bring my problem out in the open by talking to the one who has hurt me, I have thrown wide the door of my heart to both give and receive healing and forgiveness. And, as far as it lies with me, I have cleared up things between the Lord and me. I have learned to speak the truth in love.</p>','',1,6,0,36,'2010-06-28 20:47:06',125,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-06-28 20:47:06','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,15,'','',0,396,'robots=\nauthor='),(79,'The Widow’s Mite','the-widows-mite','','<p>I have found an excitement, in many different ways, in being part of the life of the Mission. I have seen such generosity displayed by those who in this stage of their lives have next to nothing in material goods. These men are rich in spiritual treasures.<br /><br />The men here will readily offer to help when they see our need. Mike mows my lawn when he sees that I have too much to do. Another prunes my walnut tree because I don’t know how. Carl gives us his services as a painter, builder, and carpet layer. Joe does little odd jobs when he sees the need. Groceries are shared. Jimmy always has a prayer and an encouraging word. Their motive is simply friendship; the friendship of Jesus expressed toward each other and us.<br /><br />I am always moved deeply when I see men giving in this way. It speaks of the love of Jesus and the willingness to share all that one has so that others may benefit. I look up to these men as my example.<br /><br />“And Jesus sat over against the treasury, and beheld how the people cast money into the treasury: and many that were rich cast in much. And there came a certain poor widow, and she threw in two mites, which make a farthing. And he called unto him his disciples, and saith unto them, Verily I say unto you, That this poor widow hath cast more in, than all they which have cast into the treasury: For all they did cast in of their abundance; but she of her want did cast in all that she had, even all her living.” Mark 12:41-44</p>','',1,6,0,36,'2010-06-28 20:48:06',125,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-06-28 20:48:06','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,14,'','',0,467,'robots=\nauthor='),(80,'Testimony','testimony','','<p>Our God is an amazing God. He knows how to come to each one who will receive Him. My testimony is a simple one. In 1970 I went into a great depression and became filled with fear; fear of earthquakes, fear of pollution, fear for survival for my children and myself. I regretted that we were even in this world, so filled with evil and danger. Perhaps you have felt this way at some time in your own life.<br /><br />In my desperation I took my dusty Bible off the shelf and wondered if the stories I’d learned in my childhood were really true after all. Randomly flipping the book open, I stabbed my finger onto a page and looked to see what it said.<br /><br />“Therefore take no thought, saying, What shall we eat? or, What shall we drink? or, Wherewithal shall we be clothed? (For after all these things do the Gentiles seek:) for your heavenly Father knoweth that ye have need of all these things. But seek ye first the kingdom of God, and his righteousness; and all these things shall be added unto you. Take therefore no thought for the morrow: for the morrow shall take thought for the things of itself. Sufficient unto the day is the evil thereof.” Matthew 6:31-34<br /><br />I almost laughed for joy! God had touched my deepest need, told me what to do, and given me a wonderful promise, all at once. I asked Him then and there to forgive me for my sins and to take over my life. I felt an incredible peace and joy, knowing that now my fears would be removed. And they were, as I faced each one.<br /><br /> Here again at the New Year I can think of no better resolve than the one I have every day, to seek His kingdom and His righteousness first, and to believe His promise to supply everything I need. After nearly 30 years I have seen how absolutely true that word is. He fulfills His promise for us here at the Hospitality House and He will do the same for you! May God bless you and give you a joy filled New Year as you walk with Him.</p>','',1,6,0,36,'2010-06-28 20:50:02',125,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-06-28 20:50:02','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,13,'','',0,434,'robots=\nauthor='),(81,'Resting','resting','','<p>I am learning ever more completely to be absolutely dependent upon and surrendered to God.  I have reached a point where I know that I know nothing except Christ and Him crucified. It\'s a restful place to be. He\'s lead me to and put me in the circumstance in which He wants me. The dilemmas that come to me are not mine to solve. I have no power, strength, or ability of my own. I desire only His will and His way and His timing. I want to be only a branch of the vine, continually abiding in Him and waiting for His will. He promises to produce the fruit--all I have to do is remain attached to the vine.<br /><br /></p>','',1,6,0,36,'2010-06-28 21:05:05',125,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-06-28 21:05:05','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,12,'','',0,414,'robots=\nauthor='),(82,'Dependence','dependence','','<p>Psalm 62:5 is a commandment that David makes to himself. \"My soul, wait thou only upon God; for my expectation is from Him.\" I find there is nothing better I can do for myself than this same thing, absolute dependency and surrender to God, believing that His way is best.<br /><br />Verse 4 of the same Psalm has new meaning for me. \"They only consult to cast him down from his excellency; they delight in lies: they bless with their mouth, but they curse inwardly.\" If the \"him\" in this verse is applied to God, it presents a clear picture of what we in this country are doing to God--seeking to eliminate Him from all public places while continuing to give lip service.<br />Verse 11 says, \"God hath spoken once; twice have I heard this; that power belongeth to God.\" We at the Hospitality House have learned that everything we have comes from God. We are a poor Mission, depending totally upon His provision through caring people who  contribute to our need. If we are tempted to trust in man and make our plans apart from God, while blessing with our mouths , we are delighting in lies, for without God we can do nothing.<br />For me, Psalm 62 flows into Psalm 63. As I acknowledge my dependence and God\'s power, I begin to hunger and thirst to know more of God. \"O God, thou art my God; early will I seek thee: my soul thirsteth for thee, my flesh longeth for thee in a dry and thirsty land where no water is\"...v. 1. \"My soul followeth hard after thee: thy right hand upholdeth me. But those that seek my soul, to destroy it, shall go into the lower parts of the earth. They shall fall by the sword: they shall be a portion for foxes.\" v.8-10. <br /><br />Those things seeking to destroy my soul are unbelief, worry, temptation to other sins, the battle for my mind, etc. But as I stay in the Word, the sword of the Spirit defeats the enemy. So it is at the Mission. As we make God\'s word our primary focus and seek to live  according to His precepts, He keeps us by His mighty right hand.<br /><br />Thank you, Jesus, for your Word, your power, your love for your children. Help us to be completely yours in every moment, every action of our lives, that your name will be honored.  Amen.<br /><br /></p>','',1,6,0,36,'2010-06-28 21:06:22',125,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-06-28 21:06:22','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,11,'','',0,481,'robots=\nauthor='),(83,'Abiding in the Vine','abiding-in-the-vine','','<p>\"I am the true vine, and my Father is the husbandman. Every branch in me that beareth not fruit he taketh away: and every branch that beareth fruit he purgeth it, that it may bring forth more fruit.  Abide in me, and I in you. As the branch cannot bear fruit of itself, except it abide in the vine; no more can ye, except ye abide in me. I am the vine, ye are the branches; He that abideth in me, and I in him, the same bringeth forth much fruit; for without me ye can do nothing.\" <br />John 15:1-2, 4-5<br /> <br />On a recent trip to San Francisco my husband and I drove up to Santa Rosa and the Napa Valley to visit relatives and friends. Since God has been teaching me about abiding in the vine, I was interested in looking up close at the acres of grape vines. In the early spring, the green growth was just beginning so I could clearly see the sturdy vines growing up out of the ground, twining around the specially placed wires, and then the fresh, fragile new branches sprouting forth at quite evenly spaced intervals along the vine. <br /><br />Just as these new branches are totally dependent upon the vine for a place from which to sprout and grow and receive nourishment, so am I completely dependent on Jesus. The green branch can do nothing if it isn\'t attached to the vine. It can\'t grow, it can\'t bloom, it can\'t produce grapes. It\'s good for nothing except the trash heap. God, the gardener, prunes me so I can bear better fruit, but again, I can do nothing on my own. My part is to remain attached to the vine. This is my work.<br /><br />I do this work by staying in His word, by talking with Jesus, and by acknowledging a daily, moment by moment dependency upon Him. I keep myself open to a constant flow of the Holy Spirit through me, just as the branch receives nourishment from the sap that flows from the roots to the vine. As I do this, the vine, Jesus, produces in me the fruits of the Spirit. Love, joy, peace, longsuffering, gentleness, goodness, faith, meekness, and temperance are the beautiful fruits he produces in me and I bear them for all to see, a witness to Him.<br /><br /></p>','',1,6,0,36,'2010-06-28 21:07:41',125,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-06-28 21:07:41','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,10,'','',0,526,'robots=\nauthor='),(84,'Discipline','discipline','','<p>\"Now no chastening for the present seemeth to be joyous, but grievous: nevertheless afterward it yieldeth the peaceable fruit of righteousness unto them which are exercised thereby.\" Heb. 12:11<br /><br />Have you ever been disciplined by the Lord? Was it a painful jolt? Sometimes the Holy Spirit convicts and chastens us through our conscience when our words or actions are wrong. There comes a healthy guilt which drives us to repentance. Peace is then restored.<br /><br />For some of us, there is a more painful way to receive discipline.  Occasionally we may be spoken to by someone else about our shortcomings. We may rise to our own defense, make excuses, feel hurt or pass blame, but when we go to the Lord desiring only His will, He shows us the truth about ourselves.<br /> <br />This is never a pleasant experience. We feel embarrassed about our fault, about not seeing it earlier before someone else had to point it out.  We are even more horrified when we repeat the same fault again. Why can\'t we learn the first time?<br /><br />Humility sets in as we see ourselves next to God\'s holiness. Then He lifts us up and says, \"For whom the Lord loveth He chasteneth, and scourgeth every son whom he receiveth. If ye endure chastening, God dealeth with you as with sons; for what son is he whom the father chasteneth not?\" Heb.12:6-7. We feel God\'s love stronger than before. A blockage is removed between us and God.<br /><br />We cannot change ourselves. We must recognize and confess our faults and then be absolutely dependent upon and surrendered to our Father God, believing in His incredible love for us, and believing that He lets nothing touch us except what is good for our perfecting and purifying. Our purpose on earth is to bring pleasure to God by letting Him conform us to the image of Jesus, thus becoming a testimony, a \"letter\" to others, telling of His love for them, too.</p>','',1,6,0,36,'2010-06-28 21:08:29',125,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-06-28 21:08:29','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,9,'','',0,486,'robots=\nauthor='),(85,'Temptation','temptation','','<p>In reading through the story of Jesus\' temptation in the wilderness in Matthew 4:1-10, I discover parallel passages in Deuteronomy as Moses tells the Hebrew children what God requires for them to enter the Promised Land.<br /><br />In Matthew 4:4 Jesus responds to Satan, \" ..it is written, Man shall not live by bread alone, but by every word that proceedeth out of the mouth of God.\" Deut. 8:3 says, \" And he humbled thee, and suffered thee to hunger, and fed thee with manna, which thou knewest not, neither did thy fathers know; that he might make thee know that man doth not live by bread only, but by every word that proceedeth out of the mouth of the LORD.\"<br /><br />To me, this says that we are to be filled with (feed on) the Word of God on a daily basis and live our lives in constant, faithful obedience to that word.<br /><br />The next parallel verses are Matt. 4:7 and Deut. 6:16. \" Jesus said unto him, It is written again, Thou shalt not tempt the Lord thy God.\" And, \"Ye shall not tempt the LORD your God, as ye tempted him in Massah.\"<br /><br />I was curious how we could tempt God so I looked up the event at Massah, Exodus 17:7. \"And he called the name of the place Massah, and Meribah, because of the chiding of the children of Israel, and because they tempted the LORD, saying, Is the LORD among us, or not?\" The Hebrews were complaining about  God\'s provision and doubting His continued care instead of giving thanks for all He had already done and trusting in all He promised to do. They were full of unbelief, and \"provoked\" Him to anger. <br /><br />Matthew 4:10 says,\"Then saith Jesus unto him, Get thee hence, Satan: for it is written, Thou shalt worship the Lord thy God, and him only shalt thou serve.\" In Deut. 6:13,  \"Thou shalt fear the LORD thy God, and serve him, and shalt swear by his name.\" <br /><br />We must worship God alone, making sure that we are surrendered to His will and letting nothing take precedence over our love for Him.<br /><br />These three principles are the same today as they were in Moses\' time and the New Testament time. Those who believed God entered the Promised Land and those who did not, perished. Let us press on to love God and worship Him alone. Let us live in obedience to His Word and in thankfulness for His will and His provision. Our God is an awesome God!</p>','',1,6,0,36,'2010-06-28 21:09:21',125,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-06-28 21:09:21','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,8,'','',0,394,'robots=\nauthor='),(86,'Gardening','gardening','','<p>The lesson we receive from John the Baptist is one of preparing the way. \"In those days came John the Baptist, preaching in the wilderness of Judaea, and saying, Repent ye: for the kingdom of heaven is at hand. For this is he that was spoken of by the prophet Esaias, saying, The voice of one crying in the wilderness, Prepare ye the way of the Lord, make his paths straight.\" Matt. 3:1-3<br /><br />As I look at my beautiful summer garden I think about all the preparation that went into it before I  was able to enjoy the vegetables and flowers. In April I cranked up my old Troy-Bilt and plowed through the hard, apparently lifeless dirt. After 2 or 3 sessions of tilling the ground looked soft and rich and ready. Next I planned my rows, pounded in stakes and tied strings back and forth. I prayed as I sprinkled various shriveled, dead-looking seeds into the little trenches I\'d made, asking God to make them sprout and grow and produce the desired food . A careful schedule of watering and days of anticipation finally revealed tiny sprouts appearing up and down the rows. Joy! They were on their way! A few weeks of continued watering, weeding, and thinning, combined with sunshine and warmth, have indeed produced the results I hoped for, healthful, good-tasting vegetables and lovely blooms.<br /><br />Just as John was sent to prepare the hearts of those who would hear the message of salvation, so are many of us engaged in the same process. Paul says, \"I have planted, Apollos watered; but God gave the increase. So then neither is he that planteth any thing, neither he that watereth; but God that giveth the increase.\" (1Cor. 3:6-7) <br /><br />At the Hospitality House we have a ministry of tending a garden of human souls for God. It is our privilege and duty to dig up the ground of sometimes hardened or hurting hearts. We see the needs and<br />plan how we can lay straight rows by aligning stakes of discipline and responsibility. The seeds of God\'s word are carefully planted and watered with love.  We eagerly watch for signs of growth, giving budding hearts room to grow, free from pressure. Sometimes we must firmly pull weeds but we do it with compassion. In His mercy and His timing, God gives the increase by shining the warmth of His light on any who will come to Him in repentance.   <br /><br /><br /></p>','',1,6,0,36,'2010-06-28 21:10:27',125,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-06-28 21:10:27','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,7,'','',0,485,'robots=\nauthor='),(87,'Meaning has Growth','meaning-has-growth','','<p>A few mornings ago I was reading my husband Keith a verse that had taken on new meaning for me, deeper than I\'d previously thought. It was Psalm 141:5 \"Let the righteous smite me; it shall be a kindness: and let him reprove me; it shall be an excellent oil, which shall not break my head: for yet my prayer also shall be in their calamities.\"  His reply, \"Meaning has growth\", set me to thinking. There\'s an exciting fact about reading scripture over and over again. The Bible is like a diamond, continuously revealing new color as it\'s held up to the light. I like to picture myself, and all believers, because it\'s true, as being filled with the Light that is Jesus. The Word is Jesus, too, so as our Light shines on the Word, it shines back on us, giving new insight and knowledge and making us brighter and more like Him.<br /><br />II Corinthians 4:4,6 says, \"In whom the god of this world hath blinded the minds of them which believe not, lest the light of the glorious gospel of Christ, who is the image of God, should shine unto them. For God, who commanded the light to shine out of darkness, hath shined in our hearts, to give the light of the knowledge of the glory of God in the face of Jesus Christ.\"<br /><br />When we say we believe, but don\'t read and study the Word, we are like a candle with a bushel basket set over us. Our light shines faintly. It can\'t be made brighter and stronger because we are denying ourselves the source of growth. In I Cor. 13:10-11 it says: \"But when that which is perfect is come, then that which is in part shall be done away. When I was a child, I spake as a child, I understood as a child, I thought as a child: but when I became a man, I put away childish things.\" The truly spiritual man has opened himself and put forth the effort to grow up into Jesus. Just as the physical child grows into a man as he is nourished with food, so the spiritual child must feed on the Word in order to grow. No earthly child wishes to remain a child, but many of us refuse or neglect spiritual growth and so continue on in babyhood.<br /><br />Here is our goal: Ephesians 4:13-14. \"Till we all come in the unity of the faith, and of the knowledge of the Son of God, unto a perfect man, unto the measure of the stature of the fullness of Christ:<br />That we henceforth be no more children, tossed to and fro, and carried about with every wind of doctrine, by the sleight of men, and cunning craftiness, whereby they lie in wait to deceive...\"<br /><br />Let us be encouraged today to press on towards God by filling ourselves with His Word and His Light, that we may show forth the glory of God in the face of Jesus.</p>','',1,6,0,36,'2010-06-28 21:11:47',125,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-06-28 21:11:47','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,6,'','',0,406,'robots=\nauthor='),(88,'When are we saved?','when-are-we-saved','','<p>Romans 10:9-10 tells us:   \"That if thou shalt confess with thy mouth the Lord Jesus, and shalt believe in thine heart that God hath raised him from the dead, thou shalt be saved. For with the heart man believeth unto righteousness; and with the mouth confession is made unto salvation.\"<br /><br />I believe that the confession with the mouth is to be backed up with a continuous, lifelong expression of the Jesus who is in our hearts. It is not only a spoken confession but is demonstrated in our actions daily, a moment by moment obedience to the words of Jesus.<br /><br />In 1 John 4:2 we read:  \"Hereby know ye the Spirit of God: Every spirit that confesseth that Jesus Christ is come in the flesh is of God:\"<br /><br />It is our spirit that confesses. It\'s the impression that others get when they\'re near us. Do they see love, honesty, joy, peace and righteousness in our every action, or do they see a discrepancy between what we say we believe and how we conduct our lives? Do they perceive the Holy Spirit? Or do they see the flesh in us? Which spirit do we possess?<br /><br />Daily we are told to take up our cross and follow Him. (Mark 8:34) That means dying to our own earthly desires and actions and living each moment according to Jesus\' words and example. I believe that this is the \"confession\" we make that says we really believe in our hearts. And this confession leads us to salvation. <br /><br /></p>','',1,6,0,36,'2010-06-28 21:13:28',125,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-06-28 21:13:28','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,5,'','',0,417,'robots=\nauthor='),(89,'Light and Dark','light-and-dark','','<p>Isaiah 50:10 says, \"Who is among you that feareth the LORD, that obeyeth the voice of his servant, that walketh in darkness, and hath no light? let him trust in the name of the LORD, and stay upon his God.\"<br /><br />This has always been an intriguing verse to me. I used to think it meant that if you loved the Lord but were going through a hard time of affliction and darkness you should still trust Him and stay with Him. Now I interpret it differently. I believe that God is saying that for the person who fears God and obeys, it is incongruous to think that he would then walk in darkness. <br /><br />Here\'s a  statement that may help me make my point. \"Who is among you that wraps himself in a warm coat, and stands by a roaring fire, that walks in the cold and has no heat? let him trust in his coat, and stay near the stove.\" Being cold would be a fairly ridiculous thing to imagine while wrapped in a coat and standing by the fire! <br /><br />John 8:12 brings more understanding. \"Then spake Jesus again unto them, saying, I am the light of the world: he that followeth me shall not walk in darkness, but shall have the light of life.\" Or, \"I am come a light into the world, that whosoever believeth on me should not abide in darkness.\" John 12:46.<br /><br />When we properly fear God as Creator of everything, all powerful, all knowing, always present with us, and when we obey the voice of His servant, the Holy Spirit, He leads us to Jesus, the Light of the world. As we set our hearts to follow Jesus and sup with Him we never again walk in darkness. We learn to trust Him in every circumstance as we accept His will and experience His promises of guidance, wisdom, understanding and enlightenment.<br /><br />As we celebrate this Christmas season, I pray you will invite the Light of the world, Jesus, to shine forth from your heart.</p>','',1,6,0,36,'2010-06-28 21:14:30',125,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-06-28 21:14:30','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,4,'','',0,434,'robots=\nauthor='),(90,'A Mystery','a-mystery','','<p>How many times have you heard it said, or said yourself, that the things of God are mysteries we cannot know?<br /><br />In Mark 4:11 Jesus speaks. \"And he said unto them, Unto you it is given to know the mystery of the kingdom of God: but unto them that are without, all these things are done in parables.\"<br /><br />Would Jesus keep secrets from His followers? He says we\'ll know. Paul obviously was privy to the mystery of God, as we read in Ephesians 3:3-4. \"How that by revelation he made known unto me the mystery; (as I wrote afore in few words, Whereby, when ye read, ye may understand my knowledge in the mystery of Christ).\" What is this mystery?<br /><br />In Ephesians 5 we find a beautiful description of the husband and wife relationship. Paul seems to go back and forth between that and the bond between Christ and His church.  \"For we are members of his body, of his flesh, and of his bones. For this cause shall a man leave his father and mother, and shall be joined unto his wife, and they two shall be one flesh. This is a great mystery: but I speak concerning Christ and the church. Eph. 5:30-32.<br /><br />The mystery is completely unraveled in Colossians 1:26-27  \"Even the mystery which hath been hid from ages and from generations, but now is made manifest to his saints: To whom God would make known what is the riches of the glory of this mystery among the Gentiles; which is Christ in you, the hope of glory.\"<br /><br />It\'s simple! When we believe in Jesus and act on that belief, He dwells within us, we are one with Him, and we live forever in the glory that is Jesus.</p>','',1,6,0,36,'2010-06-28 21:15:34',125,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-06-28 21:15:34','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,3,'','',0,515,'robots=\nauthor='),(91,'Whiter than Snow','whiter-than-snow','','<p>I love the snow! The snow changes the landscape. The air is crisp and clean when it snows - and everything sparkles. While out walking one day in the snow the words of a hymn by Wm. G. Fischer began to run through my mind.  \"Lord Jesus, I long to be perfectly whole; I want thee forever to live in my soul. Break down every idol, cast out every foe; Now wash me, and I shall be whiter than snow.\" I wondered how anything could be whiter than snow!<br /><br />And from Jesus Christ, who is the faithful witness, and the first begotten of the dead, and the prince of the kings of the earth. Unto him that loved us, and washed us from our sins in his own blood, And hath made us kings and priests unto God and his Father; to him be glory and dominion for ever and ever. Amen.  Re 1:5,6 <br /><br />David\'s prayer in Psalm 51:7 was brought to mind, \"Purge me with hyssop, and I shall be clean: wash me, and I shall be whiter than snow.\" Just then, as I turned towards the morning sun, the witness of the snow became even more brilliant. I felt God speaking the answer into my heart. 1John 1:7 says, \"But if we walk in the light, as he is in the light, we have fellowship one with another, and the blood of Jesus Christ his Son cleanseth us from all sin.\" When I make Jesus the Lord of my life, He fills me with His light, washes away my sins in His blood, and makes me whiter than snow!</p>','',1,6,0,36,'2010-06-28 21:16:30',125,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-06-28 21:16:30','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,2,'','',0,417,'robots=\nauthor='),(92,'Choice','choice','','<p>I am filled with such joy this morning! It comes from realizing that nothing can touch me outside God\'s will. Man can\'t, Devil can\'t. If man hurts me it is God\'s plan for my purification. It is His complete will. In my pain I go to God and ask that He relieve my pain by killing every last speck of self and flesh that is in me. I want to be completely dead, even physically if that\'s in His plan. I count all things loss that I might gain Him.<br /><br />I feel a deep trust that God is in control. I\'ve given Him that control by a definite act of my will. This is the only real choice I have in this life, to give God control or not give Him control.<br /><br />Everything else that happens in my entire life depends on which choice I\'ve made. When I  choose life with God He causes all circumstances to work towards that life. The choice for death leads to death. It\'s that simple! He will give me my heart\'s desire, whether it be to have His will in all things or whether it be to have my will in all things. The one leads to eternal life with Jesus, the other to eternal death and destruction. These are the inescapable consequences of my choice. <br /><br />He will change my situation exactly when and how He wants to. My part is to lie safe in His hand, surrounded by His light and love, waiting upon Him for each and every next moment. I will keep my heart and spirit open towards the Lord at all times. I can only do this by realizing my complete weakness and dependency. It\'s not something I can do at all on my own but in Christ I can do all things. That\'s the way He planned it! Praises to God!!</p>','',1,6,0,36,'2010-06-28 21:54:56',125,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-06-28 21:54:56','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,1,'','',0,402,'robots=\nauthor=');
/*!40000 ALTER TABLE `jos_content` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_content_frontpage`
--

DROP TABLE IF EXISTS `jos_content_frontpage`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_content_frontpage` (
  `content_id` int(11) NOT NULL default '0',
  `ordering` int(11) NOT NULL default '0',
  PRIMARY KEY  (`content_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_content_frontpage`
--

LOCK TABLES `jos_content_frontpage` WRITE;
/*!40000 ALTER TABLE `jos_content_frontpage` DISABLE KEYS */;
INSERT INTO `jos_content_frontpage` VALUES (45,1),(6,3),(44,4),(5,5),(9,6),(30,7),(16,8),(48,2);
/*!40000 ALTER TABLE `jos_content_frontpage` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_content_rating`
--

DROP TABLE IF EXISTS `jos_content_rating`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_content_rating` (
  `content_id` int(11) NOT NULL default '0',
  `rating_sum` int(11) unsigned NOT NULL default '0',
  `rating_count` int(11) unsigned NOT NULL default '0',
  `lastip` varchar(50) NOT NULL default '',
  PRIMARY KEY  (`content_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_content_rating`
--

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

--
-- Table structure for table `jos_core_acl_aro`
--

DROP TABLE IF EXISTS `jos_core_acl_aro`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_core_acl_aro` (
  `id` int(11) NOT NULL auto_increment,
  `section_value` varchar(240) NOT NULL default '0',
  `value` varchar(240) NOT NULL default '',
  `order_value` int(11) NOT NULL default '0',
  `name` varchar(255) NOT NULL default '',
  `hidden` int(11) NOT NULL default '0',
  PRIMARY KEY  (`id`),
  UNIQUE KEY `jos_section_value_value_aro` (`section_value`(100),`value`(100)),
  KEY `jos_gacl_hidden_aro` (`hidden`)
) ENGINE=MyISAM AUTO_INCREMENT=106 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_core_acl_aro`
--

LOCK TABLES `jos_core_acl_aro` WRITE;
/*!40000 ALTER TABLE `jos_core_acl_aro` DISABLE KEYS */;
INSERT INTO `jos_core_acl_aro` VALUES (10,'users','62',0,'Keith Wilson',0),(98,'users','150',0,'Redaaperway',0),(99,'users','151',0,'Icermapreed',0),(100,'users','152',0,'Evarenciewera',0),(101,'users','153',0,'EffornTilligo',0),(102,'users','154',0,'nutPoottKerie',0),(88,'users','140',0,'Plalaynctut',0),(89,'users','141',0,'Cepaspeft',0),(90,'users','142',0,'ladaEndug',0),(91,'users','143',0,'triapsmistini',0),(92,'users','144',0,'spookeAppatte',0),(93,'users','145',0,'EmporyLoyatry',0),(94,'users','146',0,'arileliWede',0),(95,'users','147',0,'aparienip',0),(96,'users','148',0,'Triaretry',0),(97,'users','149',0,'Prineezidinue',0),(73,'users','125',0,'Ann Wilson',0),(103,'users','155',0,'Hesundush',0),(104,'users','156',0,'Chersiscete',0),(86,'users','138',0,'ZoobeSofinown',0),(87,'users','139',0,'kekReogma',0),(105,'users','157',0,'baittigodcade',0);
/*!40000 ALTER TABLE `jos_core_acl_aro` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_core_acl_aro_groups`
--

DROP TABLE IF EXISTS `jos_core_acl_aro_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_core_acl_aro_groups` (
  `id` int(11) NOT NULL auto_increment,
  `parent_id` int(11) NOT NULL default '0',
  `name` varchar(255) NOT NULL default '',
  `lft` int(11) NOT NULL default '0',
  `rgt` int(11) NOT NULL default '0',
  `value` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`id`),
  KEY `jos_gacl_parent_id_aro_groups` (`parent_id`),
  KEY `jos_gacl_lft_rgt_aro_groups` (`lft`,`rgt`)
) ENGINE=MyISAM AUTO_INCREMENT=31 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_core_acl_aro_groups`
--

LOCK TABLES `jos_core_acl_aro_groups` WRITE;
/*!40000 ALTER TABLE `jos_core_acl_aro_groups` DISABLE KEYS */;
INSERT INTO `jos_core_acl_aro_groups` VALUES (17,0,'ROOT',1,22,'ROOT'),(28,17,'USERS',2,21,'USERS'),(29,28,'Public Frontend',3,12,'Public Frontend'),(18,29,'Registered',4,11,'Registered'),(19,18,'Author',5,10,'Author'),(20,19,'Editor',6,9,'Editor'),(21,20,'Publisher',7,8,'Publisher'),(30,28,'Public Backend',13,20,'Public Backend'),(23,30,'Manager',14,19,'Manager'),(24,23,'Administrator',15,18,'Administrator'),(25,24,'Super Administrator',16,17,'Super Administrator');
/*!40000 ALTER TABLE `jos_core_acl_aro_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_core_acl_aro_map`
--

DROP TABLE IF EXISTS `jos_core_acl_aro_map`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_core_acl_aro_map` (
  `acl_id` int(11) NOT NULL default '0',
  `section_value` varchar(230) NOT NULL default '0',
  `value` varchar(100) NOT NULL,
  PRIMARY KEY  (`acl_id`,`section_value`,`value`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_core_acl_aro_map`
--

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

--
-- Table structure for table `jos_core_acl_aro_sections`
--

DROP TABLE IF EXISTS `jos_core_acl_aro_sections`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_core_acl_aro_sections` (
  `id` int(11) NOT NULL auto_increment,
  `value` varchar(230) NOT NULL default '',
  `order_value` int(11) NOT NULL default '0',
  `name` varchar(230) NOT NULL default '',
  `hidden` int(11) NOT NULL default '0',
  PRIMARY KEY  (`id`),
  UNIQUE KEY `jos_gacl_value_aro_sections` (`value`),
  KEY `jos_gacl_hidden_aro_sections` (`hidden`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_core_acl_aro_sections`
--

LOCK TABLES `jos_core_acl_aro_sections` WRITE;
/*!40000 ALTER TABLE `jos_core_acl_aro_sections` DISABLE KEYS */;
INSERT INTO `jos_core_acl_aro_sections` VALUES (10,'users',1,'Users',0);
/*!40000 ALTER TABLE `jos_core_acl_aro_sections` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_core_acl_groups_aro_map`
--

DROP TABLE IF EXISTS `jos_core_acl_groups_aro_map`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_core_acl_groups_aro_map` (
  `group_id` int(11) NOT NULL default '0',
  `section_value` varchar(240) NOT NULL default '',
  `aro_id` int(11) NOT NULL default '0',
  UNIQUE KEY `group_id_aro_id_groups_aro_map` (`group_id`,`section_value`,`aro_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_core_acl_groups_aro_map`
--

LOCK TABLES `jos_core_acl_groups_aro_map` WRITE;
/*!40000 ALTER TABLE `jos_core_acl_groups_aro_map` DISABLE KEYS */;
INSERT INTO `jos_core_acl_groups_aro_map` VALUES (18,'',86),(18,'',87),(18,'',88),(18,'',89),(18,'',90),(18,'',91),(18,'',92),(18,'',93),(18,'',94),(18,'',95),(18,'',96),(18,'',97),(18,'',98),(18,'',99),(18,'',100),(18,'',101),(18,'',102),(18,'',103),(18,'',104),(18,'',105),(19,'',73),(25,'',10);
/*!40000 ALTER TABLE `jos_core_acl_groups_aro_map` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_core_log_items`
--

DROP TABLE IF EXISTS `jos_core_log_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_core_log_items` (
  `time_stamp` date NOT NULL default '0000-00-00',
  `item_table` varchar(50) NOT NULL default '',
  `item_id` int(11) unsigned NOT NULL default '0',
  `hits` int(11) unsigned NOT NULL default '0'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_core_log_items`
--

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

--
-- Table structure for table `jos_core_log_searches`
--

DROP TABLE IF EXISTS `jos_core_log_searches`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_core_log_searches` (
  `search_term` varchar(128) NOT NULL default '',
  `hits` int(11) unsigned NOT NULL default '0'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_core_log_searches`
--

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

--
-- Table structure for table `jos_groups`
--

DROP TABLE IF EXISTS `jos_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_groups` (
  `id` tinyint(3) unsigned NOT NULL default '0',
  `name` varchar(50) NOT NULL default '',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_groups`
--

LOCK TABLES `jos_groups` WRITE;
/*!40000 ALTER TABLE `jos_groups` DISABLE KEYS */;
INSERT INTO `jos_groups` VALUES (0,'Public'),(1,'Registered'),(2,'Special');
/*!40000 ALTER TABLE `jos_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_jce_extensions`
--

DROP TABLE IF EXISTS `jos_jce_extensions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_jce_extensions` (
  `id` int(11) NOT NULL auto_increment,
  `pid` int(11) NOT NULL,
  `name` varchar(100) NOT NULL,
  `extension` varchar(255) NOT NULL,
  `folder` varchar(255) NOT NULL,
  `published` tinyint(3) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_jce_extensions`
--

LOCK TABLES `jos_jce_extensions` WRITE;
/*!40000 ALTER TABLE `jos_jce_extensions` DISABLE KEYS */;
INSERT INTO `jos_jce_extensions` VALUES (1,54,'Joomla Links for Advanced Link','joomlalinks','links',1);
/*!40000 ALTER TABLE `jos_jce_extensions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_jce_groups`
--

DROP TABLE IF EXISTS `jos_jce_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_jce_groups` (
  `id` int(11) NOT NULL auto_increment,
  `name` varchar(255) NOT NULL,
  `description` varchar(255) NOT NULL,
  `users` text NOT NULL,
  `types` varchar(255) NOT NULL,
  `components` text NOT NULL,
  `rows` text NOT NULL,
  `plugins` varchar(255) NOT NULL,
  `published` tinyint(3) NOT NULL,
  `ordering` int(11) NOT NULL,
  `checked_out` tinyint(3) NOT NULL,
  `checked_out_time` datetime NOT NULL,
  `params` text NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_jce_groups`
--

LOCK TABLES `jos_jce_groups` WRITE;
/*!40000 ALTER TABLE `jos_jce_groups` DISABLE KEYS */;
INSERT INTO `jos_jce_groups` VALUES (1,'Default','Default group for all users with edit access','','19,20,21,23,24,25','','6,7,8,9,10,11,12,13,14,15,16,17,18,19;20,21,22,23,24,25,26,27,28,30,31,32,33,36;37,38,39,40,41,42,43,44,45,46,47,48;49,50,51,52,53,54,55,57,58','1,2,3,4,5,6,20,21,37,38,39,40,41,42,49,50,51,52,53,54,55,57,58',1,1,0,'0000-00-00 00:00:00',''),(2,'Front End','Sample Group for Authors, Editors, Publishers','','19,20,21','','6,7,8,9,10,13,14,15,16,17,18,19,27,28;20,21,25,26,30,31,32,36,43,44,45,47,48,50,51;24,33,39,40,42,46,49,52,53,54,55,57,58','6,20,21,50,51,1,3,5,39,40,42,49,52,53,54,55,57,58',0,2,0,'0000-00-00 00:00:00','');
/*!40000 ALTER TABLE `jos_jce_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_jce_plugins`
--

DROP TABLE IF EXISTS `jos_jce_plugins`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_jce_plugins` (
  `id` int(11) NOT NULL auto_increment,
  `title` varchar(255) NOT NULL,
  `name` varchar(255) NOT NULL,
  `type` varchar(255) NOT NULL,
  `icon` varchar(255) NOT NULL,
  `layout` varchar(255) NOT NULL,
  `row` int(11) NOT NULL,
  `ordering` int(11) NOT NULL,
  `published` tinyint(3) NOT NULL,
  `editable` tinyint(3) NOT NULL,
  `iscore` tinyint(3) NOT NULL,
  `elements` varchar(255) NOT NULL,
  `checked_out` int(11) NOT NULL,
  `checked_out_time` datetime NOT NULL,
  PRIMARY KEY  (`id`),
  UNIQUE KEY `plugin` (`name`)
) ENGINE=MyISAM AUTO_INCREMENT=59 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_jce_plugins`
--

LOCK TABLES `jos_jce_plugins` WRITE;
/*!40000 ALTER TABLE `jos_jce_plugins` DISABLE KEYS */;
INSERT INTO `jos_jce_plugins` VALUES (1,'Context Menu','contextmenu','plugin','','',0,0,1,0,1,'',0,'0000-00-00 00:00:00'),(2,'File Browser','browser','plugin','','',0,0,1,1,1,'',0,'0000-00-00 00:00:00'),(3,'Inline Popups','inlinepopups','plugin','','',0,0,1,0,1,'',0,'0000-00-00 00:00:00'),(4,'Media Support','media','plugin','','',0,0,1,1,1,'',0,'0000-00-00 00:00:00'),(5,'Safari Browser Support','safari','plugin','','',0,0,1,0,1,'',0,'0000-00-00 00:00:00'),(6,'Help','help','plugin','help','help',1,1,1,0,1,'',0,'0000-00-00 00:00:00'),(7,'New Document','newdocument','command','newdocument','newdocument',1,2,1,0,1,'',0,'0000-00-00 00:00:00'),(8,'Bold','bold','command','bold','bold',1,3,1,0,1,'',0,'0000-00-00 00:00:00'),(9,'Italic','italic','command','italic','italic',1,4,1,0,1,'',0,'0000-00-00 00:00:00'),(10,'Underline','underline','command','underline','underline',1,5,1,0,1,'',0,'0000-00-00 00:00:00'),(11,'Font Select','fontselect','command','fontselect','fontselect',1,6,1,0,1,'',0,'0000-00-00 00:00:00'),(12,'Font Size Select','fontsizeselect','command','fontsizeselect','fontsizeselect',1,7,1,0,1,'',0,'0000-00-00 00:00:00'),(13,'Style Select','styleselect','command','styleselect','styleselect',1,8,1,0,1,'',0,'0000-00-00 00:00:00'),(14,'StrikeThrough','strikethrough','command','strikethrough','strikethrough',1,9,1,0,1,'',0,'0000-00-00 00:00:00'),(15,'Justify Full','full','command','justifyfull','justifyfull',1,10,1,0,1,'',0,'0000-00-00 00:00:00'),(16,'Justify Center','center','command','justifycenter','justifycenter',1,11,1,0,1,'',0,'0000-00-00 00:00:00'),(17,'Justify Left','left','command','justifyleft','justifyleft',1,12,1,0,1,'',0,'0000-00-00 00:00:00'),(18,'Justify Right','right','command','justifyright','justifyright',1,13,1,0,1,'',0,'0000-00-00 00:00:00'),(19,'Format Select','formatselect','command','formatselect','formatselect',1,14,1,0,1,'',0,'0000-00-00 00:00:00'),(20,'Paste','paste','plugin','pasteword,pastetext','paste',2,1,1,1,1,'',0,'0000-00-00 00:00:00'),(21,'Search Replace','searchreplace','plugin','search,replace','searchreplace',2,2,1,0,1,'',0,'0000-00-00 00:00:00'),(22,'Font ForeColour','forecolor','command','forecolor','forecolor',2,3,1,0,1,'',0,'0000-00-00 00:00:00'),(23,'Font BackColour','backcolor','command','backcolor','backcolor',2,4,1,0,1,'',0,'0000-00-00 00:00:00'),(24,'Unlink','unlink','command','unlink','unlink',2,5,1,0,1,'',0,'0000-00-00 00:00:00'),(25,'Indent','indent','command','indent','indent',2,6,1,0,1,'',0,'0000-00-00 00:00:00'),(26,'Outdent','outdent','command','outdent','outdent',2,7,1,0,1,'',0,'0000-00-00 00:00:00'),(27,'Undo','undo','command','undo','undo',2,8,1,0,1,'',0,'0000-00-00 00:00:00'),(28,'Redo','redo','command','redo','redo',2,9,1,0,1,'',0,'0000-00-00 00:00:00'),(29,'HTML','html','command','code','code',2,10,1,0,1,'',0,'0000-00-00 00:00:00'),(30,'Numbered List','numlist','command','numlist','numlist',2,11,1,0,1,'',0,'0000-00-00 00:00:00'),(31,'Bullet List','bullist','command','bullist','bullist',2,12,1,0,1,'',0,'0000-00-00 00:00:00'),(32,'Clipboard Actions','clipboard','command','cut,copy,paste','clipboard',2,13,1,0,1,'',0,'0000-00-00 00:00:00'),(33,'Anchor','anchor','command','anchor','anchor',2,14,1,0,1,'',0,'0000-00-00 00:00:00'),(34,'Image','image','command','image','image',2,15,1,0,1,'',0,'0000-00-00 00:00:00'),(35,'Link','link','command','link','link',2,16,1,0,1,'',0,'0000-00-00 00:00:00'),(36,'Code Cleanup','cleanup','command','cleanup','cleanup',2,17,1,0,1,'',0,'0000-00-00 00:00:00'),(37,'Directionality','directionality','plugin','ltr,rtl','directionality',3,1,1,0,1,'',0,'0000-00-00 00:00:00'),(38,'Emotions','emotions','plugin','emotions','emotions',3,2,1,0,1,'',0,'0000-00-00 00:00:00'),(39,'Fullscreen','fullscreen','plugin','fullscreen','fullscreen',3,3,1,0,1,'',0,'0000-00-00 00:00:00'),(40,'Preview','preview','plugin','preview','preview',3,4,1,0,1,'',0,'0000-00-00 00:00:00'),(41,'Tables','table','plugin','tablecontrols','buttons',3,5,1,0,1,'',0,'0000-00-00 00:00:00'),(42,'Print','print','plugin','print','print',3,6,1,0,1,'',0,'0000-00-00 00:00:00'),(43,'Horizontal Rule','hr','command','hr','hr',3,7,1,0,1,'',0,'0000-00-00 00:00:00'),(44,'Subscript','sub','command','sub','sub',3,8,1,0,1,'',0,'0000-00-00 00:00:00'),(45,'Superscript','sup','command','sup','sup',3,9,1,0,1,'',0,'0000-00-00 00:00:00'),(46,'Visual Aid','visualaid','command','visualaid','visualaid',3,10,1,0,1,'',0,'0000-00-00 00:00:00'),(47,'Character Map','charmap','command','charmap','charmap',3,11,1,0,1,'',0,'0000-00-00 00:00:00'),(48,'Remove Format','removeformat','command','removeformat','removeformat',3,12,1,0,1,'',0,'0000-00-00 00:00:00'),(49,'Styles','style','plugin','styleprops','style',4,1,1,0,1,'',0,'0000-00-00 00:00:00'),(50,'Non-Breaking','nonbreaking','plugin','nonbreaking','nonbreaking',4,2,1,0,1,'',0,'0000-00-00 00:00:00'),(51,'Visual Characters','visualchars','plugin','visualchars','visualchars',4,3,1,0,1,'',0,'0000-00-00 00:00:00'),(52,'XHTML Xtras','xhtmlxtras','plugin','cite,abbr,acronym,del,ins,attribs','xhtmlxtras',4,4,1,0,1,'',0,'0000-00-00 00:00:00'),(53,'Image Manager','imgmanager','plugin','imgmanager','imgmanager',4,5,1,1,1,'',0,'0000-00-00 00:00:00'),(54,'Advanced Link','advlink','plugin','advlink','advlink',4,6,1,1,1,'',0,'0000-00-00 00:00:00'),(55,'Spell Checker','spellchecker','plugin','spellchecker','spellchecker',4,7,1,1,1,'',0,'0000-00-00 00:00:00'),(56,'Layers','layer','plugin','insertlayer,moveforward,movebackward,absolute','layer',4,8,1,0,1,'',0,'0000-00-00 00:00:00'),(57,'Advanced Code Editor','advcode','plugin','advcode','advcode',4,9,1,0,1,'',0,'0000-00-00 00:00:00'),(58,'Article Breaks','article','plugin','readmore,pagebreak','article',4,10,1,0,1,'',0,'0000-00-00 00:00:00');
/*!40000 ALTER TABLE `jos_jce_plugins` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_menu`
--

DROP TABLE IF EXISTS `jos_menu`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_menu` (
  `id` int(11) NOT NULL auto_increment,
  `menutype` varchar(75) default NULL,
  `name` varchar(255) default NULL,
  `alias` varchar(255) NOT NULL default '',
  `link` text,
  `type` varchar(50) NOT NULL default '',
  `published` tinyint(1) NOT NULL default '0',
  `parent` int(11) unsigned NOT NULL default '0',
  `componentid` int(11) unsigned NOT NULL default '0',
  `sublevel` int(11) default '0',
  `ordering` int(11) default '0',
  `checked_out` int(11) unsigned NOT NULL default '0',
  `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
  `pollid` int(11) NOT NULL default '0',
  `browserNav` tinyint(4) default '0',
  `access` tinyint(3) unsigned NOT NULL default '0',
  `utaccess` tinyint(3) unsigned NOT NULL default '0',
  `params` text NOT NULL,
  `lft` int(11) unsigned NOT NULL default '0',
  `rgt` int(11) unsigned NOT NULL default '0',
  `home` int(1) unsigned NOT NULL default '0',
  PRIMARY KEY  (`id`),
  KEY `componentid` (`componentid`,`menutype`,`published`,`access`),
  KEY `menutype` (`menutype`)
) ENGINE=MyISAM AUTO_INCREMENT=103 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_menu`
--

LOCK TABLES `jos_menu` WRITE;
/*!40000 ALTER TABLE `jos_menu` DISABLE KEYS */;
INSERT INTO `jos_menu` VALUES (1,'main-menu','Home','home','index.php?option=com_content&view=frontpage','component',1,0,20,0,10,0,'0000-00-00 00:00:00',0,0,0,3,'num_leading_articles=1\nnum_intro_articles=4\nnum_columns=2\nnum_links=4\norderby_pri=\norderby_sec=front\nmulti_column_order=1\nshow_pagination=2\nshow_pagination_results=1\nshow_feed_link=1\nshow_noauth=0\nshow_title=1\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\nfeed_summary=\npage_title=Welcome to Threads of Light!\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,1),(2,'main-menu','Ann\"s Writings','anns-writings','index.php?option=com_content&view=article&id=5','component',-2,0,20,0,8,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=0\nshow_title=\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(41,'main-menu','FAQ','faq','index.php?option=com_content&view=section&id=3','component',-2,0,20,0,2,0,'0000-00-00 00:00:00',0,0,0,0,'show_page_title=1\nshow_description=0\nshow_description_image=0\nshow_categories=1\nshow_empty_categories=0\nshow_cat_num_articles=1\nshow_category_description=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\norderby=\nshow_noauth=0\nshow_title=1\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1',0,0,0),(11,'othermenu','Christsweb Forum','christsweb-forum','http://christsweb.net','url',1,0,0,0,7,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\n\n',0,0,0),(12,'othermenu','Joomla! Forums','joomla-forums','http://forum.joomla.org','url',-2,0,0,0,1,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\n\n',0,0,0),(13,'othermenu','Joomla! Documentation','joomla-documentation','http://docs.joomla.org','url',-2,0,0,0,2,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\n\n',0,0,0),(14,'othermenu','Joomla! Community','joomla-community','http://community.joomla.org','url',-2,0,0,0,3,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\n\n',0,0,0),(15,'othermenu','Joomla! Magazine','joomla-community-magazine','http://community.joomla.org/magazine.html','url',-2,0,0,0,4,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\n\n',0,0,0),(16,'othermenu','OSM Home','osm-home','http://www.opensourcematters.org','url',-2,0,0,0,5,0,'0000-00-00 00:00:00',0,0,0,6,'menu_image=-1\n\n',0,0,0),(17,'othermenu','Administrator','administrator','administrator/','url',0,0,0,0,8,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\n\n',0,0,0),(18,'topmenu','News','news','index.php?option=com_newsfeeds&view=newsfeed&id=1&feedid=1','component',0,0,11,0,3,0,'0000-00-00 00:00:00',0,0,0,3,'show_page_title=1\npage_title=News\npageclass_sfx=\nmenu_image=-1\nsecure=0\nshow_headings=1\nshow_name=1\nshow_articles=1\nshow_link=1\nshow_other_cats=1\nshow_cat_description=1\nshow_cat_items=1\nshow_feed_image=1\nshow_feed_description=1\nshow_item_description=1\nfeed_word_count=0\n\n',0,0,0),(20,'usermenu','Your Details','your-details','index.php?option=com_user&view=user&task=edit','component',0,0,14,0,1,0,'0000-00-00 00:00:00',0,0,1,3,'',0,0,0),(24,'usermenu','Logout','logout','index.php?option=com_user&view=login','component',0,0,14,0,4,0,'0000-00-00 00:00:00',0,0,1,3,'',0,0,0),(38,'anns-writings','Lighthouse One','lighthouse-1','index.php?option=com_content&view=article&id=49','component',1,0,20,0,16,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=0\nshow_title=\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(27,'main-menu','Christsweb','christsweb','index.php?option=com_content&view=article&id=19','component',-2,0,20,0,9,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=0\nshow_title=\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(28,'topmenu','Keith','keith','index.php?option=com_content&view=article&id=46','component',0,0,20,0,1,62,'2010-04-02 19:36:05',0,0,0,0,'show_noauth=0\nshow_title=\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(29,'topmenu','Features','features','index.php?option=com_content&view=article&id=22','component',0,0,20,0,2,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=0\nshow_title=\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(30,'topmenu','The Community','the-community','index.php?option=com_content&view=article&id=45','component',0,0,20,0,4,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=0\nshow_title=\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(34,'main-menu','Forum','forum','index.php?option=com_content&view=article&id=22','component',-2,0,20,1,11,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=0\nshow_title=1\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(40,'othermenu','Extensions','extensions','index.php?option=com_content&view=article&id=49','component',-2,0,20,0,6,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=0\nshow_title=\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(37,'main-menu','Out of the Pit','out-of-the-pit','index.php?option=com_content&view=section&id=4','component',-2,0,20,0,7,0,'0000-00-00 00:00:00',0,0,0,0,'show_description=0\nshow_description_image=0\nshow_categories=1\nshow_empty_categories=0\nshow_cat_num_articles=1\nshow_category_description=1\norderby=\norderby_sec=\nshow_feed_link=1\nshow_noauth=0\nshow_title=1\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(43,'anns-writings','Lighthouse Two','example-pages','index.php?option=com_content&view=article&id=56','component',1,0,20,0,17,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=0\nshow_title=\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=0\nshow_modify_date=0\nshow_item_navigation=\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(44,'book','Section Blog','section-blog','index.php?option=com_content&view=section&layout=blog&id=3','component',-2,0,20,0,1,0,'0000-00-00 00:00:00',0,0,0,0,'show_page_title=1\npage_title=Example of Section Blog layout (FAQ section)\nshow_description=0\nshow_description_image=0\nnum_leading_articles=1\nnum_intro_articles=4\nnum_columns=2\nnum_links=4\nshow_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\norderby_pri=\norderby_sec=\nshow_pagination=2\nshow_pagination_results=1\nshow_noauth=0\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\n\n',0,0,0),(45,'book','Section Table','section-table','index.php?option=com_content&view=section&id=3','component',-2,0,20,0,2,0,'0000-00-00 00:00:00',0,0,0,0,'show_page_title=1\npage_title=Example of Table Blog layout (FAQ section)\nshow_description=0\nshow_description_image=0\nshow_categories=1\nshow_empty_categories=0\nshow_cat_num_articles=1\nshow_category_description=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\norderby=\nshow_noauth=0\nshow_title=1\nnlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\n\n',0,0,0),(46,'book','Category Blog','categoryblog','index.php?option=com_content&view=category&layout=blog&id=31','component',-2,0,20,0,3,0,'0000-00-00 00:00:00',0,0,0,0,'show_page_title=1\npage_title=Example of Category Blog layout (FAQs/General category)\nshow_description=0\nshow_description_image=0\nnum_leading_articles=1\nnum_intro_articles=4\nnum_columns=2\nnum_links=4\nshow_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\norderby_pri=\norderby_sec=\nshow_pagination=2\nshow_pagination_results=1\nshow_noauth=0\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\n\n',0,0,0),(47,'book','Category Table','category-table','index.php?option=com_content&view=category&id=32','component',-2,0,20,0,4,0,'0000-00-00 00:00:00',0,0,0,0,'show_page_title=1\npage_title=Example of Category Table layout (FAQs/Languages category)\nshow_headings=1\nshow_date=0\ndate_format=\nfilter=1\nfilter_type=title\npageclass_sfx=\nmenu_image=-1\nsecure=0\norderby_sec=\nshow_pagination=1\nshow_pagination_limit=1\nshow_noauth=0\nshow_title=1\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\n\n',0,0,0),(48,'main-menu','Web Links','web-links','index.php?option=com_weblinks&view=categories','component',-2,0,4,0,4,0,'0000-00-00 00:00:00',0,0,0,0,'page_title=Weblinks\nimage=-1\nimage_align=right\npageclass_sfx=\nmenu_image=-1\nsecure=0\nshow_comp_description=1\ncomp_description=\nshow_link_hits=1\nshow_link_description=1\nshow_other_cats=1\nshow_headings=1\nshow_page_title=1\nlink_target=0\nlink_icons=\n\n',0,0,0),(49,'main-menu','News Feeds','news-feeds','index.php?option=com_newsfeeds&view=categories','component',-2,0,11,0,1,0,'0000-00-00 00:00:00',0,0,0,0,'show_page_title=1\npage_title=Newsfeeds\nshow_comp_description=1\ncomp_description=\nimage=-1\nimage_align=right\npageclass_sfx=\nmenu_image=-1\nsecure=0\nshow_headings=1\nshow_name=1\nshow_articles=1\nshow_link=1\nshow_other_cats=1\nshow_cat_description=1\nshow_cat_items=1\nshow_feed_image=1\nshow_feed_description=1\nshow_item_description=1\nfeed_word_count=0\n\n',0,0,0),(50,'main-menu','The News','the-news','index.php?option=com_content&view=category&layout=blog&id=1','component',-2,0,20,0,5,0,'0000-00-00 00:00:00',0,0,0,0,'show_page_title=1\npage_title=The News\nshow_description=0\nshow_description_image=0\nnum_leading_articles=1\nnum_intro_articles=4\nnum_columns=2\nnum_links=4\nshow_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\norderby_pri=\norderby_sec=\nshow_pagination=2\nshow_pagination_results=1\nshow_noauth=0\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\n\n',0,0,0),(51,'usermenu','Submit an Article','submit-an-article','index.php?option=com_content&view=article&layout=form','component',0,0,20,0,2,0,'0000-00-00 00:00:00',0,0,2,0,'',0,0,0),(52,'usermenu','Submit a Web Link','submit-a-web-link','index.php?option=com_weblinks&view=weblink&layout=form','component',0,0,4,0,3,0,'0000-00-00 00:00:00',0,0,2,0,'',0,0,0),(54,'main-menu','Out of the Pit','out-of-the-pit','http://www.threadsoflight.org/book','url',-2,0,0,0,6,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\n\n',0,0,0),(57,'main-menu','Ann\'s Writings','anns-writings','index.php?option=com_content&view=article&id=48','component',0,0,20,0,14,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(58,'book','Preface','preface','index.php?option=com_content&view=article&id=43','component',1,0,20,0,5,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(53,'main-menu','Christsweb Forum','christsweb-forum','http://www.christsweb.net','url',1,0,0,0,13,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\n\n',0,0,0),(55,'main-menu','Ann\'s Writings','anns-writings','http://www.threadsoflight.org/ann','url',-2,0,0,0,3,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\n\n',0,0,0),(56,'main-menu','Out of the Pit','out-of-the-pit','index.php?option=com_content&view=article&id=43','component',1,0,20,0,12,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(59,'book','Introduction','introduction','index.php?option=com_content&view=article&id=50','component',1,0,20,0,6,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(60,'book','God Did It','god-did-it','index.php?option=com_content&view=article&id=51','component',1,0,20,0,7,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(61,'book','Logos','logos','index.php?option=com_content&view=article&id=52','component',1,0,20,0,8,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(62,'book','Understanding the Temple','understanding-the-temple','index.php?option=com_content&view=article&id=53','component',1,0,20,0,9,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(63,'book','A Little Astronomy','a-little-astromomy','index.php?option=com_content&view=article&id=54','component',1,0,20,0,10,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(64,'book','ExNihilo','exnihilo','index.php?option=com_content&view=article&id=55','component',1,0,20,0,11,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(65,'anns-writings','Charity','charity','index.php?option=com_content&view=article&id=59','component',1,0,20,0,4,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=0\nshow_modify_date=0\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(66,'anns-writings','Lighthouse Three','lighthouse-three','index.php?option=com_content&view=article&id=57','component',1,0,20,0,18,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(67,'anns-writings','Lighthouse Four','lighthouse-four','index.php?option=com_content&view=article&id=58','component',1,0,20,0,19,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(68,'anns-writings','Deny Christ?','deny-christ','index.php?option=com_content&view=article&id=62','component',1,0,20,0,5,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(69,'anns-writings','God Answers','god-answers','index.php?option=com_content&view=article&id=63','component',1,0,20,0,12,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(70,'anns-writings','Giving','giving','index.php?option=com_content&view=article&id=64','component',1,0,20,0,13,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(71,'anns-writings','For Mothers','for-mothers','index.php?option=com_content&view=article&id=61','component',1,0,20,0,10,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(72,'anns-writings','I Shall not Want','i-shall-not-want','index.php?option=com_content&view=article&id=65','component',1,0,20,0,14,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(73,'anns-writings','New Year','new-year','index.php?option=com_content&view=article&id=66','component',1,0,20,0,22,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(74,'anns-writings','Mansions','mansions','index.php?option=com_content&view=article&id=67','component',1,0,20,0,20,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(75,'anns-writings','The Perfect Heart','the-perfet-heart','index.php?option=com_content&view=article&id=68','component',1,0,20,0,23,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(76,'anns-writings','Rescue Ministry','rescue-ministry','index.php?option=com_content&view=article&id=69','component',1,0,20,0,25,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(77,'anns-writings','ResQ','resq','index.php?option=com_content&view=article&id=70','component',1,0,20,0,26,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(78,'anns-writings','Returning','returning','index.php?option=com_content&view=article&id=71','component',1,0,20,0,27,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(79,'anns-writings','Right Notes','right-notes','index.php?option=com_content&view=article&id=72','component',1,0,20,0,29,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(80,'anns-writings','Say So!','say-so','index.php?option=com_content&view=article&id=75','component',1,0,20,0,30,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(81,'anns-writings','Schoolmaster','schoolmaster','index.php?option=com_content&view=article&id=73','component',1,0,20,0,31,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(82,'anns-writings','Simplicity','simplicity','index.php?option=com_content&view=article&id=74','component',1,0,20,0,32,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(83,'anns-writings','Speaking the Truth','speaking-the-truth','index.php?option=com_content&view=article&id=78','component',1,0,20,0,33,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(84,'anns-writings','Testimmony','testimmony','index.php?option=com_content&view=article&id=80','component',1,0,20,0,34,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(85,'anns-writings','The Widow\'s Mite','the-widows-mite','index.php?option=com_content&view=article&id=79','component',1,0,20,0,35,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(86,'anns-writings','What if Jesus came back...','what-if-jesus-came-back','index.php?option=com_content&view=article&id=76','component',1,0,20,0,37,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(87,'anns-writings','Resting','resting','index.php?option=com_content&view=article&id=81','component',-2,0,20,1,2,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(88,'anns-writings','Resting','resting','index.php?option=com_content&view=article&id=81','component',1,0,20,0,28,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(89,'anns-writings','A Mystery','a-mystery','index.php?option=com_content&view=article&id=90','component',1,0,20,0,3,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(90,'anns-writings','Light and Dark','light-and-dark','index.php?option=com_content&view=article&id=89','component',1,0,20,0,15,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(91,'anns-writings','Meaning has growth','meaning-has-growth','index.php?option=com_content&view=article&id=87','component',1,0,20,0,21,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(92,'anns-writings','When are We Saved?','when-are-we-saved','index.php?option=com_content&view=article&id=88','component',1,0,20,0,38,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(93,'anns-writings','Gardening','gardening','index.php?option=com_content&view=article&id=86','component',1,0,20,0,11,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(94,'anns-writings','Temptation','temptation','index.php?option=com_content&view=article&id=85','component',1,0,20,0,24,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(95,'anns-writings','Discipline','discipline','index.php?option=com_content&view=article&id=84','component',1,0,20,0,9,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(96,'anns-writings','Abiding in the Vine','abiding-in-the-vine','index.php?option=com_content&view=article&id=83','component',1,0,20,0,1,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(97,'anns-writings','Dependence','dependence','index.php?option=com_content&view=article&id=82','component',1,0,20,0,8,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(98,'anns-writings','Whiter than Snow','whiter-than-snow','index.php?option=com_content&view=article&id=91','component',1,0,20,0,39,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(99,'anns-writings','Trust','trust','index.php?option=com_content&view=article&id=77','component',1,0,20,0,36,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(100,'anns-writings','Comfort','comfort','index.php?option=com_content&view=article&id=60','component',1,0,20,0,7,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(101,'anns-writings','Choice','choice','index.php?option=com_content&view=article&id=92','component',1,0,20,0,6,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(102,'othermenu','Please read me first.','please-read-me-first','http://www.christsweb.net/community/content.php?118-Welcome-to-Christsweb.-Please-read-me-first.','url',1,0,0,0,9,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\n\n',0,0,0);
/*!40000 ALTER TABLE `jos_menu` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_menu_types`
--

DROP TABLE IF EXISTS `jos_menu_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_menu_types` (
  `id` int(10) unsigned NOT NULL auto_increment,
  `menutype` varchar(75) NOT NULL default '',
  `title` varchar(255) NOT NULL default '',
  `description` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`id`),
  UNIQUE KEY `menutype` (`menutype`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_menu_types`
--

LOCK TABLES `jos_menu_types` WRITE;
/*!40000 ALTER TABLE `jos_menu_types` DISABLE KEYS */;
INSERT INTO `jos_menu_types` VALUES (1,'main-menu','main-menu','The main menu for the site'),(2,'usermenu','User Menu','A Menu for logged in Users'),(3,'topmenu','Top Menu','Top level navigation'),(4,'othermenu','Resources','Additional links'),(5,'book','Book','Out of the Pit'),(6,'anns-writings','Ann\'s Writings','Ann Wilson\'s Writings');
/*!40000 ALTER TABLE `jos_menu_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_messages`
--

DROP TABLE IF EXISTS `jos_messages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_messages` (
  `message_id` int(10) unsigned NOT NULL auto_increment,
  `user_id_from` int(10) unsigned NOT NULL default '0',
  `user_id_to` int(10) unsigned NOT NULL default '0',
  `folder_id` int(10) unsigned NOT NULL default '0',
  `date_time` datetime NOT NULL default '0000-00-00 00:00:00',
  `state` int(11) NOT NULL default '0',
  `priority` int(1) unsigned NOT NULL default '0',
  `subject` text NOT NULL,
  `message` text NOT NULL,
  PRIMARY KEY  (`message_id`),
  KEY `useridto_state` (`user_id_to`,`state`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_messages`
--

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

--
-- Table structure for table `jos_messages_cfg`
--

DROP TABLE IF EXISTS `jos_messages_cfg`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_messages_cfg` (
  `user_id` int(10) unsigned NOT NULL default '0',
  `cfg_name` varchar(100) NOT NULL default '',
  `cfg_value` varchar(255) NOT NULL default '',
  UNIQUE KEY `idx_user_var_name` (`user_id`,`cfg_name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_messages_cfg`
--

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

--
-- Table structure for table `jos_migration_backlinks`
--

DROP TABLE IF EXISTS `jos_migration_backlinks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_migration_backlinks` (
  `itemid` int(11) NOT NULL,
  `name` varchar(100) NOT NULL,
  `url` text NOT NULL,
  `sefurl` text NOT NULL,
  `newurl` text NOT NULL,
  PRIMARY KEY  (`itemid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_migration_backlinks`
--

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

--
-- Table structure for table `jos_modules`
--

DROP TABLE IF EXISTS `jos_modules`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_modules` (
  `id` int(11) NOT NULL auto_increment,
  `title` text NOT NULL,
  `content` text NOT NULL,
  `ordering` int(11) NOT NULL default '0',
  `position` varchar(50) default NULL,
  `checked_out` int(11) unsigned NOT NULL default '0',
  `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
  `published` tinyint(1) NOT NULL default '0',
  `module` varchar(50) default NULL,
  `numnews` int(11) NOT NULL default '0',
  `access` tinyint(3) unsigned NOT NULL default '0',
  `showtitle` tinyint(3) unsigned NOT NULL default '1',
  `params` text NOT NULL,
  `iscore` tinyint(4) NOT NULL default '0',
  `client_id` tinyint(4) NOT NULL default '0',
  `control` text NOT NULL,
  PRIMARY KEY  (`id`),
  KEY `published` (`published`,`access`),
  KEY `newsfeeds` (`module`,`published`)
) ENGINE=MyISAM AUTO_INCREMENT=43 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_modules`
--

LOCK TABLES `jos_modules` WRITE;
/*!40000 ALTER TABLE `jos_modules` DISABLE KEYS */;
INSERT INTO `jos_modules` VALUES (1,'Main Menu','',0,'left',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,1,'menutype=main-menu\nmenu_style=list\nstartLevel=0\nendLevel=0\nshowAllChildren=0\nwindow_open=\nshow_whitespace=0\ncache=1\ntag_id=\nclass_sfx=\nmoduleclass_sfx=_menu\nmaxdepth=10\nmenu_images=0\nmenu_images_align=0\nmenu_images_link=0\nexpand_menu=0\nactivate_parent=0\nfull_active_id=0\nindent_image=0\nindent_image1=\nindent_image2=\nindent_image3=\nindent_image4=\nindent_image5=\nindent_image6=\nspacer=\nend_spacer=\n\n',1,0,''),(2,'Login','',1,'login',0,'0000-00-00 00:00:00',1,'mod_login',0,0,1,'',1,1,''),(3,'Popular','',3,'cpanel',0,'0000-00-00 00:00:00',1,'mod_popular',0,2,1,'',0,1,''),(4,'Recent added Articles','',4,'cpanel',0,'0000-00-00 00:00:00',1,'mod_latest',0,2,1,'ordering=c_dsc\nuser_id=0\ncache=0\n\n',0,1,''),(5,'Menu Stats','',5,'cpanel',0,'0000-00-00 00:00:00',1,'mod_stats',0,2,1,'',0,1,''),(6,'Unread Messages','',1,'header',0,'0000-00-00 00:00:00',1,'mod_unread',0,2,1,'',1,1,''),(7,'Online Users','',2,'header',0,'0000-00-00 00:00:00',1,'mod_online',0,2,1,'',1,1,''),(8,'Toolbar','',1,'toolbar',0,'0000-00-00 00:00:00',1,'mod_toolbar',0,2,1,'',1,1,''),(9,'Quick Icons','',1,'icon',0,'0000-00-00 00:00:00',1,'mod_quickicon',0,2,1,'',1,1,''),(10,'Logged in Users','',2,'cpanel',0,'0000-00-00 00:00:00',1,'mod_logged',0,2,1,'',0,1,''),(11,'Footer','',0,'footer',0,'0000-00-00 00:00:00',1,'mod_footer',0,0,1,'cache=1\n\n',1,1,''),(12,'Admin Menu','',1,'menu',0,'0000-00-00 00:00:00',1,'mod_menu',0,2,1,'',0,1,''),(13,'Admin SubMenu','',1,'submenu',0,'0000-00-00 00:00:00',1,'mod_submenu',0,2,1,'',0,1,''),(14,'User Status','',1,'status',0,'0000-00-00 00:00:00',1,'mod_status',0,2,1,'',0,1,''),(15,'Title','',1,'title',0,'0000-00-00 00:00:00',1,'mod_title',0,2,1,'',0,1,''),(16,'Polls','',1,'right',0,'0000-00-00 00:00:00',1,'mod_poll',0,0,1,'id=14\ncache=1',0,0,''),(17,'User Menu','',4,'left',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,1,1,'menutype=usermenu\nmoduleclass_sfx=_menu\ncache=1',1,0,''),(18,'Login Form','',8,'left',0,'0000-00-00 00:00:00',0,'mod_login',0,0,1,'greeting=1\nname=0',1,0,''),(19,'Latest News','',4,'user1',0,'0000-00-00 00:00:00',1,'mod_latestnews',0,0,1,'cache=1',1,0,''),(20,'Statistics','',6,'left',0,'0000-00-00 00:00:00',0,'mod_stats',0,0,1,'serverinfo=1\nsiteinfo=1\ncounter=1\nincrease=0\nmoduleclass_sfx=',0,0,''),(21,'Who\'s Online','',1,'right',0,'0000-00-00 00:00:00',1,'mod_whosonline',0,0,1,'online=1\nusers=1\nmoduleclass_sfx=',0,0,''),(22,'Popular','',6,'user2',0,'0000-00-00 00:00:00',1,'mod_mostread',0,0,1,'cache=1',0,0,''),(23,'Archive','',9,'left',0,'0000-00-00 00:00:00',0,'mod_archive',0,0,1,'cache=1',1,0,''),(24,'Sections','',10,'left',0,'0000-00-00 00:00:00',1,'mod_sections',0,0,1,'cache=1',1,0,''),(25,'Newsflash','',0,'top',0,'0000-00-00 00:00:00',0,'mod_newsflash',0,0,1,'catid=3\nlayout=default\nimage=0\nlink_titles=\nshowLastSeparator=1\nreadmore=0\nitem_title=0\nitems=\nmoduleclass_sfx=\ncache=0\ncache_time=900\n\n',0,0,''),(26,'Related Items','',11,'left',0,'0000-00-00 00:00:00',0,'mod_related_items',0,0,1,'',0,0,''),(27,'Search','',1,'user4',0,'0000-00-00 00:00:00',1,'mod_search',0,0,0,'cache=1',0,0,''),(28,'Random Image','',9,'right',0,'0000-00-00 00:00:00',1,'mod_random_image',0,0,1,'',0,0,''),(29,'Top Menu','',1,'user3',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,0,'cache=1\nmenutype=topmenu\nmenu_style=list_flat\nmenu_images=n\nmenu_images_align=left\nexpand_menu=n\nclass_sfx=-nav\nmoduleclass_sfx=\nindent_image1=0\nindent_image2=0\nindent_image3=0\nindent_image4=0\nindent_image5=0\nindent_image6=0',1,0,''),(30,'Banners','',1,'footer',0,'0000-00-00 00:00:00',1,'mod_banners',0,0,0,'target=1\ncount=1\ncid=1\ncatid=33\ntag_search=0\nordering=random\nheader_text=\nfooter_text=\nmoduleclass_sfx=\ncache=1\ncache_time=15\n\n',1,0,''),(31,'Forum Discussions','',0,'right',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,1,'menutype=othermenu\nmenu_style=list\nstartLevel=0\nendLevel=0\nshowAllChildren=0\nwindow_open=\nshow_whitespace=0\ncache=1\ntag_id=\nclass_sfx=\nmoduleclass_sfx=_menu\nmaxdepth=10\nmenu_images=0\nmenu_images_align=0\nmenu_images_link=0\nexpand_menu=0\nactivate_parent=0\nfull_active_id=0\nindent_image=0\nindent_image1=\nindent_image2=\nindent_image3=\nindent_image4=\nindent_image5=\nindent_image6=\nspacer=\nend_spacer=\n\n',0,0,''),(32,'Wrapper','',12,'left',0,'0000-00-00 00:00:00',0,'mod_wrapper',0,0,1,'',0,0,''),(33,'Footer','',2,'footer',0,'0000-00-00 00:00:00',1,'mod_footer',0,0,0,'cache=1\n\n',1,0,''),(34,'Feed Display','',13,'left',0,'0000-00-00 00:00:00',0,'mod_feed',0,0,1,'',1,0,''),(35,'Breadcrumbs','',1,'breadcrumb',0,'0000-00-00 00:00:00',1,'mod_breadcrumbs',0,0,1,'moduleclass_sfx=\ncache=0\nshowHome=1\nhomeText=Home\nshowComponent=1\nseparator=\n\n',1,0,''),(36,'Syndication','',3,'syndicate',62,'2010-06-29 04:09:19',1,'mod_syndicate',0,0,0,'',1,0,''),(38,'Advertisement','',3,'right',0,'0000-00-00 00:00:00',0,'mod_banners',0,0,1,'count=4\r\nrandomise=0\r\ncid=0\r\ncatid=14\r\nheader_text=Featured Links:\r\nfooter_text=<a href=\"http://www.joomla.org\">Ads by Joomla!</a>\r\nmoduleclass_sfx=_text\r\ncache=0\r\n\r\n',0,0,''),(39,'Book','',4,'left',62,'2010-06-29 01:39:32',1,'mod_mainmenu',0,0,1,'menutype=book\nmenu_style=list\nstartLevel=0\nendLevel=0\nshowAllChildren=0\nwindow_open=\nshow_whitespace=0\ncache=1\ntag_id=\nclass_sfx=\nmoduleclass_sfx=_menu\nmaxdepth=10\nmenu_images=0\nmenu_images_align=0\nmenu_images_link=0\nexpand_menu=0\nactivate_parent=0\nfull_active_id=0\nindent_image=0\nindent_image1=\nindent_image2=\nindent_image3=\nindent_image4=\nindent_image5=\nindent_image6=\nspacer=\nend_spacer=\n\n',0,0,''),(40,'Ann\'s Writings','',4,'left',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,1,'menutype=anns-writings\nmenu_style=list\nstartLevel=0\nendLevel=0\nshowAllChildren=0\nwindow_open=\nshow_whitespace=0\ncache=1\ntag_id=\nclass_sfx=\nmoduleclass_sfx=_menu\nmaxdepth=10\nmenu_images=0\nmenu_images_align=0\nmenu_images_link=0\nexpand_menu=0\nactivate_parent=0\nfull_active_id=0\nindent_image=0\nindent_image1=\nindent_image2=\nindent_image3=\nindent_image4=\nindent_image5=\nindent_image6=\nspacer=\nend_spacer=\n\n',0,0,''),(41,'Welcome to Joomla!','<div style=\"padding: 5px\">  <p>   Congratulations on choosing Joomla! as your content management system. To   help you get started, check out these excellent resources for securing your   server and pointers to documentation and other helpful resources. </p> <p>   <strong>Security</strong><br /> </p> <p>   On the Internet, security is always a concern. For that reason, you are   encouraged to subscribe to the   <a href=\"http://feedburner.google.com/fb/a/mailverify?uri=JoomlaSecurityNews\" target=\"_blank\">Joomla!   Security Announcements</a> for the latest information on new Joomla! releases,   emailed to you automatically. </p> <p>   If this is one of your first Web sites, security considerations may   seem complicated and intimidating. There are three simple steps that go a long   way towards securing a Web site: (1) regular backups; (2) prompt updates to the   <a href=\"http://www.joomla.org/download.html\" target=\"_blank\">latest Joomla! release;</a> and (3) a <a href=\"http://docs.joomla.org/Security_Checklist_2_-_Hosting_and_Server_Setup\" target=\"_blank\" title=\"good Web host\">good Web host</a>. There are many other important security considerations that you can learn about by reading the <a href=\"http://docs.joomla.org/Category:Security_Checklist\" target=\"_blank\" title=\"Joomla! Security Checklist\">Joomla! Security Checklist</a>. </p> <p>If you believe your Web site was attacked, or you think you have discovered a security issue in Joomla!, please do not post it in the Joomla! forums. Publishing this information could put other Web sites at risk. Instead, report possible security vulnerabilities to the <a href=\"http://developer.joomla.org/security/contact-the-team.html\" target=\"_blank\" title=\"Joomla! Security Task Force\">Joomla! Security Task Force</a>.</p><p><strong>Learning Joomla!</strong> </p> <p>   A good place to start learning Joomla! is the   \"<a href=\"http://docs.joomla.org/beginners\" target=\"_blank\">Absolute Beginner\'s   Guide to Joomla!.</a>\" There, you will find a Quick Start to Joomla!   <a href=\"http://help.joomla.org/ghop/feb2008/task048/joomla_15_quickstart.pdf\" target=\"_blank\">guide</a>   and <a href=\"http://help.joomla.org/ghop/feb2008/task167/index.html\" target=\"_blank\">video</a>,   amongst many other tutorials. The   <a href=\"http://community.joomla.org/magazine/view-all-issues.html\" target=\"_blank\">Joomla!   Community Magazine</a> also has   <a href=\"http://community.joomla.org/magazine/article/522-introductory-learning-joomla-using-sample-data.html\" target=\"_blank\">articles   for new learners</a> and experienced users, alike. A great place to look for   answers is the   <a href=\"http://docs.joomla.org/Category:FAQ\" target=\"_blank\">Frequently Asked   Questions (FAQ)</a>. If you are stuck on a particular screen in the   Administrator (which is where you are now), try clicking the Help toolbar   button to get assistance specific to that page. </p> <p>   If you still have questions, please feel free to use the   <a href=\"http://forum.joomla.org/\" target=\"_blank\">Joomla! Forums.</a> The forums   are an incredibly valuable resource for all levels of Joomla! users. Before   you post a question, though, use the forum search (located at the top of each   forum page) to see if the question has been asked and answered. </p> <p>   <strong>Getting Involved</strong> </p> <p>   <a name=\"twjs\" title=\"twjs\"></a> If you want to help make Joomla! better, consider getting   involved. There are   <a href=\"http://www.joomla.org/about-joomla/contribute-to-joomla.html\" target=\"_blank\">many ways   you can make a positive difference.</a> Have fun using Joomla!.</p></div>',0,'cpanel',0,'0000-00-00 00:00:00',0,'mod_custom',0,2,1,'moduleclass_sfx=\n\n',1,1,''),(42,'Joomla! Security Newsfeed','',6,'cpanel',0,'0000-00-00 00:00:00',1,'mod_feed',0,0,1,'cache=1\ncache_time=15\nmoduleclass_sfx=\nrssurl=http://feeds.joomla.org/JoomlaSecurityNews\nrssrtl=0\nrsstitle=1\nrssdesc=0\nrssimage=1\nrssitems=1\nrssitemdesc=1\nword_count=0\n\n',0,1,'');
/*!40000 ALTER TABLE `jos_modules` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_modules_menu`
--

DROP TABLE IF EXISTS `jos_modules_menu`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_modules_menu` (
  `moduleid` int(11) NOT NULL default '0',
  `menuid` int(11) NOT NULL default '0',
  PRIMARY KEY  (`moduleid`,`menuid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_modules_menu`
--

LOCK TABLES `jos_modules_menu` WRITE;
/*!40000 ALTER TABLE `jos_modules_menu` DISABLE KEYS */;
INSERT INTO `jos_modules_menu` VALUES (1,0),(16,1),(17,0),(18,1),(19,1),(19,2),(19,4),(19,27),(19,36),(21,1),(22,1),(22,2),(22,4),(22,27),(22,36),(25,0),(27,0),(29,0),(30,0),(31,1),(32,0),(33,0),(34,0),(35,0),(36,0),(38,1),(39,1),(39,38),(39,43),(39,53),(39,56),(39,65),(39,66),(39,67),(39,68),(39,69),(39,70),(39,71),(39,72),(39,73),(39,74),(39,75),(39,76),(39,77),(39,78),(39,79),(39,80),(39,81),(39,82),(39,83),(39,84),(39,85),(39,86),(39,88),(39,89),(39,90),(39,91),(39,92),(39,93),(39,94),(39,95),(39,96),(39,97),(39,98),(39,99),(39,100),(39,101),(40,0);
/*!40000 ALTER TABLE `jos_modules_menu` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_newsfeeds`
--

DROP TABLE IF EXISTS `jos_newsfeeds`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_newsfeeds` (
  `catid` int(11) NOT NULL default '0',
  `id` int(11) NOT NULL auto_increment,
  `name` text NOT NULL,
  `alias` varchar(255) NOT NULL default '',
  `link` text NOT NULL,
  `filename` varchar(200) default NULL,
  `published` tinyint(1) NOT NULL default '0',
  `numarticles` int(11) unsigned NOT NULL default '1',
  `cache_time` int(11) unsigned NOT NULL default '3600',
  `checked_out` tinyint(3) unsigned NOT NULL default '0',
  `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
  `ordering` int(11) NOT NULL default '0',
  `rtl` tinyint(4) NOT NULL default '0',
  PRIMARY KEY  (`id`),
  KEY `published` (`published`),
  KEY `catid` (`catid`)
) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_newsfeeds`
--

LOCK TABLES `jos_newsfeeds` WRITE;
/*!40000 ALTER TABLE `jos_newsfeeds` DISABLE KEYS */;
INSERT INTO `jos_newsfeeds` VALUES (4,1,'Joomla! Announcements','joomla-official-news','http://feeds.joomla.org/JoomlaAnnouncements','',1,5,3600,0,'0000-00-00 00:00:00',1,0),(4,2,'Joomla! Core Team Blog','joomla-core-team-blog','http://feeds.joomla.org/JoomlaCommunityCoreTeamBlog','',1,5,3600,0,'0000-00-00 00:00:00',2,0),(4,3,'Joomla! Community Magazine','joomla-community-magazine','http://feeds.joomla.org/JoomlaMagazine','',1,20,3600,0,'0000-00-00 00:00:00',3,0),(4,4,'Joomla! Developer News','joomla-developer-news','http://feeds.joomla.org/JoomlaDeveloper','',1,5,3600,0,'0000-00-00 00:00:00',4,0),(4,5,'Joomla! Security News','joomla-security-news','http://feeds.joomla.org/JoomlaSecurityNews','',1,5,3600,0,'0000-00-00 00:00:00',5,0),(5,6,'Free Software Foundation Blogs','free-software-foundation-blogs','http://www.fsf.org/blogs/RSS',NULL,1,5,3600,0,'0000-00-00 00:00:00',4,0),(5,7,'Free Software Foundation','free-software-foundation','http://www.fsf.org/news/RSS',NULL,1,5,3600,0,'0000-00-00 00:00:00',3,0),(5,8,'Software Freedom Law Center Blog','software-freedom-law-center-blog','http://www.softwarefreedom.org/feeds/blog/',NULL,1,5,3600,0,'0000-00-00 00:00:00',2,0),(5,9,'Software Freedom Law Center News','software-freedom-law-center','http://www.softwarefreedom.org/feeds/news/',NULL,1,5,3600,0,'0000-00-00 00:00:00',1,0),(5,10,'Open Source Initiative Blog','open-source-initiative-blog','http://www.opensource.org/blog/feed',NULL,1,5,3600,0,'0000-00-00 00:00:00',5,0),(6,11,'PHP News and Announcements','php-news-and-announcements','http://www.php.net/feed.atom',NULL,1,5,3600,0,'0000-00-00 00:00:00',1,0),(6,12,'Planet MySQL','planet-mysql','http://www.planetmysql.org/rss20.xml',NULL,1,5,3600,0,'0000-00-00 00:00:00',2,0),(6,13,'Linux Foundation Announcements','linux-foundation-announcements','http://www.linuxfoundation.org/press/rss20.xml',NULL,1,5,3600,0,'0000-00-00 00:00:00',3,0),(6,14,'Mootools Blog','mootools-blog','http://feeds.feedburner.com/mootools-blog',NULL,1,5,3600,0,'0000-00-00 00:00:00',4,0);
/*!40000 ALTER TABLE `jos_newsfeeds` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_plugins`
--

DROP TABLE IF EXISTS `jos_plugins`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_plugins` (
  `id` int(11) NOT NULL auto_increment,
  `name` varchar(100) NOT NULL default '',
  `element` varchar(100) NOT NULL default '',
  `folder` varchar(100) NOT NULL default '',
  `access` tinyint(3) unsigned NOT NULL default '0',
  `ordering` int(11) NOT NULL default '0',
  `published` tinyint(3) NOT NULL default '0',
  `iscore` tinyint(3) NOT NULL default '0',
  `client_id` tinyint(3) NOT NULL default '0',
  `checked_out` int(11) unsigned NOT NULL default '0',
  `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
  `params` text NOT NULL,
  PRIMARY KEY  (`id`),
  KEY `idx_folder` (`published`,`client_id`,`access`,`folder`)
) ENGINE=MyISAM AUTO_INCREMENT=35 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_plugins`
--

LOCK TABLES `jos_plugins` WRITE;
/*!40000 ALTER TABLE `jos_plugins` DISABLE KEYS */;
INSERT INTO `jos_plugins` VALUES (1,'Authentication - Joomla','joomla','authentication',0,1,1,1,0,0,'0000-00-00 00:00:00',''),(2,'Authentication - LDAP','ldap','authentication',0,2,0,1,0,0,'0000-00-00 00:00:00','host=\nport=389\nuse_ldapV3=0\nnegotiate_tls=0\nno_referrals=0\nauth_method=bind\nbase_dn=\nsearch_string=\nusers_dn=\nusername=\npassword=\nldap_fullname=fullName\nldap_email=mail\nldap_uid=uid\n\n'),(3,'Authentication - GMail','gmail','authentication',0,4,0,0,0,0,'0000-00-00 00:00:00',''),(4,'Authentication - OpenID','openid','authentication',0,3,0,0,0,0,'0000-00-00 00:00:00',''),(5,'User - Joomla!','joomla','user',0,0,1,0,0,0,'0000-00-00 00:00:00','autoregister=1\n\n'),(6,'Search - Content','content','search',0,1,1,1,0,0,'0000-00-00 00:00:00','search_limit=50\nsearch_content=1\nsearch_uncategorised=1\nsearch_archived=1\n\n'),(7,'Search - Contacts','contacts','search',0,3,1,1,0,0,'0000-00-00 00:00:00','search_limit=50\n\n'),(8,'Search - Categories','categories','search',0,4,1,0,0,0,'0000-00-00 00:00:00','search_limit=50\n\n'),(9,'Search - Sections','sections','search',0,5,1,0,0,0,'0000-00-00 00:00:00','search_limit=50\n\n'),(10,'Search - Newsfeeds','newsfeeds','search',0,6,1,0,0,0,'0000-00-00 00:00:00','search_limit=50\n\n'),(11,'Search - Weblinks','weblinks','search',0,2,1,1,0,0,'0000-00-00 00:00:00','search_limit=50\n\n'),(12,'Content - Pagebreak','pagebreak','content',0,10000,1,1,0,0,'0000-00-00 00:00:00','enabled=1\ntitle=1\nmultipage_toc=1\nshowall=1\n\n'),(13,'Content - Rating','vote','content',0,4,1,1,0,0,'0000-00-00 00:00:00',''),(14,'Content - Email Cloaking','emailcloak','content',0,5,1,0,0,0,'0000-00-00 00:00:00','mode=1\n\n'),(15,'Content - Code Hightlighter (GeSHi)','geshi','content',0,5,0,0,0,0,'0000-00-00 00:00:00',''),(16,'Content - Load Module','loadmodule','content',0,6,1,0,0,0,'0000-00-00 00:00:00','enabled=1\nstyle=0\n\n'),(17,'Content - Page Navigation','pagenavigation','content',0,2,1,1,0,0,'0000-00-00 00:00:00','position=1\n\n'),(18,'Editor - No Editor','none','editors',0,0,1,1,0,0,'0000-00-00 00:00:00',''),(19,'Editor - TinyMCE','tinymce','editors',0,0,1,1,0,0,'0000-00-00 00:00:00','mode=advanced\nskin=0\ncompressed=0\ncleanup_startup=0\ncleanup_save=2\nentity_encoding=raw\nlang_mode=0\nlang_code=en\ntext_direction=ltr\ncontent_css=1\ncontent_css_custom=\nrelative_urls=1\nnewlines=0\ninvalid_elements=applet\nextended_elements=\ntoolbar=top\ntoolbar_align=left\nhtml_height=550\nhtml_width=750\nelement_path=1\nfonts=1\npaste=1\nsearchreplace=1\ninsertdate=1\nformat_date=%Y-%m-%d\ninserttime=1\nformat_time=%H:%M:%S\ncolors=1\ntable=1\nsmilies=1\nmedia=1\nhr=1\ndirectionality=1\nfullscreen=1\nstyle=1\nlayer=1\nxhtmlxtras=1\nvisualchars=1\nnonbreaking=1\ntemplate=0\nadvimage=1\nadvlink=1\nautosave=1\ncontextmenu=1\ninlinepopups=1\nsafari=1\ncustom_plugin=\ncustom_button=\n\n'),(20,'Editor - XStandard Lite 2.0','xstandard','editors',0,0,0,1,0,0,'0000-00-00 00:00:00',''),(21,'Editor Button - Image','image','editors-xtd',0,0,1,0,0,0,'0000-00-00 00:00:00',''),(22,'Editor Button - Pagebreak','pagebreak','editors-xtd',0,0,1,0,0,0,'0000-00-00 00:00:00',''),(23,'Editor Button - Readmore','readmore','editors-xtd',0,0,1,0,0,0,'0000-00-00 00:00:00',''),(24,'XML-RPC - Joomla','joomla','xmlrpc',0,7,0,1,0,0,'0000-00-00 00:00:00',''),(25,'XML-RPC - Blogger API','blogger','xmlrpc',0,7,0,1,0,0,'0000-00-00 00:00:00','catid=1\nsectionid=0\n\n'),(27,'System - SEF','sef','system',0,1,1,0,0,0,'0000-00-00 00:00:00',''),(28,'System - Debug','debug','system',0,2,1,0,0,0,'0000-00-00 00:00:00','queries=1\nmemory=1\nlangauge=1\n\n'),(29,'System - Legacy','legacy','system',0,3,0,1,0,0,'0000-00-00 00:00:00','route=0\n\n'),(30,'System - Cache','cache','system',0,4,0,1,0,0,'0000-00-00 00:00:00','browsercache=0\ncachetime=15\n\n'),(31,'System - Log','log','system',0,5,0,1,0,0,'0000-00-00 00:00:00',''),(32,'System - Remember Me','remember','system',0,6,1,1,0,0,'0000-00-00 00:00:00',''),(33,'System - Backlink','backlink','system',0,7,0,1,0,0,'0000-00-00 00:00:00',''),(34,'Editor - JCE 1.5.6','jce','editors',0,0,1,0,0,0,'0000-00-00 00:00:00','');
/*!40000 ALTER TABLE `jos_plugins` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_poll_data`
--

DROP TABLE IF EXISTS `jos_poll_data`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_poll_data` (
  `id` int(11) NOT NULL auto_increment,
  `pollid` int(11) NOT NULL default '0',
  `text` text NOT NULL,
  `hits` int(11) NOT NULL default '0',
  PRIMARY KEY  (`id`),
  KEY `pollid` (`pollid`,`text`(1))
) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_poll_data`
--

LOCK TABLES `jos_poll_data` WRITE;
/*!40000 ALTER TABLE `jos_poll_data` DISABLE KEYS */;
INSERT INTO `jos_poll_data` VALUES (1,14,'God',2),(2,14,'Man',3),(3,14,'Fully devine — Fully human',4),(4,14,'A crackpot',0),(5,14,'A great teacher',0),(6,14,'All of the Above!',4),(7,14,'',3),(8,14,'',0),(9,14,'',0),(10,14,'',0),(11,14,'',0),(12,14,'',0);
/*!40000 ALTER TABLE `jos_poll_data` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_poll_date`
--

DROP TABLE IF EXISTS `jos_poll_date`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_poll_date` (
  `id` bigint(20) NOT NULL auto_increment,
  `date` datetime NOT NULL default '0000-00-00 00:00:00',
  `vote_id` int(11) NOT NULL default '0',
  `poll_id` int(11) NOT NULL default '0',
  PRIMARY KEY  (`id`),
  KEY `poll_id` (`poll_id`)
) ENGINE=MyISAM AUTO_INCREMENT=17 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_poll_date`
--

LOCK TABLES `jos_poll_date` WRITE;
/*!40000 ALTER TABLE `jos_poll_date` DISABLE KEYS */;
INSERT INTO `jos_poll_date` VALUES (1,'2006-10-09 13:01:58',1,14),(2,'2006-10-10 15:19:43',7,14),(3,'2006-10-11 11:08:16',7,14),(4,'2006-10-11 15:02:26',2,14),(5,'2006-10-11 15:43:03',7,14),(6,'2006-10-11 15:43:38',7,14),(7,'2006-10-12 00:51:13',2,14),(8,'2007-05-10 19:12:29',3,14),(9,'2007-05-14 14:18:00',6,14),(10,'2007-06-10 15:20:29',6,14),(11,'2007-07-03 12:37:53',2,14),(12,'2010-01-05 14:53:35',3,14),(13,'2010-01-07 05:15:10',6,14),(14,'2010-01-11 22:36:20',3,14),(15,'2010-05-26 14:05:16',6,14),(16,'2011-06-24 04:11:52',3,14);
/*!40000 ALTER TABLE `jos_poll_date` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_poll_menu`
--

DROP TABLE IF EXISTS `jos_poll_menu`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_poll_menu` (
  `pollid` int(11) NOT NULL default '0',
  `menuid` int(11) NOT NULL default '0',
  PRIMARY KEY  (`pollid`,`menuid`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_poll_menu`
--

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

--
-- Table structure for table `jos_polls`
--

DROP TABLE IF EXISTS `jos_polls`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_polls` (
  `id` int(11) unsigned NOT NULL auto_increment,
  `title` varchar(255) NOT NULL default '',
  `alias` varchar(255) NOT NULL default '',
  `voters` int(9) NOT NULL default '0',
  `checked_out` int(11) NOT NULL default '0',
  `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
  `published` tinyint(1) NOT NULL default '0',
  `access` int(11) NOT NULL default '0',
  `lag` int(11) NOT NULL default '0',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_polls`
--

LOCK TABLES `jos_polls` WRITE;
/*!40000 ALTER TABLE `jos_polls` DISABLE KEYS */;
INSERT INTO `jos_polls` VALUES (14,'Who is Jesus?','who-is-jesus',16,0,'0000-00-00 00:00:00',1,0,86400);
/*!40000 ALTER TABLE `jos_polls` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_sections`
--

DROP TABLE IF EXISTS `jos_sections`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_sections` (
  `id` int(11) NOT NULL auto_increment,
  `title` varchar(255) NOT NULL default '',
  `name` varchar(255) NOT NULL default '',
  `alias` varchar(255) NOT NULL default '',
  `image` text NOT NULL,
  `scope` varchar(50) NOT NULL default '',
  `image_position` varchar(30) NOT NULL default '',
  `description` text NOT NULL,
  `published` tinyint(1) NOT NULL default '0',
  `checked_out` int(11) unsigned NOT NULL default '0',
  `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
  `ordering` int(11) NOT NULL default '0',
  `access` tinyint(3) unsigned NOT NULL default '0',
  `count` int(11) NOT NULL default '0',
  `params` text NOT NULL,
  PRIMARY KEY  (`id`),
  KEY `idx_scope` (`scope`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_sections`
--

LOCK TABLES `jos_sections` WRITE;
/*!40000 ALTER TABLE `jos_sections` DISABLE KEYS */;
INSERT INTO `jos_sections` VALUES (1,'News','','news','articles.jpg','content','right','Select a news topic from the list below, then select a news article to read.',1,0,'0000-00-00 00:00:00',3,0,2,''),(3,'FAQs','','faqs','key.jpg','content','left','From the list below choose one of our FAQs topics, then select an FAQ to read. If you have a question which is not in this section, please contact us.',1,0,'0000-00-00 00:00:00',5,0,23,''),(4,'Book','','book','','content','left','<p><span style=\"font-size: x-small;\">This project is the resultant of my life\'s work. </span><span style=\"font-size: x-small;\"><img src=\"images/stories/emc2.gif\" border=\"0\" align=\"right\" /></span><span style=\"font-size: x-small;\">I ask you (the select few) who are reading this work here on the web to candidly comment about my labor on the \"<a href=\"http://www.light.cc/wiki/index.php/HomePage\">wiki</a>\" site I have prepared for you. My intention is to publish. I need you to comment and help me work out any flaws that might impede my my success when presenting this work to a publisher. <img src=\"file:///Users/user/Desktop/sitegroundstuff/public_html/book/images/e=.gif\" border=\"0\" hspace=\"5\" vspace=\"5\" align=\"right\" />If you disagree with the thesis but think it is presented well, please help me to find a common ground with you in Christ. I need your support. This work represents the ability to retire for my wife an myself. If I fail — that\'s OK — let it be God\'s will. If God grants success beyond our needs, we will give the abundance to the poor. I pray that you will help in our endeavor.</span></p>\r\n<p><span style=\"font-size: x-small;\">I worked on this graphical concept for a long time and I believe it is correct. If you can find a flaw in my logic I would apreaciate you letting me know by <a href=\"mailto:keith@christsweb.net\">email</a> or <a href=\"http://christsweb.net/\">forum</a>. Look closely at what is in the shadow.</span></p>',1,0,'0000-00-00 00:00:00',2,0,16,''),(5,'Content','','content','','content','left','',1,0,'0000-00-00 00:00:00',6,0,2,''),(6,'Writings','','anns-writings','','content','left','',1,0,'0000-00-00 00:00:00',7,0,1,'');
/*!40000 ALTER TABLE `jos_sections` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_session`
--

DROP TABLE IF EXISTS `jos_session`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_session` (
  `username` varchar(150) default '',
  `time` varchar(14) default '',
  `session_id` varchar(200) NOT NULL default '0',
  `guest` tinyint(4) default '1',
  `userid` int(11) default '0',
  `usertype` varchar(50) default '',
  `gid` tinyint(3) unsigned NOT NULL default '0',
  `client_id` tinyint(3) unsigned NOT NULL default '0',
  `data` longtext,
  PRIMARY KEY  (`session_id`(64)),
  KEY `whosonline` (`guest`,`usertype`),
  KEY `userid` (`userid`),
  KEY `time` (`time`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_session`
--

LOCK TABLES `jos_session` WRITE;
/*!40000 ALTER TABLE `jos_session` DISABLE KEYS */;
INSERT INTO `jos_session` VALUES ('','1319592623','7df43cbdaf62b6aa1202c24d9cf59533',1,0,'',0,0,'__default|a:7:{s:15:\"session.counter\";i:1;s:19:\"session.timer.start\";i:1319592623;s:18:\"session.timer.last\";i:1319592623;s:17:\"session.timer.now\";i:1319592623;s:22:\"session.client.browser\";s:101:\"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.3) Gecko/20100423 Ubuntu/10.04 (lucid) Firefox/3.6.3\";s:8:\"registry\";O:9:\"JRegistry\":3:{s:17:\"_defaultNameSpace\";s:7:\"session\";s:9:\"_registry\";a:1:{s:7:\"session\";a:1:{s:4:\"data\";O:8:\"stdClass\":0:{}}}s:7:\"_errors\";a:0:{}}s:4:\"user\";O:5:\"JUser\":19:{s:2:\"id\";i:0;s:4:\"name\";N;s:8:\"username\";N;s:5:\"email\";N;s:8:\"password\";N;s:14:\"password_clear\";s:0:\"\";s:8:\"usertype\";N;s:5:\"block\";N;s:9:\"sendEmail\";i:0;s:3:\"gid\";i:0;s:12:\"registerDate\";N;s:13:\"lastvisitDate\";N;s:10:\"activation\";N;s:6:\"params\";N;s:3:\"aid\";i:0;s:5:\"guest\";i:1;s:7:\"_params\";O:10:\"JParameter\":7:{s:4:\"_raw\";s:0:\"\";s:4:\"_xml\";N;s:9:\"_elements\";a:0:{}s:12:\"_elementPath\";a:1:{i:0;s:65:\"/home/threads/public_html/libraries/joomla/html/parameter/element\";}s:17:\"_defaultNameSpace\";s:8:\"_default\";s:9:\"_registry\";a:1:{s:8:\"_default\";a:1:{s:4:\"data\";O:8:\"stdClass\":0:{}}}s:7:\"_errors\";a:0:{}}s:9:\"_errorMsg\";N;s:7:\"_errors\";a:0:{}}}'),('','1319592616','2b0652dac49d8a076735cfe727814a95',1,0,'',0,0,'__default|a:7:{s:15:\"session.counter\";i:1;s:19:\"session.timer.start\";i:1319592616;s:18:\"session.timer.last\";i:1319592616;s:17:\"session.timer.now\";i:1319592616;s:22:\"session.client.browser\";s:82:\"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; WOW64; SV1; .NET CLR 2.0.50727)\";s:8:\"registry\";O:9:\"JRegistry\":3:{s:17:\"_defaultNameSpace\";s:7:\"session\";s:9:\"_registry\";a:1:{s:7:\"session\";a:1:{s:4:\"data\";O:8:\"stdClass\":0:{}}}s:7:\"_errors\";a:0:{}}s:4:\"user\";O:5:\"JUser\":19:{s:2:\"id\";i:0;s:4:\"name\";N;s:8:\"username\";N;s:5:\"email\";N;s:8:\"password\";N;s:14:\"password_clear\";s:0:\"\";s:8:\"usertype\";N;s:5:\"block\";N;s:9:\"sendEmail\";i:0;s:3:\"gid\";i:0;s:12:\"registerDate\";N;s:13:\"lastvisitDate\";N;s:10:\"activation\";N;s:6:\"params\";N;s:3:\"aid\";i:0;s:5:\"guest\";i:1;s:7:\"_params\";O:10:\"JParameter\":7:{s:4:\"_raw\";s:0:\"\";s:4:\"_xml\";N;s:9:\"_elements\";a:0:{}s:12:\"_elementPath\";a:1:{i:0;s:65:\"/home/threads/public_html/libraries/joomla/html/parameter/element\";}s:17:\"_defaultNameSpace\";s:8:\"_default\";s:9:\"_registry\";a:1:{s:8:\"_default\";a:1:{s:4:\"data\";O:8:\"stdClass\":0:{}}}s:7:\"_errors\";a:0:{}}s:9:\"_errorMsg\";N;s:7:\"_errors\";a:0:{}}}'),('','1319592388','71d4bef44065614c14253176518b52a4',1,0,'',0,0,'__default|a:7:{s:15:\"session.counter\";i:1;s:19:\"session.timer.start\";i:1319592388;s:18:\"session.timer.last\";i:1319592388;s:17:\"session.timer.now\";i:1319592388;s:22:\"session.client.browser\";s:83:\"Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)\";s:8:\"registry\";O:9:\"JRegistry\":3:{s:17:\"_defaultNameSpace\";s:7:\"session\";s:9:\"_registry\";a:1:{s:7:\"session\";a:1:{s:4:\"data\";O:8:\"stdClass\":0:{}}}s:7:\"_errors\";a:0:{}}s:4:\"user\";O:5:\"JUser\":19:{s:2:\"id\";i:0;s:4:\"name\";N;s:8:\"username\";N;s:5:\"email\";N;s:8:\"password\";N;s:14:\"password_clear\";s:0:\"\";s:8:\"usertype\";N;s:5:\"block\";N;s:9:\"sendEmail\";i:0;s:3:\"gid\";i:0;s:12:\"registerDate\";N;s:13:\"lastvisitDate\";N;s:10:\"activation\";N;s:6:\"params\";N;s:3:\"aid\";i:0;s:5:\"guest\";i:1;s:7:\"_params\";O:10:\"JParameter\":7:{s:4:\"_raw\";s:0:\"\";s:4:\"_xml\";N;s:9:\"_elements\";a:0:{}s:12:\"_elementPath\";a:1:{i:0;s:65:\"/home/threads/public_html/libraries/joomla/html/parameter/element\";}s:17:\"_defaultNameSpace\";s:8:\"_default\";s:9:\"_registry\";a:1:{s:8:\"_default\";a:1:{s:4:\"data\";O:8:\"stdClass\":0:{}}}s:7:\"_errors\";a:0:{}}s:9:\"_errorMsg\";N;s:7:\"_errors\";a:0:{}}}'),('','1319592330','e60b26d8bd8526894059db4136c88c4c',1,0,'',0,0,'__default|a:7:{s:15:\"session.counter\";i:1;s:19:\"session.timer.start\";i:1319592330;s:18:\"session.timer.last\";i:1319592330;s:17:\"session.timer.now\";i:1319592330;s:22:\"session.client.browser\";s:74:\"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)\";s:8:\"registry\";O:9:\"JRegistry\":3:{s:17:\"_defaultNameSpace\";s:7:\"session\";s:9:\"_registry\";a:1:{s:7:\"session\";a:1:{s:4:\"data\";O:8:\"stdClass\":0:{}}}s:7:\"_errors\";a:0:{}}s:4:\"user\";O:5:\"JUser\":19:{s:2:\"id\";i:0;s:4:\"name\";N;s:8:\"username\";N;s:5:\"email\";N;s:8:\"password\";N;s:14:\"password_clear\";s:0:\"\";s:8:\"usertype\";N;s:5:\"block\";N;s:9:\"sendEmail\";i:0;s:3:\"gid\";i:0;s:12:\"registerDate\";N;s:13:\"lastvisitDate\";N;s:10:\"activation\";N;s:6:\"params\";N;s:3:\"aid\";i:0;s:5:\"guest\";i:1;s:7:\"_params\";O:10:\"JParameter\":7:{s:4:\"_raw\";s:0:\"\";s:4:\"_xml\";N;s:9:\"_elements\";a:0:{}s:12:\"_elementPath\";a:1:{i:0;s:65:\"/home/threads/public_html/libraries/joomla/html/parameter/element\";}s:17:\"_defaultNameSpace\";s:8:\"_default\";s:9:\"_registry\";a:1:{s:8:\"_default\";a:1:{s:4:\"data\";O:8:\"stdClass\":0:{}}}s:7:\"_errors\";a:0:{}}s:9:\"_errorMsg\";N;s:7:\"_errors\";a:0:{}}}'),('','1319592374','e135f03a994fc1e8a6ab57072d3e8c25',1,0,'',0,0,'__default|a:7:{s:15:\"session.counter\";i:1;s:19:\"session.timer.start\";i:1319592374;s:18:\"session.timer.last\";i:1319592374;s:17:\"session.timer.now\";i:1319592374;s:22:\"session.client.browser\";s:83:\"Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)\";s:8:\"registry\";O:9:\"JRegistry\":3:{s:17:\"_defaultNameSpace\";s:7:\"session\";s:9:\"_registry\";a:1:{s:7:\"session\";a:1:{s:4:\"data\";O:8:\"stdClass\":0:{}}}s:7:\"_errors\";a:0:{}}s:4:\"user\";O:5:\"JUser\":19:{s:2:\"id\";i:0;s:4:\"name\";N;s:8:\"username\";N;s:5:\"email\";N;s:8:\"password\";N;s:14:\"password_clear\";s:0:\"\";s:8:\"usertype\";N;s:5:\"block\";N;s:9:\"sendEmail\";i:0;s:3:\"gid\";i:0;s:12:\"registerDate\";N;s:13:\"lastvisitDate\";N;s:10:\"activation\";N;s:6:\"params\";N;s:3:\"aid\";i:0;s:5:\"guest\";i:1;s:7:\"_params\";O:10:\"JParameter\":7:{s:4:\"_raw\";s:0:\"\";s:4:\"_xml\";N;s:9:\"_elements\";a:0:{}s:12:\"_elementPath\";a:1:{i:0;s:65:\"/home/threads/public_html/libraries/joomla/html/parameter/element\";}s:17:\"_defaultNameSpace\";s:8:\"_default\";s:9:\"_registry\";a:1:{s:8:\"_default\";a:1:{s:4:\"data\";O:8:\"stdClass\":0:{}}}s:7:\"_errors\";a:0:{}}s:9:\"_errorMsg\";N;s:7:\"_errors\";a:0:{}}}');
/*!40000 ALTER TABLE `jos_session` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_stats_agents`
--

DROP TABLE IF EXISTS `jos_stats_agents`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_stats_agents` (
  `agent` varchar(255) NOT NULL default '',
  `type` tinyint(1) unsigned NOT NULL default '0',
  `hits` int(11) unsigned NOT NULL default '1'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_stats_agents`
--

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

--
-- Table structure for table `jos_templates_menu`
--

DROP TABLE IF EXISTS `jos_templates_menu`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_templates_menu` (
  `template` varchar(255) NOT NULL default '',
  `menuid` int(11) NOT NULL default '0',
  `client_id` tinyint(4) NOT NULL default '0',
  PRIMARY KEY  (`menuid`,`client_id`,`template`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_templates_menu`
--

LOCK TABLES `jos_templates_menu` WRITE;
/*!40000 ALTER TABLE `jos_templates_menu` DISABLE KEYS */;
INSERT INTO `jos_templates_menu` VALUES ('bluesoul-tg',0,0),('khepri',0,1);
/*!40000 ALTER TABLE `jos_templates_menu` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_users`
--

DROP TABLE IF EXISTS `jos_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_users` (
  `id` int(11) NOT NULL auto_increment,
  `name` varchar(255) NOT NULL default '',
  `username` varchar(150) NOT NULL default '',
  `email` varchar(100) NOT NULL default '',
  `password` varchar(100) NOT NULL default '',
  `usertype` varchar(25) NOT NULL default '',
  `block` tinyint(4) NOT NULL default '0',
  `sendEmail` tinyint(4) default '0',
  `gid` tinyint(3) unsigned NOT NULL default '1',
  `registerDate` datetime NOT NULL default '0000-00-00 00:00:00',
  `lastvisitDate` datetime NOT NULL default '0000-00-00 00:00:00',
  `activation` varchar(100) NOT NULL default '',
  `params` text NOT NULL,
  PRIMARY KEY  (`id`),
  KEY `usertype` (`usertype`),
  KEY `idx_name` (`name`),
  KEY `gid_block` (`gid`,`block`),
  KEY `username` (`username`),
  KEY `email` (`email`)
) ENGINE=MyISAM AUTO_INCREMENT=158 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_users`
--

LOCK TABLES `jos_users` WRITE;
/*!40000 ALTER TABLE `jos_users` DISABLE KEYS */;
INSERT INTO `jos_users` VALUES (62,'Keith Wilson','hac','keith@threadsoflight.org','e10adc3949ba59abbe56e057f20f883e','Super Administrator',0,1,25,'2010-01-02 15:27:11','2011-10-22 11:07:36','','admin_language=\r\nlanguage=\r\neditor=\r\nhelpsite=\r\ntimezone=0\r\n\r\n'),(138,'ZoobeSofinown','ZoobeSofinown','655@42up.com','1c42b76847353183196571a7d4045054:ewlXoaS3FpoXWdW5oZx67rnCzY6BkM9a','Registered',0,0,18,'2010-04-29 15:14:14','0000-00-00 00:00:00','','\n'),(139,'kekReogma','kekReogma','anriellaadams11@gmail.com','fef0e5b1654ccd57137370b4c44d5539:oqLqfGwPxRNu7z2kkEF1DSnoIgzU6USj','Registered',1,0,18,'2010-04-30 01:12:28','0000-00-00 00:00:00','699445e49fce7a66564abafb528889d3','\n'),(140,'Plalaynctut','Plalaynctut','654@42up.com','9067318bb93042b86e5559457e274095:68T9xQ8dlNoBbz78HML7j3HGvGt5iu9t','Registered',0,0,18,'2010-04-30 18:43:59','0000-00-00 00:00:00','','\n'),(141,'Cepaspeft','Cepaspeft','652@42up.com','c335c8f99aa586a50ed6d2d5b7bf564d:FrtyvY8lMQ8zq93N4NZYSCjtSfNf7hJ5','Registered',0,0,18,'2010-05-02 00:04:24','0000-00-00 00:00:00','','\n'),(142,'ladaEndug','ladaEndug','653@42up.com','7747a938fc32611aad8d6ef269e27650:aCfpNAcM9DIC6mWyfEJFLDfuAjBcPs0K','Registered',0,0,18,'2010-05-03 17:32:49','0000-00-00 00:00:00','','\n'),(143,'triapsmistini','triapsmistini','659@42up.com','eba0a8ebda9b8a9fe43f3384cba2e2b7:YrjmCXqrEMmghxgR3Zbzi5TOl8WqjzMR','Registered',0,0,18,'2010-05-09 23:33:58','0000-00-00 00:00:00','','\n'),(144,'spookeAppatte','spookeAppatte','672@26up.com','ba0f3bd7a984e3a7f81897a509ecbaf6:na5aLwOmVOegyQ1ZJ1Wbmj3MlXu0Bwqo','Registered',0,0,18,'2010-06-03 11:20:59','0000-00-00 00:00:00','','\n'),(145,'EmporyLoyatry','EmporyLoyatry','663@26up.com','6922e60e91c7ee5e90c6bbd166c1659e:suub8vbYEWTCyqWBmwcpSqyTPGI82YLm','Registered',0,0,18,'2010-06-04 01:17:40','0000-00-00 00:00:00','','\n'),(146,'arileliWede','arileliWede','669@26up.com','a7a0e16a598aff0c6208ea0482519e7b:R6hpYIJoCQ0yFksiP4GQkUhIltIDEjE0','Registered',0,0,18,'2010-06-11 02:38:50','0000-00-00 00:00:00','','\n'),(147,'aparienip','aparienip','671@26up.com','05a77837d3d8857f87eca7f353209cff:jc4SovPpd3VzIiLgj9OiVeJ70fMKZHHF','Registered',0,0,18,'2010-06-11 03:54:29','0000-00-00 00:00:00','','\n'),(148,'Triaretry','Triaretry','670@26up.com','48cafa68fc82598fd5da18606dbfe314:lHAltikTk9rVgGxSzhhTnSHPpvpdxOaI','Registered',0,0,18,'2010-06-12 05:34:26','0000-00-00 00:00:00','','\n'),(149,'Prineezidinue','Prineezidinue','104@cowletodd.com','deeded0720bb468919d558f806b3fb17:w4GeKeoQYiTRrEhNNNeKvegOaSg8EQ6a','Registered',0,0,18,'2010-08-23 16:00:59','0000-00-00 00:00:00','','\n'),(150,'Redaaperway','Redaaperway','104@uribrodsky.com','6cf8dd6caf92280c73a2f904c7e34784:REKBBxdHkW6NdTzxgvFH0tzhm0bMuMId','Registered',0,0,18,'2010-08-26 02:08:28','0000-00-00 00:00:00','','\n'),(151,'Icermapreed','Icermapreed','idoeh134@gmail.com','76ec6ae724991182468367ecb0a82111:lKZkdG2ISo9qZdNtKA9UJS2PPyY2Zd44','Registered',0,0,18,'2010-08-30 00:52:16','0000-00-00 00:00:00','','\n'),(152,'Evarenciewera','Evarenciewera','idoeh102@gmail.com','ecf730f777811bf6efbf51df778ff450:VWM5AfBwQ8NhuZvG6Nrz2YrE6H9KZ57O','Registered',1,0,18,'2010-09-15 18:54:52','0000-00-00 00:00:00','41d6c504e59c98655d4ed7b8641b05b2','\n'),(153,'EffornTilligo','EffornTilligo','idoeh113@gmail.com','e1e0d1c318cd6f077c00af1e2f471264:1va0mhuyJ6uB75WGcbXLgk6KJxpyK7Ob','Registered',0,0,18,'2010-11-23 16:14:35','0000-00-00 00:00:00','','\n'),(154,'nutPoottKerie','nutPoottKerie','idoeh115@gmail.com','2018804a7b5d9398067a8b4866c19f43:fUDgoTPJjxlByiR7vwO79jcdFy5ev9hX','Registered',0,0,18,'2010-12-27 07:25:19','0000-00-00 00:00:00','','\n'),(155,'Hesundush','Hesundush','idoeh97@gmail.com','6b7fdf66b2b81931a2b56c28fb5febc8:jRFsLCNK7DygNPg25cPJT9bAN1seHLN0','Registered',0,0,18,'2011-01-04 21:40:01','0000-00-00 00:00:00','','\n'),(156,'Chersiscete','Chersiscete','idoeh31@gmail.com','a299fc3e9520f80d77a6ddf4ad86813d:dMXh9wGpeZmgUJv2yfNRCFdWywIAYLGH','Registered',0,0,18,'2011-03-25 17:42:36','0000-00-00 00:00:00','','\n'),(125,'Ann Wilson','annie','ann@christsweb.net','8125f7df77d46d4e7990f5816f8fa96d:XcyORN0s0UJz7SgO6QKpQv52rOmZPftT','Author',0,0,19,'2010-03-17 18:36:03','0000-00-00 00:00:00','','admin_language=en-GB\nlanguage=en-GB\neditor=jce\nhelpsite=\ntimezone=0\n\n'),(157,'baittigodcade','baittigodcade','idoeh32@gmail.com','d3b87947f0466790fc5f71f7d66c81c2:ojSl3xUW1x5j5xKsLAZ1iytfjd84KUZK','Registered',0,0,18,'2011-05-01 21:22:13','0000-00-00 00:00:00','','\n');
/*!40000 ALTER TABLE `jos_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_weblinks`
--

DROP TABLE IF EXISTS `jos_weblinks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_weblinks` (
  `id` int(11) unsigned NOT NULL auto_increment,
  `catid` int(11) NOT NULL default '0',
  `sid` int(11) NOT NULL default '0',
  `title` varchar(250) NOT NULL default '',
  `alias` varchar(255) NOT NULL default '',
  `url` varchar(250) NOT NULL default '',
  `description` text NOT NULL,
  `date` datetime NOT NULL default '0000-00-00 00:00:00',
  `hits` int(11) NOT NULL default '0',
  `published` tinyint(1) NOT NULL default '0',
  `checked_out` int(11) NOT NULL default '0',
  `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
  `ordering` int(11) NOT NULL default '0',
  `archived` tinyint(1) NOT NULL default '0',
  `approved` tinyint(1) NOT NULL default '1',
  `params` text NOT NULL,
  PRIMARY KEY  (`id`),
  KEY `catid` (`catid`,`published`,`archived`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_weblinks`
--

LOCK TABLES `jos_weblinks` WRITE;
/*!40000 ALTER TABLE `jos_weblinks` DISABLE KEYS */;
INSERT INTO `jos_weblinks` VALUES (1,2,0,'Joomla!','joomla','http://www.joomla.org','Home of Joomla!','2005-02-14 15:19:02',51,1,0,'0000-00-00 00:00:00',1,0,1,'target=0'),(2,2,0,'php.net','php','http://www.php.net','The language that Joomla! is developed in','2004-07-07 11:33:24',57,1,0,'0000-00-00 00:00:00',3,0,1,''),(3,2,0,'MySQL','mysql','http://www.mysql.com','The database that Joomla! uses','2004-07-07 10:18:31',54,1,0,'0000-00-00 00:00:00',5,0,1,''),(4,2,0,'OpenSourceMatters','opensourcematters','http://www.opensourcematters.org','Home of OSM','2005-02-14 15:19:02',62,1,0,'0000-00-00 00:00:00',2,0,1,'target=0'),(5,2,0,'Joomla! - Forums','joomla-forums','http://forum.joomla.org','Joomla! Forums','2005-02-14 15:19:02',52,1,0,'0000-00-00 00:00:00',4,0,1,'target=0'),(6,2,0,'Ohloh Tracking of Joomla!','ohloh-tracking-of-joomla','http://www.ohloh.net/projects/20','Objective reports from Ohloh about Joomla\'s development activity. Joomla! has some star developers with serious kudos.','2007-07-19 09:28:31',53,1,0,'0000-00-00 00:00:00',6,0,1,'target=0\n\n');
/*!40000 ALTER TABLE `jos_weblinks` ENABLE KEYS */;
UNLOCK TABLES;
/*!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 2011-10-25 21:35:09

