-- phpMyAdmin SQL Dump
-- version 2.11.4
-- http://www.phpmyadmin.net

-- --------------------------------------------------------

--
-- Table structure for table `#__banner`
--

DROP TABLE IF EXISTS `#__banner`;
CREATE TABLE `#__banner` (
  `bid` int(11) NOT NULL auto_increment,
  `cid` int(11) NOT NULL default '0',
  `type` varchar(90) NOT NULL default 'banner',
  `name` text NOT NULL,
  `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(150) 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`)
) TYPE=MyISAM AUTO_INCREMENT=1 ;

--
-- Dumping data for table `#__banner`
--


-- --------------------------------------------------------

--
-- Table structure for table `#__bannerclient`
--

DROP TABLE IF EXISTS `#__bannerclient`;
CREATE TABLE `#__bannerclient` (
  `cid` int(11) NOT NULL auto_increment,
  `name` text NOT NULL,
  `contact` text NOT NULL,
  `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(150) default NULL,
  PRIMARY KEY  (`cid`)
) TYPE=MyISAM AUTO_INCREMENT=1 ;

--
-- Dumping data for table `#__bannerclient`
--


-- --------------------------------------------------------

--
-- Table structure for table `#__bannertrack`
--

DROP TABLE IF EXISTS `#__bannertrack`;
CREATE TABLE `#__bannertrack` (
  `track_date` date NOT NULL default '0000-00-00',
  `track_type` int(10) unsigned NOT NULL default '0',
  `banner_id` int(10) unsigned NOT NULL default '0'
) TYPE=MyISAM;

--
-- Dumping data for table `#__bannertrack`
--


-- --------------------------------------------------------

--
-- Table structure for table `#__categories`
--

DROP TABLE IF EXISTS `#__categories`;
CREATE TABLE `#__categories` (
  `id` int(11) NOT NULL auto_increment,
  `parent_id` int(11) NOT NULL default '0',
  `title` text NOT NULL,
  `name` text NOT NULL,
  `alias` varchar(255) NOT NULL default '',
  `image` varchar(255) NOT NULL default '',
  `section` varchar(150) NOT NULL default '',
  `image_position` varchar(90) 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(150) 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`)
) TYPE=MyISAM AUTO_INCREMENT=10 ;

--
-- Dumping data for table `#__categories`
--

INSERT INTO `#__categories` VALUES
(1, 0, 'Features', '', 'features', '', '1', 'left', '', 1, 0, '0000-00-00 00:00:00', NULL, 1, 0, 0, ''),
(2, 0, 'Tutorials', '', 'tutorials', '', '1', 'left', '', 1, 0, '0000-00-00 00:00:00', NULL, 2, 0, 0, ''),
(3, 0, 'Typography', '', 'typography', '', '1', 'left', '', 1, 0, '0000-00-00 00:00:00', NULL, 3, 0, 0, ''),
(4, 0, 'J! stuff', '', 'j-stuff', '', '3', 'left', '', 1, 0, '0000-00-00 00:00:00', NULL, 4, 0, 0, ''),
(5, 0, 'FAQ', '', 'faq', '', '3', 'left', '', 1, 0, '0000-00-00 00:00:00', NULL, 4, 0, 0, ''),
(6, 0, 'Contacts', '', 'contacts', '', 'com_contact_details', 'left', '', 1, 0, '0000-00-00 00:00:00', NULL, 1, 0, 0, ''),
(7, 0, 'Joomla', '', 'joomla-license', '', 'com_weblinks', 'left', '', 1, 0, '0000-00-00 00:00:00', NULL, 1, 0, 0, ''),
(8, 0, 'Newsflash', '', 'newsflash', '', '3', 'left', '', 1, 0, '0000-00-00 00:00:00', NULL, 5, 0, 0, ''),
(9, 0, 'Frontpage', '', 'frontpage', '', '2', 'left', '', 1, 0, '0000-00-00 00:00:00', NULL, 1, 0, 0, '');

-- --------------------------------------------------------

--
-- Table structure for table `#__components`
--

DROP TABLE IF EXISTS `#__components`;
CREATE TABLE `#__components` (
  `id` int(11) NOT NULL auto_increment,
  `name` varchar(150) 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` text NOT NULL,
  `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))
) TYPE=MyISAM AUTO_INCREMENT=49 ;

--
-- Dumping data for table `#__components`
--

INSERT INTO `#__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, '', 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, '', 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\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\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=0\nshow_create_date=0\nshow_modify_date=0\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=0\nshow_pdf_icon=0\nshow_print_icon=0\nshow_email_icon=0\nshow_hits=1\nfeed_summary=0\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, 'administrator=en-GB\nsite=en-GB', 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=0\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, 'Community Builder', 'option=com_comprofiler', 0, 0, 'option=com_comprofiler', 'Community Builder', 'com_comprofiler', 0, 'js/ThemeOffice/component.png', 0, '', 1),
(35, 'User Management', '', 0, 34, 'option=com_comprofiler&task=showusers', 'User Management', 'com_comprofiler', 0, 'js/ThemeOffice/users.png', 0, '', 1),
(36, 'Tab Management', '', 0, 34, 'option=com_comprofiler&task=showTab', 'Tab Management', 'com_comprofiler', 1, 'js/ThemeOffice/content.png', 0, '', 1),
(37, 'Field Management', '', 0, 34, 'option=com_comprofiler&task=showField', 'Field Management', 'com_comprofiler', 2, 'js/ThemeOffice/content.png', 0, '', 1),
(38, 'List Management', '', 0, 34, 'option=com_comprofiler&task=showLists', 'List Management', 'com_comprofiler', 3, 'js/ThemeOffice/content.png', 0, '', 1),
(39, 'Plugin Management', '', 0, 34, 'option=com_comprofiler&task=showPlugins', 'Plugin Management', 'com_comprofiler', 4, 'js/ThemeOffice/install.png', 0, '', 1),
(40, 'Tools', '', 0, 34, 'option=com_comprofiler&task=tools', 'Tools', 'com_comprofiler', 5, 'js/ThemeOffice/component.png', 0, '', 1),
(41, 'Configuration', '', 0, 34, 'option=com_comprofiler&task=showconfig', 'Configuration', 'com_comprofiler', 6, 'js/ThemeOffice/config.png', 0, '', 1),
(48, 'FireBoard Forum', 'option=com_fireboard', 0, 0, 'option=com_fireboard', 'FireBoard Forum', 'com_fireboard', 0, '../administrator/components/com_fireboard/images/fbmenu.png', 0, '', 1);

-- --------------------------------------------------------

--
-- Table structure for table `#__comprofiler`
--

DROP TABLE IF EXISTS `#__comprofiler`;
CREATE TABLE `#__comprofiler` (
  `id` int(11) NOT NULL default '0',
  `user_id` int(11) NOT NULL default '0',
  `firstname` varchar(100) default NULL,
  `middlename` varchar(100) default NULL,
  `lastname` varchar(100) default NULL,
  `hits` int(11) NOT NULL default '0',
  `message_last_sent` datetime NOT NULL default '0000-00-00 00:00:00',
  `message_number_sent` int(11) NOT NULL default '0',
  `avatar` varchar(255) default NULL,
  `avatarapproved` tinyint(4) default '1',
  `approved` tinyint(4) NOT NULL default '1',
  `confirmed` tinyint(4) NOT NULL default '1',
  `lastupdatedate` datetime NOT NULL default '0000-00-00 00:00:00',
  `registeripaddr` varchar(50) NOT NULL default '',
  `cbactivation` varchar(50) NOT NULL default '',
  `banned` tinyint(4) NOT NULL default '0',
  `banneddate` datetime default NULL,
  `unbanneddate` datetime default NULL,
  `bannedby` int(11) default NULL,
  `unbannedby` int(11) default NULL,
  `bannedreason` mediumtext,
  `acceptedterms` tinyint(1) NOT NULL default '0',
  `website` varchar(255) default NULL,
  `location` varchar(255) default NULL,
  `occupation` varchar(255) default NULL,
  `interests` varchar(255) default NULL,
  `company` varchar(255) default NULL,
  `address` varchar(255) default NULL,
  `city` varchar(255) default NULL,
  `state` varchar(255) default NULL,
  `zipcode` varchar(255) default NULL,
  `country` varchar(255) default NULL,
  `phone` varchar(255) default NULL,
  `fax` varchar(255) default NULL,
  PRIMARY KEY  (`id`),
  UNIQUE KEY `user_id` (`user_id`),
  KEY `apprconfbanid` (`approved`,`confirmed`,`banned`,`id`),
  KEY `avatappr_apr_conf_ban_avatar` (`avatarapproved`,`approved`,`confirmed`,`banned`,`avatar`),
  KEY `lastupdatedate` (`lastupdatedate`)
) TYPE=MyISAM;

--
-- Dumping data for table `#__comprofiler`
--

INSERT INTO `#__comprofiler` VALUES
(62, 62, NULL, NULL, NULL, 0, '0000-00-00 00:00:00', 0, NULL, 1, 1, 1, '0000-00-00 00:00:00', '', '', 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `#__comprofiler_fields`
--

DROP TABLE IF EXISTS `#__comprofiler_fields`;
CREATE TABLE `#__comprofiler_fields` (
  `fieldid` int(11) NOT NULL auto_increment,
  `name` varchar(50) NOT NULL default '',
  `table` varchar(50) NOT NULL default '#__comprofiler',
  `title` varchar(255) NOT NULL default '',
  `description` mediumtext NOT NULL,
  `type` varchar(50) NOT NULL default '',
  `maxlength` int(11) default NULL,
  `size` int(11) default NULL,
  `required` tinyint(4) default '0',
  `tabid` int(11) default NULL,
  `ordering` int(11) default NULL,
  `cols` int(11) default NULL,
  `rows` int(11) default NULL,
  `value` varchar(50) default NULL,
  `default` mediumtext,
  `published` tinyint(1) NOT NULL default '1',
  `registration` tinyint(1) NOT NULL default '0',
  `profile` tinyint(1) NOT NULL default '1',
  `readonly` tinyint(1) NOT NULL default '0',
  `calculated` tinyint(1) NOT NULL default '0',
  `sys` tinyint(4) NOT NULL default '0',
  `pluginid` int(11) default NULL,
  `params` mediumtext,
  PRIMARY KEY  (`fieldid`),
  KEY `tabid_pub_prof_order` (`tabid`,`published`,`profile`,`ordering`),
  KEY `readonly_published_tabid` (`readonly`,`published`,`tabid`),
  KEY `registration_published_order` (`registration`,`published`,`ordering`)
) TYPE=MyISAM AUTO_INCREMENT=54 ;

--
-- Dumping data for table `#__comprofiler_fields`
--

INSERT INTO `#__comprofiler_fields` VALUES
(41, 'name', '#__users', '_UE_NAME', '', 'predefined', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 1, 0, 1, 1, NULL, NULL),
(26, 'NA', '#__comprofiler', '_UE_ONLINESTATUS', '', 'status', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 1, 0, 1, 1, NULL, NULL),
(27, 'lastvisitDate', '#__users', '_UE_LASTONLINE', '', 'date', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 1, 0, 1, 1, NULL, NULL),
(28, 'registerDate', '#__users', '_UE_MEMBERSINCE', '', 'date', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 1, 0, 1, 1, NULL, NULL),
(29, 'avatar', '#__comprofiler', '_UE_IMAGE', '', 'image', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 1, 0, 1, 1, NULL, NULL),
(42, 'username', '#__users', '_UE_UNAME', '', 'predefined', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 1, 0, 1, 1, NULL, NULL),
(45, 'NA', '#__comprofiler', '_UE_FORMATNAME', '', 'formatname', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 1, 0, 1, 1, NULL, NULL),
(46, 'firstname', '#__comprofiler', '_UE_YOUR_FNAME', '', 'predefined', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 1, 0, 1, 1, NULL, NULL),
(47, 'middlename', '#__comprofiler', '_UE_YOUR_MNAME', '', 'predefined', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 1, 0, 1, 1, NULL, NULL),
(48, 'lastname', '#__comprofiler', '_UE_YOUR_LNAME', '', 'predefined', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 1, 0, 1, 1, NULL, NULL),
(49, 'lastupdatedate', '#__comprofiler', '_UE_LASTUPDATEDON', '', 'date', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 1, 0, 1, 1, NULL, NULL),
(50, 'email', '#__users', '_UE_EMAIL', '', 'primaryemailaddress', NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, 1, 0, 1, 1, NULL, NULL),
(30, 'website', '#__comprofiler', '_UE_Website', '', 'webaddress', 0, 0, 0, 2, 1, 0, 0, NULL, NULL, 1, 0, 1, 0, 0, 0, NULL, NULL),
(31, 'location', '#__comprofiler', '_UE_Location', '', 'text', 50, 25, 0, 2, 2, 0, 0, NULL, NULL, 1, 0, 1, 0, 0, 0, NULL, NULL),
(32, 'occupation', '#__comprofiler', '_UE_Occupation', '', 'text', 0, 0, 0, 2, 3, 0, 0, NULL, NULL, 1, 0, 1, 0, 0, 0, NULL, NULL),
(33, 'interests', '#__comprofiler', '_UE_Interests', '', 'text', 0, 0, 0, 2, 4, 0, 0, NULL, NULL, 1, 0, 1, 0, 0, 0, NULL, NULL),
(34, 'company', '#__comprofiler', '_UE_Company', '', 'text', 0, 0, 0, 2, 5, 0, 0, NULL, NULL, 1, 1, 1, 0, 0, 0, NULL, NULL),
(35, 'city', '#__comprofiler', '_UE_City', '', 'text', 0, 0, 0, 2, 6, 0, 0, NULL, NULL, 1, 1, 1, 0, 0, 0, NULL, NULL),
(36, 'state', '#__comprofiler', '_UE_State', '', 'text', 10, 4, 0, 2, 7, 0, 0, NULL, NULL, 1, 1, 1, 0, 0, 0, NULL, NULL),
(37, 'zipcode', '#__comprofiler', '_UE_ZipCode', '', 'text', 0, 0, 0, 2, 8, 0, 0, NULL, NULL, 1, 1, 1, 0, 0, 0, NULL, NULL),
(38, 'country', '#__comprofiler', '_UE_Country', '', 'text', 0, 0, 0, 2, 9, 0, 0, NULL, NULL, 1, 1, 1, 0, 0, 0, NULL, NULL),
(40, 'address', '#__comprofiler', '_UE_Address', '', 'text', 0, 0, 0, 2, 10, 0, 0, NULL, NULL, 1, 1, 1, 0, 0, 0, NULL, NULL),
(43, 'phone', '#__comprofiler', '_UE_PHONE', '', 'text', 0, 0, 0, 2, 11, 0, 0, NULL, NULL, 1, 1, 1, 0, 0, 0, NULL, NULL),
(44, 'fax', '#__comprofiler', '_UE_FAX', '', 'text', 0, 0, 0, 2, 12, 0, 0, NULL, NULL, 1, 1, 1, 0, 0, 0, NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `#__comprofiler_field_values`
--

DROP TABLE IF EXISTS `#__comprofiler_field_values`;
CREATE TABLE `#__comprofiler_field_values` (
  `fieldvalueid` int(11) NOT NULL auto_increment,
  `fieldid` int(11) NOT NULL default '0',
  `fieldtitle` varchar(255) NOT NULL default '',
  `ordering` int(11) NOT NULL default '0',
  `sys` tinyint(4) NOT NULL default '0',
  PRIMARY KEY  (`fieldvalueid`),
  KEY `fieldid_ordering` (`fieldid`,`ordering`)
) TYPE=MyISAM AUTO_INCREMENT=16 ;

--
-- Dumping data for table `#__comprofiler_field_values`
--


-- --------------------------------------------------------

--
-- Table structure for table `#__comprofiler_lists`
--

DROP TABLE IF EXISTS `#__comprofiler_lists`;
CREATE TABLE `#__comprofiler_lists` (
  `listid` int(11) NOT NULL auto_increment,
  `title` varchar(255) NOT NULL default '',
  `description` mediumtext,
  `published` tinyint(1) NOT NULL default '0',
  `default` tinyint(1) NOT NULL default '0',
  `usergroupids` varchar(255) default NULL,
  `useraccessgroupid` int(9) NOT NULL default '18',
  `sortfields` varchar(255) default NULL,
  `filterfields` varchar(255) default NULL,
  `ordering` int(11) NOT NULL default '0',
  `col1title` varchar(255) default NULL,
  `col1enabled` tinyint(1) NOT NULL default '0',
  `col1fields` mediumtext,
  `col2title` varchar(255) default NULL,
  `col2enabled` tinyint(1) NOT NULL default '0',
  `col1captions` tinyint(1) NOT NULL default '0',
  `col2fields` mediumtext,
  `col2captions` tinyint(1) NOT NULL default '0',
  `col3title` varchar(255) default NULL,
  `col3enabled` tinyint(1) NOT NULL default '0',
  `col3fields` mediumtext,
  `col3captions` tinyint(1) NOT NULL default '0',
  `col4title` varchar(255) default NULL,
  `col4enabled` tinyint(1) NOT NULL default '0',
  `col4fields` mediumtext,
  `col4captions` tinyint(1) NOT NULL default '0',
  PRIMARY KEY  (`listid`),
  KEY `pub_ordering` (`published`,`ordering`),
  KEY `default_published` (`default`,`published`)
) TYPE=MyISAM AUTO_INCREMENT=4 ;

--
-- Dumping data for table `#__comprofiler_lists`
--

INSERT INTO `#__comprofiler_lists` VALUES
(2, 'Members List', 'my Description', 1, 1, '29, 18, 19, 20, 21, 30, 23, 24, 25', -2, '`username` ASC', '', 0, 'Image', 1, '29', 'Username', 1, 0, '42', 0, 'Other', 1, '26|*|28|*|27', 1, '', 0, NULL, 0);

-- --------------------------------------------------------

--
-- Table structure for table `#__comprofiler_members`
--

DROP TABLE IF EXISTS `#__comprofiler_members`;
CREATE TABLE `#__comprofiler_members` (
  `referenceid` int(11) NOT NULL default '0',
  `memberid` int(11) NOT NULL default '0',
  `accepted` tinyint(1) NOT NULL default '1',
  `pending` tinyint(1) NOT NULL default '0',
  `membersince` date NOT NULL default '0000-00-00',
  `reason` mediumtext,
  `description` varchar(255) default NULL,
  `type` mediumtext,
  PRIMARY KEY  (`referenceid`,`memberid`),
  KEY `pamr` (`pending`,`accepted`,`memberid`,`referenceid`),
  KEY `aprm` (`accepted`,`pending`,`referenceid`,`memberid`),
  KEY `membrefid` (`memberid`,`referenceid`)
) TYPE=MyISAM;

--
-- Dumping data for table `#__comprofiler_members`
--


-- --------------------------------------------------------

--
-- Table structure for table `#__comprofiler_plugin`
--

DROP TABLE IF EXISTS `#__comprofiler_plugin`;
CREATE TABLE `#__comprofiler_plugin` (
  `id` int(11) NOT NULL auto_increment,
  `name` varchar(100) NOT NULL default '',
  `element` varchar(100) NOT NULL default '',
  `type` varchar(100) default '',
  `folder` varchar(100) default '',
  `backend_menu` varchar(255) 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`),
  KEY `type_pub_order` (`type`,`published`,`ordering`)
) TYPE=MyISAM AUTO_INCREMENT=500 ;

--
-- Dumping data for table `#__comprofiler_plugin`
--

INSERT INTO `#__comprofiler_plugin` VALUES
(1, 'CB Core', 'cb.core', 'user', 'plug_cbcore', '', 0, 1, 1, 1, 0, 0, '0000-00-00 00:00:00', ''),
(2, 'CB Connections', 'cb.connections', 'user', 'plug_cbconnections', '', 0, 3, 1, 1, 0, 0, '0000-00-00 00:00:00', ''),
(3, 'Content Author', 'cb.authortab', 'user', 'plug_cbmamboauthortab', '', 0, 4, 1, 1, 0, 0, '0000-00-00 00:00:00', ''),
(4, 'Simpleboard Forum', 'cb.simpleboardtab', 'user', 'plug_cbsimpleboardtab', '', 0, 5, 0, 1, 0, 0, '0000-00-00 00:00:00', ''),
(5, 'Mamblog Blog', 'cb.mamblogtab', 'user', 'plug_cbmamblogtab', '', 0, 6, 1, 1, 0, 0, '0000-00-00 00:00:00', ''),
(6, 'YaNC Newsletters', 'yanc', 'user', 'plug_yancintegration', '', 0, 7, 0, 1, 0, 0, '0000-00-00 00:00:00', ''),
(7, 'Default', 'default', 'templates', 'default', '', 0, 1, 1, 1, 0, 0, '0000-00-00 00:00:00', ''),
(8, 'WinClassic', 'winclassic', 'templates', 'winclassic', '', 0, 2, 1, 1, 0, 0, '0000-00-00 00:00:00', ''),
(9, 'WebFX', 'webfx', 'templates', 'webfx', '', 0, 3, 1, 1, 0, 0, '0000-00-00 00:00:00', ''),
(10, 'OSX', 'osx', 'templates', 'osx', '', 0, 4, 1, 1, 0, 0, '0000-00-00 00:00:00', ''),
(11, 'Luna', 'luna', 'templates', 'luna', '', 0, 5, 1, 1, 0, 0, '0000-00-00 00:00:00', ''),
(12, 'Dark', 'dark', 'templates', 'dark', '', 0, 6, 1, 1, 0, 0, '0000-00-00 00:00:00', ''),
(13, 'Default language (English)', 'default_language', 'language', 'default_language', '', 0, -1, 1, 1, 0, 0, '0000-00-00 00:00:00', ''),
(14, 'CB Menu', 'cb.menu', 'user', 'plug_cbmenu', '', 0, 2, 1, 1, 0, 0, '0000-00-00 00:00:00', ''),
(15, 'PMS MyPMS and Pro', 'pms.mypmspro', 'user', 'plug_pms_mypmspro', '', 0, 8, 0, 1, 0, 0, '0000-00-00 00:00:00', '');

-- --------------------------------------------------------

--
-- Table structure for table `#__comprofiler_tabs`
--

DROP TABLE IF EXISTS `#__comprofiler_tabs`;
CREATE TABLE `#__comprofiler_tabs` (
  `tabid` int(11) NOT NULL auto_increment,
  `title` varchar(50) NOT NULL default '',
  `description` text,
  `ordering` int(11) NOT NULL default '0',
  `ordering_register` int(11) NOT NULL default '10',
  `width` varchar(10) NOT NULL default '.5',
  `enabled` tinyint(1) NOT NULL default '1',
  `pluginclass` varchar(255) default NULL,
  `pluginid` int(11) default NULL,
  `fields` tinyint(1) NOT NULL default '1',
  `params` mediumtext,
  `sys` tinyint(4) NOT NULL default '0',
  `displaytype` varchar(255) NOT NULL default '',
  `position` varchar(255) NOT NULL default '',
  `useraccessgroupid` int(9) NOT NULL default '-2',
  PRIMARY KEY  (`tabid`),
  KEY `enabled_position_ordering` (`enabled`,`position`,`ordering`),
  KEY `orderreg_enabled_pos_order` (`enabled`,`ordering_register`,`position`,`ordering`)
) TYPE=MyISAM AUTO_INCREMENT=23 ;

--
-- Dumping data for table `#__comprofiler_tabs`
--

INSERT INTO `#__comprofiler_tabs` VALUES
(11, '_UE_CONTACT_INFO_HEADER', '', -4, 10, '1', 1, 'getContactTab', 1, 1, NULL, 2, 'tab', 'cb_tabmain', -2),
(12, '_UE_AUTHORTAB', '', -3, 10, '1', 0, 'getAuthorTab', 3, 0, NULL, 1, 'tab', 'cb_tabmain', -2),
(13, '_UE_FORUMTAB', '', -2, 10, '1', 0, 'getForumTab', 4, 0, NULL, 1, 'tab', 'cb_tabmain', -2),
(14, '_UE_BLOGTAB', '', -1, 10, '1', 0, 'getBlogTab', 5, 0, NULL, 1, 'tab', 'cb_tabmain', -2),
(15, '_UE_CONNECTION', '', 99, 10, '1', 0, 'getConnectionTab', 2, 0, NULL, 1, 'tab', 'cb_tabmain', -2),
(16, '_UE_NEWSLETTER_HEADER', '_UE_NEWSLETTER_INTRODCUTION', 99, 10, '1', 0, 'getNewslettersTab', 6, 0, NULL, 1, 'tab', 'cb_tabmain', -2),
(17, '_UE_MENU', '', -10, 10, '1', 1, 'getMenuTab', 14, 0, NULL, 1, 'html', 'cb_head', -2),
(18, '_UE_CONNECTIONPATHS', '', -9, 10, '1', 1, 'getConnectionPathsTab', 2, 0, NULL, 1, 'html', 'cb_head', -2),
(19, '_UE_PROFILE_PAGE_TITLE', '', -8, 10, '1', 1, 'getPageTitleTab', 1, 0, NULL, 1, 'html', 'cb_head', -2),
(20, '_UE_PORTRAIT', '', -7, 10, '1', 1, 'getPortraitTab', 1, 0, NULL, 1, 'html', 'cb_middle', -2),
(21, '_UE_USER_STATUS', '', -6, 10, '.5', 1, 'getStatusTab', 14, 0, NULL, 1, 'html', 'cb_right', -2),
(22, '_UE_PMSTAB', '', -5, 10, '.5', 0, 'getmypmsproTab', 15, 0, NULL, 1, 'html', 'cb_right', -2),
(2, 'Additional Info', NULL, 1, 10, '.5', 1, NULL, NULL, 1, NULL, 0, '', 'cb_tabmain', -2);

-- --------------------------------------------------------

--
-- Table structure for table `#__comprofiler_userreports`
--

DROP TABLE IF EXISTS `#__comprofiler_userreports`;
CREATE TABLE `#__comprofiler_userreports` (
  `reportid` int(11) NOT NULL auto_increment,
  `reporteduser` int(11) NOT NULL default '0',
  `reportedbyuser` int(11) NOT NULL default '0',
  `reportedondate` date NOT NULL default '0000-00-00',
  `reportexplaination` text NOT NULL,
  `reportedstatus` tinyint(4) NOT NULL default '0',
  PRIMARY KEY  (`reportid`),
  KEY `status_user_date` (`reportedstatus`,`reporteduser`,`reportedondate`),
  KEY `reportedbyuser_ondate` (`reportedbyuser`,`reportedondate`)
) TYPE=MyISAM AUTO_INCREMENT=11 ;

--
-- Dumping data for table `#__comprofiler_userreports`
--


-- --------------------------------------------------------

--
-- Table structure for table `#__comprofiler_views`
--

DROP TABLE IF EXISTS `#__comprofiler_views`;
CREATE TABLE `#__comprofiler_views` (
  `viewer_id` int(11) NOT NULL default '0',
  `profile_id` int(11) NOT NULL default '0',
  `lastip` varchar(50) NOT NULL default '',
  `lastview` datetime NOT NULL default '0000-00-00 00:00:00',
  `viewscount` int(11) NOT NULL default '0',
  `vote` tinyint(3) default NULL,
  `lastvote` datetime NOT NULL default '0000-00-00 00:00:00',
  PRIMARY KEY  (`viewer_id`,`profile_id`,`lastip`),
  KEY `lastview` (`lastview`),
  KEY `profile_id_lastview` (`profile_id`,`lastview`)
) TYPE=MyISAM;

--
-- Dumping data for table `#__comprofiler_views`
--


-- --------------------------------------------------------

--
-- Table structure for table `#__contact_details`
--

DROP TABLE IF EXISTS `#__contact_details`;
CREATE TABLE `#__contact_details` (
  `id` int(11) NOT NULL auto_increment,
  `name` text NOT NULL,
  `alias` varchar(255) NOT NULL default '',
  `con_position` text,
  `address` text,
  `suburb` text,
  `state` text,
  `country` text,
  `postcode` varchar(255) default NULL,
  `telephone` varchar(255) default NULL,
  `fax` varchar(255) default NULL,
  `misc` mediumtext,
  `image` varchar(255) default NULL,
  `imagepos` varchar(60) 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`)
) TYPE=MyISAM AUTO_INCREMENT=2 ;

--
-- Dumping data for table `#__contact_details`
--

INSERT INTO `#__contact_details` VALUES
(1, 'Administrator', 'admin', 'Administrator', '100 Admin Road', 'Dallas', 'Texas', 'USA', '', '', '', '', '', NULL, 'admin@thissite.com', 0, 1, 0, '0000-00-00 00:00:00', 1, 'show_name=1\nshow_position=1\nshow_email=0\nshow_street_address=1\nshow_suburb=1\nshow_state=1\nshow_postcode=1\nshow_country=1\nshow_telephone=1\nshow_mobile=1\nshow_fax=1\nshow_webpage=1\nshow_misc=1\nshow_image=1\nallow_vcard=0\ncontact_icons=0\nicon_address=\nicon_email=\nicon_telephone=\nicon_mobile=\nicon_fax=\nicon_misc=\nshow_email_form=1\nemail_description=\nshow_email_copy=1\nbanned_email=\nbanned_subject=\nbanned_text=', 62, 6, 0, '', '');

-- --------------------------------------------------------

--
-- Table structure for table `#__content`
--

DROP TABLE IF EXISTS `#__content`;
CREATE TABLE `#__content` (
  `id` int(11) unsigned NOT NULL auto_increment,
  `title` text NOT NULL,
  `alias` varchar(255) NOT NULL default '',
  `title_alias` text NOT NULL,
  `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` text NOT NULL,
  `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`)
) TYPE=MyISAM AUTO_INCREMENT=29 ;

--
-- Dumping data for table `#__content`
--

INSERT INTO `#__content` VALUES
(1, 'Features', 'features', '', '<p><b>Populus</b> continues the chain of impressive, revolutionary, yet functional RocketTheme templates. It combines incredible styling with refined and powerful code to help your website achieve its maximum potential.</p>\r\n\r\n<ul class="arrow-2">\r\n\r\n<li><b><a href="#">8 Preset Style Options</a></b><br />\r\nPopulus includes 8 beautifully rich preset style options for you to use on your site along with subtle hilites for your modules.  The warm, soft colour styles will please your members and enourage new visitors to join in the fun.\r\n</li>\r\n\r\n<li><b><a href="#">Fireboard Forums Integrated</a></b><br />\r\nThe all new Populus template includes custom styling for better integration of the popular Fireboard Joomla forum solution. Using the custom Populus Fireboard theme, you can deploy a great looking forum that will match perfectly with any of the preset Populus color styles!\r\n</li>\r\n\r\n<li><b><a href="#">Community Builder</a></b><br />\r\nThe ever popular Community Builder component has been styled to fit Populus.  Use Community Builder to enhance your community website and give your users a pleasurable experience.\r\n</li>\r\n\r\n<li><b><a href="#">Integrated RokSlide Tabbed Modules</a></b><br />\r\nYou will observe that the modular positions, User10 through User 14 are contained within what appears to be RokSlide. In <b>Populus</b>, the RokSlide effect/functionality has been integrated directly into the template, providing a sleek stylish approach for extra modules, allowing you to created tabbed modules and tabbed module groups.\r\n</li>\r\n\r\n<li><b><a href="#">Stylish Typography</a></b><br />\r\n<b>Populus</b> includes professionally styled typography to bring that extra element to your content. Choose from several typography options including various list styles which not only can have their colours easily changed from the CSS, but also will work anywhere in your template body including modules using a -hilite suffix.\r\n</li>\r\n\r\n<li><b><a href="#">Versatile Layout</a></b><br />\r\nPopulus allows you to switch the side column to either be on the left or right side to suit your preference as well as set the overall width of your site. \r\n</li>\r\n\r\n<li><b><a href="#">22 Module Positions</a></b><br />\r\nWith a Module Position count of 22, as well as support for many more using the new tabbed module functionality, you will be able create a wide variety of layout options and methods for presenting your site''s content.\r\n</li>\r\n\r\n<li><b><a href="#">Menu Extravaganza</a></b><br />\r\nThe new <b>RokMooMenu</b> is now accompanied by its predecessor, <b>Suckerfish</b> in a toggle option so you can easier interchange for maximum compatibility. The popular and versatile <b>SplitMenu</b> is also availble and can be seen in action on this demo by default.\r\n</li>\r\n\r\n<li><b><a href="#">Rocketlauncher Available</a></b><br />\r\nThe Populus RocketLauncher package consists of a full 1.5 Joomla install, complete with all of the demo images, content, modules, and extensions. By running the installer, your Joomla site will be set up with all everything needed to create an exact implementation of the demo site automatically.\r\n</li>\r\n</ul>', '', 1, 1, 0, 1, '2008-01-26 11:30:00', 62, '', '2008-02-09 13:49:07', 62, 0, '0000-00-00 00:00:00', '2008-01-26 11:30: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=', 18, 0, 6, '', '', 0, 57, 'robots=\nauthor='),
(2, 'RocketLauncher', 'rocketlauncher', '', '<div class="contentheading">RocketLauncher - Rapid Template Deployment</div>\r\n\r\n<p>RocketTheme templates features some amazing advanced features and layout possibilities that open up a wide world of options for your sites. Unfortunately, the default Joomla content in a new Joomla install is very limited and does little to take advantage of the abilities of a modern Joomla template.</p>\r\n<p>Each of our demo sites has been highly customized to show off the abilities of each template and give that "professional touch" to the look and feel of the content. This professional look could not be achieved without hands on manual customization, that is, until now.</p>\r\n\r\n<p><b>Populus</b> now features the exciting new RocketLauncher custom Joomla install option. With the RocketLauncher <b>Populus</b> Joomla installer, you can instantly create a Joomla site complete with custom content that is a perfect replica of our <b>Populus</b> demo site that has been professionally tuned to look its best, all with just a few clicks.</p>\r\n\r\n<p>The <b>Populus</b> RocketLauncher package consists of a full Joomla install, complete with all of the demo images, content, modules, and extensions. By running the installer, your Joomla site will be set up with all everything needed to create an exact implementation of the demo site automatically.</p>\r\n\r\n<span class="alert">RocketLauncher includes a FULL Joomla install, in addition to the template and demo contents. The Joomla installation process is necessary in creating the demo content, therefore RocketLauncher will only work properly as a new Joomla installation. It can not be used on an existing Joomla installation.</span><br />\r\n\r\n<h3>Step One: Uploading the RocketLauncher files</h3>\r\n<p>Download the separate <b> Populus </b> RocketLauncher package (Joomla_RT_ Populus_j15.zip) from the <b> Populus </b> template downloads section.</p>\r\n\r\n<p>Unzip the RocketLauncher package, after which you will have a folder named "Joomla_RT_ Populus_j15". Using your FTP client,  upload all of the files <b>inside</b> of the "Joomla_RT_ Populus_j15" folder (not the folder itself) to your server as you would a standard Joomla installation package. You can upload the files with a FTP  client such as <a href="http://filezilla.sourceforge.net/" title="filezilla">Filezilla</a>.</p>\r\n\r\n<a href="http://www.rockettheme.com/option,com_smf/Itemid,190/topic,20046.0/" class="readon">Learn more...</a><br />\r\n\r\n<h3>Step Two: Running the Installer</h3>\r\nPoint your browser to the location where you uploaded your RocketLauncher files (whichever domain/folder you uploaded to, generally the root of your web server). You will then see the Joomla 1.5 installation screen. Follow the Joomla installation on screen instructions. IMPORTANT: Be sure to click the <b>LOAD SAMPLE DATA</b> button in step 6 of the installation in order to load all of the demo content into your installation.', '', 1, 1, 0, 1, '2008-01-26 11:37:01', 62, '', '2008-02-09 20:03:58', 62, 0, '0000-00-00 00:00:00', '2008-01-26 11:37:01', '0000-00-00 00:00:00', '', '', 'show_title=0\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, 5, '', '', 0, 32, 'robots=\nauthor='),
(3, 'Preset Styles', 'preset-styles', '', '<b>Populus</b> is a beautiful, rich design that allows for virtually infinite colour schemes and possibilities. Creating your own colour schemes has never been easier! You can also use one of <b>Populus</b> 8 included preset colour styles by specifying it in the template''s "index.php" file on the following line</p>\r\n\r\n<pre>$default_style = &quot;style1&quot;; [style1... style8]</pre>\r\n\r\n<p>The 8 included colour schemes are featured below, click on the thumbnails to load the color scheme and see it in action.</p>\r\n\r\n<a href="index.php?option=com_content&amp;view=article&amp;id=3&amp;Itemid=4&amp;tstyle=style1"><img src="images/stories/styles/ss_1.jpg" alt="Style1" align="middle" width="150" style="padding:5px;border: 1px solid #eee;margin-right:10px;margin-bottom:10px;" /></a>\r\n\r\n<a href="index.php?option=com_content&amp;view=article&amp;id=3&amp;Itemid=4&amp;tstyle=style2"><img src="images/stories/styles/ss_2.jpg" alt="Style2" align="middle" width="150" style="padding:5px;border: 1px solid #eee;margin-right:10px;margin-bottom:10px" /></a>\r\n\r\n<a href="index.php?option=com_content&amp;view=article&amp;id=3&amp;Itemid=4&amp;tstyle=style3"><img src="images/stories/styles/ss_3.jpg" alt="Style3" align="middle" width="150" style="padding:5px;border: 1px solid #eee;margin-right:10px;margin-bottom:10px;" /></a>\r\n\r\n<a href="index.php?option=com_content&amp;view=article&amp;id=3&amp;Itemid=4&amp;tstyle=style4"><img src="images/stories/styles/ss_4.jpg" alt="Style4" align="middle" width="150" style="padding:5px;border: 1px solid #eee;margin-bottom:10px;" /></a>\r\n\r\n<br />\r\n\r\n<a href="index.php?option=com_content&amp;view=article&amp;id=3&amp;Itemid=4&amp;tstyle=style5"><img src="images/stories/styles/ss_5.jpg" alt="Style5" align="middle" width="150" style="padding:5px;border: 1px solid #eee;margin-right:10px;margin-bottom:10px;" /></a>\r\n\r\n<a href="index.php?option=com_content&amp;view=article&amp;id=3&amp;Itemid=4&amp;tstyle=style6"><img src="images/stories/styles/ss_6.jpg" alt="Style6" align="middle" width="150" style="padding:5px;border: 1px solid #eee;margin-right:10px;margin-bottom:10px" /></a>\r\n\r\n<a href="index.php?option=com_content&amp;view=article&amp;id=3&amp;Itemid=4&amp;tstyle=style7"><img src="images/stories/styles/ss_7.jpg" alt="Style7" align="middle" width="150" style="padding:5px;border: 1px solid #eee;margin-right:10px;margin-bottom:10px;" /></a>\r\n\r\n<a href="index.php?option=com_content&amp;view=article&amp;id=3&amp;Itemid=4&amp;tstyle=style8"><img src="images/stories/styles/ss_8.jpg" alt="Style8" align="middle" width="150" style="padding:5px;border: 1px solid #eee;margin-bottom:10px;" /></a>\r\n\r\n<br />', '', 1, 1, 0, 1, '2008-01-26 11:37:17', 62, '', '2008-02-08 16:06:45', 62, 0, '0000-00-00 00:00:00', '2008-01-26 11:37: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=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', 9, 0, 4, '', '', 0, 24, 'robots=\nauthor='),
(4, 'RokZoom Enabled', 'rokzoom-enable', '', '<p>RokZoom is a custom ground up script written in motools 1.1+ that has the features \r\nof slimbox with an exciting zoom effect transition to give your image galleries and popups \r\nan added flair. <b>Populus</b> fully integrates the JavaScript and the CSS for RokZoom so all \r\nyou have to do to utilize this technique is install the RokZoom mambot and add an extra \r\nelement to your image link.</p>\r\n\r\n<h3>Check out the demo below:</h3>\r\n<div style="width: 540px;">\r\n<a href="images/stories/colorado/image1.jpg" rel="rokzoom[colroado]" title="Colarado Sample Image 1"><img src="images/stories/colorado/image1_tn.jpg" alt="sample image1" class="album" /></a>\r\n<a href="images/stories/colorado/image2.jpg" rel="rokzoom[colroado]" title="Colarado Sample Image 2"><img src="images/stories/colorado/image2_tn.jpg" alt="sample image1" class="album" /></a>\r\n<a href="images/stories/colorado/image3.jpg" rel="rokzoom[colroado]" title="Colarado Sample Image 3"><img src="images/stories/colorado/image3_tn.jpg" alt="sample image3" class="album" /></a>\r\n<a href="images/stories/colorado/image4.jpg" rel="rokzoom[colroado]" title="Colarado Sample Image 4"><img src="images/stories/colorado/image4_tn.jpg" alt="sample image4" class="album" /></a>\r\n<a href="images/stories/colorado/image5.jpg" rel="rokzoom[colroado]" title="Colarado Sample Image 5"><img src="images/stories/colorado/image5_tn.jpg" alt="sample image5" class="album" /></a>\r\n<a href="images/stories/colorado/image6.jpg" rel="rokzoom[colroado]" title="Colarado Sample Image 6"><img src="images/stories/colorado/image6_tn.jpg" alt="sample image6" class="album" /></a>\r\n<a href="images/stories/colorado/image7.jpg" rel="rokzoom[colroado]" title="Colarado Sample Image 7"><img src="images/stories/colorado/image7_tn.jpg" alt="sample image7" class="album" /></a>\r\n<a href="images/stories/colorado/image8.jpg" rel="rokzoom[colroado]" title="Colarado Sample Image 8"><img src="images/stories/colorado/image8_tn.jpg" alt="sample image8" class="album" /></a>\r\n</div>\r\n\r\n\r\n<h3><a name="syntax1" href="#syntax1">The Syntax</a></h3>\r\n<p>Below is the HTML syntax that you will have to use. Simply place this into your articles.</p>\r\n\r\n<pre>\r\n&lt;a href=&quot;images/stories/colorado/image1.jpg&quot; rel=&quot;rokzoom[colroado]&quot;&nbsp;title=&quot;Image 1&quot;&gt;\r\n&lt;img src=&quot;images/stories/colorado/image1_tn.jpg&quot; alt=&quot;image1&quot; class=&quot;album&quot; /&gt;\r\n&lt;/a&gt;\r\n</pre>\r\n\r\n<p> An exemplified preview is constructed below to aid your understanding of the HTML format of rokzoom</p>\r\n\r\n<pre>\r\n&lt;a href=&quot;main image url(relative path)&quot; rel=&quot;rokzoom[album name]&quot; title=&quot;Title&quot;&gt;\r\n&lt;img src=&quot;thumbnail url(relative)&quot; alt=&quot;Image name&quot; class=&quot;album&quot; /&gt;\r\n&lt;/a&gt; \r\n</pre>\r\n\r\n<h3><a name="zoomguide" href="#zoomguide">RokZoom - The Guide</a></h3>\r\n<h3>How to implement RokZoom</h3>\r\n\r\n<p>RokZoom galleries or single images can be inserted in Content and Custom modules. By utilising a few simple commands, you can\r\neasily insert a gallery onto your page.</p>\r\n\r\n<div style="float:left;width:48%;margin-right:10px;">\r\n<h3><a href="#step1" name="step1">Step 1 - Login</a></h3>\r\nLogin to the Joomla! Administration Control Panel. Go to <a name="yoursite" href="#yoursite">www.yoursite.com/administrator</a>. Enter the Administrator''s Username and password.\r\n<br /><br />\r\n<img alt="RokZoom" style="border:3px solid #ddd;margin-bottom: 15px;margin-top:10px;display:block;" width="300" src="images/tutorial/rokzoom/zoom15a.jpg"/>\r\n\r\n</div>\r\n\r\n<div style="float:left;width:48%;">\r\n<h3><a href="#step2" name="step2">Step 2 - Navigation</a></h3>\r\nNavigate to the Article Manager. Once you have logged in, hover over the\r\nContent link on the top taskbar, scroll down to Article Manager.\r\n<br /><br />\r\n<img alt="RokZoom" style="border:3px solid #ddd;margin-bottom: 15px;margin-top:10px;display:block;" width="300" src="images/tutorial/rokzoom/zoom15b.jpg"/>\r\n\r\n</div>\r\n\r\n<div class="clr"></div>\r\n\r\n<div style="float:left;width:48%;margin-right:10px;">\r\n<h3><a name="step3" href="#step3">Step 3 - Article Content Manager</a></h3>\r\nWhen you have selected the Article Manager link, you will be sent to\r\nthe Article Manager control panel. Select either Edit or New,\r\ndepending on whether you want to add rokzoom to an existing or new item.\r\n<br />\r\n<img src="images/tutorial/rokzoom/zoom15c.jpg" width="300" style="border:3px solid #ddd; margin-bottom: 15px; margin-top: 10px; display: block;" alt="RokZoom"/>\r\n\r\n</div>\r\n\r\n<div style="float:left;width:48%;">\r\n<h3><a href="#step4" name="step4">Step 4 - RokZoom Commands</a></h3>\r\nYou now need to enter the syntax into your content editor. This should resemble the screenshot\r\nbelow. The syntax, in both HTML can be found at the section located\r\n<a href="#syntax1">here</a>.\r\n<br />\r\n<img src="images/tutorial/rokzoom/zoom15d.jpg" width="300" style="border:3px solid #ddd;margin-bottom: 15px; margin-top: 26px; display: block;" alt="RokZoom"/>\r\n\r\n</div>\r\n\r\n<div class="clr"></div>\r\n\r\n<div>\r\n<h3><a href="#step5" name="step5">The Examples</a></h3>\r\n<img alt="RokZoom" style="border:3px solid #ddd;margin-right: 10px;" src="images/tutorial/rokzoom/sim_zoom5.jpg" align="left" />\r\nFor the examples of the rokzoom command, all images are located within\r\nthe directory images/stories/photos. If we wanted to load image1.jpg by\r\nitself, we would enter:\r\n<pre>\r\n&lt;a href=&quot;images/stories/photos/image1.jpg&quot; \r\nrel=&quot;rokzoom[colroado]&quot;&nbsp;title=&quot;Image 1&quot;&gt;\r\n&lt;img src=&quot;images/stories/colorado/image1_tn.jpg&quot; \r\nalt=&quot;image1&quot; class=&quot;album&quot; /&gt;&lt;/a&gt;\r\n</pre>\r\n<br /><br />\r\n<img alt="RokZoom" style="border:3px solid #ddd;" src="images/tutorial/rokzoom/sim_zoom6.jpg" align="right" />\r\nIf we wanted to load photo1.jpg, photo2.jpg and photo3.jpg as part of an album, we would use the following syntax:\r\n<pre>\r\n&lt;a href=&quot;images/photos/image1.jpg&quot; \r\nrel=&quot;rokzoom[photo]&quot;&nbsp;title=&quot;Image 1&quot;&gt;\r\n&lt;img src=&quot;images/photos/image1_tn.jpg&quot; \r\nalt=&quot;image1&quot; class=&quot;album&quot; /&gt;\r\n&lt;/a&gt;\r\n\r\n&lt;a href=&quot;images/photos/image2.jpg&quot; rel=&quot;rokzoom[photo]&quot;&nbsp;title=&quot;Image 1&quot;&gt;\r\n&lt;img src=&quot;images/photos/image2_tn.jpg&quot; alt=&quot;image1&quot; class=&quot;album&quot; /&gt;\r\n&lt;/a&gt;\r\n\r\n&lt;a href=&quot;images/stories/photos/image3.jpg&quot; rel=&quot;rokzoom[photo]&quot;&nbsp;title=&quot;Image 1&quot;&gt;\r\n&lt;img src=&quot;images/stories/photos/image3_tn.jpg&quot; alt=&quot;image1&quot; class=&quot;album&quot; /&gt;\r\n&lt;/a&gt;\r\n</pre>\r\n<br /><br />\r\n</div>', '', 1, 1, 0, 1, '2008-01-26 11:38:19', 62, '', '2008-02-08 16:07:01', 62, 0, '0000-00-00 00:00:00', '2008-01-26 11:38:19', '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, 18, 'robots=\nauthor='),
(5, 'Menu Options', 'menu-options', '', '<p><b>MediaMogul</b> features the exciting and exclusive RokMooMenu system for the ultimate in menu functionality and style, as well as the popular and reliable RTSplitMenu. An option for Suckerfish is also included. Here you can read an overview of the <b>MediaMogul</b> menu configuration options.</p>\r\n\r\n<span class="note">\r\n<b>Video Tutorial Currently Available!</b><br/>\r\n<a href="http://tutorials.rockettheme.com/video/menu_configuration/menu_config.v1.2.html">Launch the Joomla Menu Setup Video Tutorial now!</a> <i>(Requires Flash)</i></span>\r\n\r\n<h2>Selecting your Menu Style</h2>\r\n\r\n<p><b>MediaMogul</b> allows you to choose from 3 menu options:</p>\r\n\r\n<ul class="star-2">\r\n<li style="margin-bottom:0px;"><b><a href="index.php?option=com_content&amp;view=article&amp;id=5&amp;Itemid=6&amp;mtype=moomenu">RokMooMenu</a></b> - The exciting new menu system based on the ever popular Suckerfish menu style, featuring mootools powered transitions and effects.</li>\r\n<li style="margin-bottom:0px;"><b><a href="index.php?option=com_content&amp;view=article&amp;id=5&amp;Itemid=6&amp;mtype=suckerfish">Suckerfish</a></b> - The versatile dropdown menu is now an option in combination with RokMooMenu to minimise library conflicts.</li>\r\n<li style="margin-bottom:0px;"><b><a href="index.php?option=com_content&amp;view=article&amp;id=5&amp;Itemid=6&amp;mtype=splitmenu">SplitMenu</a></b> - Then venerable SplitMenu is a solid choice for navigation.  It works by rendering the top-level menu options horizontally, and the submenu/child items are rendered in a module on the side.</li>\r\n</ul>\r\n\r\n<p>You can designate which menu style you want to use on your site with a single control in the template''s <b>Admin interface</b> at <b><u>Admin > Extensions > Template Manager > MediaMogul</u></b></p>\r\n\r\n<img src="images/tutorial/menu/menu-config.jpg" alt="menu-config" /><br />\r\n\r\n<div class="clr"></div>\r\n\r\n<div style="width:65%;padding-right:20px;float:left;border-right:1px solid #eee;">\r\n<h3><a name="moomenu1" href="#moomenu1">The Powerful &amp; Popular RokMooMenu</a></h3>\r\nMaking its return this month is the immensely popular RokMooMenu. This menu has been developed from scratch using the latest and greatest MooTools JavaScript framework. The RokMooMenu is a highly advanced and fully customizable menu system. Some of the great features include:\r\n<ul class="triangle-2">\r\n<li style="margin-bottom:3px;">Hover support for IE6 using the sfHover javascript class just like in Suckerfish.</li>\r\n<li style="margin-bottom:3px;">Fully degradable to standard SuckerFish menu if javascript is not supported.</li>\r\n<li style="margin-bottom:3px;">Configurable mouse-out delay to allow for accidental mousing out of the menu.</li>\r\n<li style="margin-bottom:3px;">Completely customizable animation effects using MooTools transitions. Can be configured in X and/or Y directions.</li>\r\n<li style="margin-bottom:3px;">Support for fade-in transparency</li>\r\n<li style="margin-bottom:3px;">Experimental support for IE6 z-index bug using the iFrame hack.</li>\r\n</ul>\r\nAn example configuration as used in the demo:\r\n<pre style="width:370px;">\r\n&lt;script type=&quot;text/javascript&quot;&gt;\r\nwindow.addEvent(''domready'', function() {\r\nnew Rokmoomenu($E(''ul.menutop''), {\r\nbgiframe: false,\r\ndelay: 500,\r\nanimate: {\r\nprops: [''opacity'', ''width'', ''height''],\r\nopts: {\r\nduration:400,\r\nfps: 100,\r\ntransition: Fx.Transitions.Expo.easeOut\r\n}\r\n}\r\n});\r\n});\r\n&lt;/script&gt;</pre>\r\n</div>\r\n\r\n<div style="float:left;width:30%;">\r\n<h3 style="text-align:center;">Menu Settings</h3>\r\n<ul class="arrow-2">\r\n<li><b>Bgiframe</b> - Can be <b>true</b> or <b>false</b>. Only turn on if you are having problems with IE and z-index. This feature is experimental.</li>\r\n\r\n<li><b>Delay</b> - Defaults to 500ms. This is the how <b>long</b> you can mouse off the menu before it vanishes.</li>\r\n\r\n<li><b>Props</b> - These are the <b>properties</b> that will be applied to the menu. Can be any combination of opacity, width, height. The two properties, width and height are affected by the transition defined in opts.</li>\r\n\r\n<li><b>Duration</b> - the <b>time</b> in ms the animation will run for.</li>\r\n\r\n<li><b>Fps</b> - <b>speed</b> of the animation - leave at 100 for best results.</li>\r\n\r\n<li><b>Transitions</b> - any of the available <a href="http://mootools.net"><b>MooTools</b></a> transitions. See below for more details.<br />For example, &quot;<b>Bounce.easeIn</b> or <b>Bounce.easeOut</b> or <b>Bounce.easeInOut</b>&quot; produce a bouncing effect.</li>\r\n</ul>\r\n</div>\r\n\r\n<div class="clr"></div>\r\n\r\n<img src="images/tutorial/menu/moo-config.jpg" alt="moo-config" />\r\n\r\n<span class="info">For more details with diagrams, visit the <a href="http://docs.mootools.net/Effects/Fx-Transitions.js">Mootools documentation site</a></span>\r\n\r\n<h3><a name="guide" href="#guide">Creating dropdown menus for RokMooMenu and Suckerfish</a></h3>\r\nTo have specific menu items appear as sub items, you must assign them to the specific navigation item in which they will originate from. The following tutorial will show you how simple it is to create your ideal menu system.<br /><br />\r\n\r\n<div>\r\n<div style="border:1px dotted #eee;padding:10px;float:left;width:46%;margin-right:1%;">\r\n<h3 style="font-size:120%;margin-top:5px;margin-bottom:0px;"><a name="step1" href="#step1">Step 1 - Navigation</a></h3>\r\nOnce you have logged into the Joomla! Administration Area, you must navigate to the Menu area. Hover over the Menu item in the taskbar to show the dropdown menu. For this example, we are going into the mainmenu but the technique is exactly the same for all menus in the Administrative area.\r\n</div>\r\n\r\n<div style="border:1px dotted #eee;padding:10px;float:left;width:46%;">\r\n<h3 style="font-size:120%;margin-top:5px;margin-bottom:0px;"><a href="#step2" name="step2">Step 2 - The Menu Manager</a></h3>\r\nYou will then be transported to the Menu Manager for mainmenu. At this point, you can do 2 things. The first is to edit an existing menu item, which we will be doing in this tutorial or create a New menu item to be subordinate to an existing item. Click on the item you want to be part of the dropdown menu.\r\n</div>\r\n\r\n<div style="border:1px dotted #eee;padding:10px;float:left;width:97%;margin-top: 10px;">\r\n<h3 style="font-size:120%;margin-top:5px;margin-bottom:0px;"><a href="#step3" name="step3">Step 3 - Assigning a Parent Item</a></h3>\r\nYou can now assign the content item to the mainmenu item in which you want to be in the dropdown menu. Identify the "Parent Item" section of the manager. You will select the item in which you wish to be the parent and the source of the dropdown menu. In this example, we have selected "Home".\r\n<br/><br/>\r\n</div>\r\n\r\n</div>', '', 1, 1, 0, 2, '2008-01-26 11:38:36', 62, '', '2008-02-08 16:12:16', 62, 0, '0000-00-00 00:00:00', '2008-01-26 11:38:36', '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=', 17, 0, 7, '', '', 0, 38, 'robots=\nauthor='),
(6, 'Module Positions', 'module-positions', '', '<p><strong>Populus</strong> has been constructed with an assortment of 22 module \r\npositions. These module positions are fully collapsible meaning that if there are \r\nno modules published in a particular area, that module area will not be \r\nshown. This provides you with the maximum amount of flexibility possible.</p>\r\n\r\n<div align="center"><img src="images/module-positions.jpg" alt="Module Positions" style="padding:5px;border:3px solid #eee" /></div>', '', 1, 1, 0, 1, '2008-01-26 11:39:08', 62, '', '2008-02-08 16:12:38', 62, 0, '0000-00-00 00:00:00', '2008-01-26 11:39: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=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', 5, 0, 2, '', '', 0, 12, 'robots=\nauthor='),
(7, 'Module Variations', 'module-variations', '', '<p><b>Populus</b> provides the ability to use 7 subtle module variations to increase the appeal of your module content and highlight key areas.  Through the use of these module suffixes, you can make any module stand out on your site. To use these, just add <b>-hilite1</b>, <b>-hilite2</b>, <b>-hilite3</b>, <b>-hilite4</b>, <b>-hilite5</b>, <b>-hilite6</b>, or <b>-hilite7</b> in the <b>module class suffix</b> parameter of the module in the <b>Module Manager</b> located in your Joomla administrator.</p>\r\n\r\n<img alt="Module Suffix Setting" src="images/stories/hilite.jpg" />', '', 1, 1, 0, 1, '2008-01-26 11:39:36', 62, '', '2008-02-08 17:14:28', 62, 0, '0000-00-00 00:00:00', '2008-01-26 11:39:36', '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=', 4, 0, 1, '', '', 0, 32, 'robots=\nauthor='),
(8, 'Typography', 'typography', '', '<blockquote><p>This page shows all of the typography styles and settings for Populus in action. If you would like to read more detailed information on inserting the included typography into your content, check out the <a href="index.php?option=com_content&amp;view=article&amp;id=14&amp;Itemid=16">Populus Typography Tutorial.</a></p></blockquote>\r\n\r\n<div class="componentheading">This is a ComponentHeading</div> \r\n\r\n\r\n<p>Praesent rutrum sapien ac felis. Phasellus elementum dolor quis turpis. Vestibulum nec mi vitae pede tincidunt nonummy. Vestibulum facilisis mollis neque. Sed orci. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Sed euismod magna a nibh.</p>\r\n\r\n<div class="contentheading">This is a Contentheading</div>\r\n\r\n<p>Proin ac nunc eu nunc condimentum accumsan. Phasellus odio justo, euismod vitae, egestas a, porttitor in, urna. Maecenas vitae mauris. Donec vestibulum, nunc eu varius pharetra, massa est sagittis odio, sit amet eleifend elit dolor id tortor. </p>\r\n\r\n<h1>This is an H1 Header</h1>\r\n\r\n<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Proin sit amet odio quis sapien molestie ultrices. Vivamus quis lectus. Praesent eu mi. Curabitur pharetra leo sed nisl. Nunc vel nisi. Aliquam nulla. Etiam at est. Pellentesque arcu diam, tempus nec, sodales eu, ullamcorper quis, risus. </p>\r\n\r\n\r\n<h5>Notice Styles are shown below</h5>\r\n\r\n<span class="alert">This is a sample of the ''alert'' style.  Use this style to denote very important information to your users. To use this use the folllowing html: <b>&lt;span class="alert"&gt;....&lt;/span&gt;</b></span>\r\n\r\n<span class="info">This is a sample of the ''info'' style.  Use this style to denote pieces of information or tips for your readers and visitors. To use this use the folllowing html: <b>&lt;span class="info"&gt;....&lt;/span&gt;</b></span>\r\n\r\n<span class="note">This is a sample of the ''note'' style.  Use this style to denote items in your content that you would like your users to note or pay attention to. To use this use the folllowing html: <b>&lt;span class="note"&gt;....&lt;/span&gt;</b></span>\r\n\r\n<span class="download">This is a sample of the ''download'' style.  Use this style to denote information containing a download or information about an available download on your site. To use this use the folllowing html: <b>&lt;span class="download"&gt;....&lt;/span&gt;</b></span>\r\n\r\n<h2>This is an H2 Header</h2>\r\n\r\n<p>Proin ac nunc eu nunc condimentum accumsan. Phasellus odio justo, euismod vitae, egestas a, porttitor in, urna. Maecenas vitae mauris. Donec vestibulum, nunc eu varius pharetra, massa est sagittis odio, sit amet eleifend elit dolor id tortor. </p>\r\n\r\n<p>This is a sample blockquote (use <b>&lt;blockquote&gt;....&lt;/blockquote&gt;</b>)</p>\r\n\r\n<blockquote><p>Praesent rutrum sapien ac felis. Phasellus elementum dolor quis turpis. Vestibulum nec mi vitae pede tincidunt nonummy. Vestibulum facilisis mollis neque. Sed orci. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Sed euismod magna a nibh.</p></blockquote>\r\n\r\n<h3>This is an H3 Header</h3>\r\n\r\n<p>Mauris euismod. In ac massa vitae quam tincidunt dapibus. Ut at tortor nec mi mattis blandit. Maecenas venenatis lorem at nulla. Phasellus a libero. Sed odio odio, eleifend dignissim, feugiat vel, tempor nec, ligula. Suspendisse lacinia convallis nulla. Vestibulum posuere, lacus aliquet pulvinar faucibus, tortor urna luctus diam, vitae ultrices ante magna non tellus.</p>\r\n\r\n<h4>This is an H4 Header</h4>\r\n\r\n<pre>\r\nThis is a sample <b>&lt;pre&gt;...&lt;/pre&gt;</b> tag:\r\n\r\ndiv.modulebox-black div.bx1 {\r\n  background: url(../images/black/box_bl.png) 0 100% no-repeat; \r\n}\r\n\r\ndiv.modulebox-black div.bx2 {\r\n  background: url(../images/black/box_tr.png) 100% 0 no-repeat;\r\n}\r\n\r\ndiv.modulebox-black div.bx3 {\r\n  background: url(../images/black/box_tl.png) 0 0 no-repeat;\r\n  padding: 0;\r\n  margin: 0;\r\n}\r\n</pre>\r\n\r\n<p>This is a sample blockquote with class ''b'' (use <b>&lt;blockquote class="b"&gt;....&lt;/blockquote&gt;</b>)</p>\r\n\r\n<blockquote class="b"><p>Praesent rutrum sapien ac felis. Phasellus elementum dolor quis turpis. Vestibulum nec mi vitae pede tincidunt nonummy. Vestibulum facilisis mollis neque. Sed orci. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Sed euismod magna a nibh.</p></blockquote>\r\n\r\n<div style="border-bottom: 1px solid #eee; margin-bottom: 20px; padding-bottom: 5px;">\r\n<h3><a name="bulleta" href="#bulleta">List Styles - Media</a></h3>\r\n<p>Below is a list with <em>media#</em>.  To use this style create a list in the following format: <b>&lt;ul class="</b><em>media1...media4</em><b>"&gt;&lt;li&gt;....&lt;/li&gt;&lt;li&gt;....&lt;/li&gt;...&lt;/ul&gt;</b></p>\r\n\r\n<ul class="media-1">\r\n  <li>Aliquam laoreet elementum tellus. Aenean tincidunt. Quisque est. Pellentesque convallis felis id arcu rutrum feugiat. Aenean mauris urna, rutrum aliquam, iaculis vel, consectetuer ac, elit.</li>\r\n</ul>\r\n<ul class="media-2">\r\n  <li>Mauris euismod. In ac massa vitae quam tincidunt dapibus. Ut at tortor nec mi mattis blandit. Maecenas venenatis lorem at nulla. Phasellus a libero. Sed odio odio, eleifend dignissim, feugiat vel, tempor nec, ligula. Suspendisse lacinia convallis nulla. </li>\r\n</ul>\r\n<ul class="media-3">\r\n  <li>Vestibulum posuere, lacus aliquet pulvinar faucibus, tortor urna luctus diam, vitae ultrices ante magna non tellus.</li>\r\n</ul>\r\n<ul class="media-4">\r\n  <li>Aliquam laoreet elementum tellus. Aenean tincidunt. Quisque est. Pellentesque convallis felis id arcu rutrum feugiat. Aenean mauris urna, rutrum aliquam, iaculis vel, consectetuer ac, elit.</li>\r\n</ul>\r\n</div>\r\n\r\n<div class="clr"></div>\r\n\r\n<div style="border-right: 1px solid #eee; float: left; width: 45%; margin-right: 20px; padding-right: 20px;">\r\n<h3><a name="bulletb" href="#bulletb">List Styles - Community</a></h3>\r\n<p>Below is a list with <em>community icons</em>.  To use this style create a list in the following format: <b>&lt;ul class="</b><em>class name</em><b>"&gt;&lt;li&gt;....&lt;/li&gt;&lt;li&gt;....&lt;/li&gt;...&lt;/ul&gt;</b></p>\r\n\r\n<ul class="cart">\r\n  <li>To use this style create a list in the following format: <b>&lt;ul class="</b><em>cart</em><b>"&gt;&lt;li&gt;....&lt;/li&gt;&lt;li&gt;....&lt;/li&gt;...&lt;/ul&gt;</b>.</li>\r\n</ul>\r\n<ul class="camera">\r\n  <li>To use this style create a list in the following format: <b>&lt;ul class="</b><em>camera</em><b>"&gt;&lt;li&gt;....&lt;/li&gt;&lt;li&gt;....&lt;/li&gt;...&lt;/ul&gt;</b>.</li>\r\n</ul>\r\n<ul class="circles">\r\n  <li>To use this style create a list in the following format: <b>&lt;ul class="</b><em>circles</em><b>"&gt;&lt;li&gt;....&lt;/li&gt;&lt;li&gt;....&lt;/li&gt;...&lt;/ul&gt;. </b></li>\r\n</ul>\r\n<ul class="people">\r\n  <li>To use this style create a list in the following format: <b>&lt;ul class="</b><em>people</em><b>"&gt;&lt;li&gt;....&lt;/li&gt;&lt;li&gt;....&lt;/li&gt;...&lt;/ul&gt;</b>.</li>\r\n</ul>\r\n<ul class="star-1">\r\n  <li>To use this style create a list in the following format: <b>&lt;ul class="</b><em>star1</em><b>"&gt;&lt;li&gt;....&lt;/li&gt;&lt;li&gt;....&lt;/li&gt;...&lt;/ul&gt;</b>.</li>\r\n</ul>\r\n<ul class="star-2">\r\n  <li>To use this style create a list in the following format: <b>&lt;ul class="</b><em>star2</em><b>"&gt;&lt;li&gt;....&lt;/li&gt;&lt;li&gt;....&lt;/li&gt;...&lt;/ul&gt;</b>.</li>\r\n</ul>\r\n<ul class="rss">\r\n  <li>To use this style create a list in the following format: <b>&lt;ul class="</b><em>rss</em><b>"&gt;&lt;li&gt;....&lt;/li&gt;&lt;li&gt;....&lt;/li&gt;...&lt;/ul&gt;</b>.</li>\r\n</ul>\r\n<ul class="check">\r\n  <li>To use this style create a list in the following format: <b>&lt;ul class="</b><em>check</em><b>"&gt;&lt;li&gt;....&lt;/li&gt;&lt;li&gt;....&lt;/li&gt;...&lt;/ul&gt;</b>.</li>\r\n</ul>\r\n</div>\r\n\r\n<div style="float:left;width:45%;">\r\n<h3><a name="bulletc" href="#bulletc">List Styles - Bullets</a></h3>\r\n<p>Below is a list with <em>standard bullets</em>.  To use this style create a list in the following format: <b>&lt;ul class="</b><em>class name</em><b>"&gt;&lt;li&gt;....&lt;/li&gt;&lt;li&gt;....&lt;/li&gt;...&lt;/ul&gt;</b></p>\r\n\r\n<ul class="arrow-1">\r\n  <li>To use this style create a list in the following format: <b>&lt;ul class="</b><em>arrow-1</em><b>"&gt;&lt;li&gt;....&lt;/li&gt;&lt;li&gt;....&lt;/li&gt;...&lt;/ul&gt;</b>.</li>\r\n</ul>\r\n<ul class="arrow-2">\r\n  <li>To use this style create a list in the following format: <b>&lt;ul class="</b><em>arrow-2</em><b>"&gt;&lt;li&gt;....&lt;/li&gt;&lt;li&gt;....&lt;/li&gt;...&lt;/ul&gt;</b>.</li>\r\n</ul>\r\n<ul class="plus-1">\r\n  <li>To use this style create a list in the following format: <b>&lt;ul class="</b><em>plus-1</em><b>"&gt;&lt;li&gt;....&lt;/li&gt;&lt;li&gt;....&lt;/li&gt;...&lt;/ul&gt;</b>.</li>\r\n</ul>\r\n<ul class="plus-2">\r\n  <li>To use this style create a list in the following format: <b>&lt;ul class="</b><em>plus-2</em><b>"&gt;&lt;li&gt;....&lt;/li&gt;&lt;li&gt;....&lt;/li&gt;...&lt;/ul&gt;</b>.</li>\r\n</ul>\r\n<ul class="triangle-1">\r\n  <li>To use this style create a list in the following format: <b>&lt;ul class="</b><em>triangle-1</em><b>"&gt;&lt;li&gt;....&lt;/li&gt;&lt;li&gt;....&lt;/li&gt;...&lt;/ul&gt;</b>.  </li>\r\n</ul>\r\n<ul class="triangle-2">\r\n  <li>To use this style create a list in the following format: <b>&lt;ul class="</b><em>triangle-2</em><b>"&gt;&lt;li&gt;....&lt;/li&gt;&lt;li&gt;....&lt;/li&gt;...&lt;/ul&gt;</b>.</li>\r\n</ul>\r\n<ul class="bullet-1">\r\n  <li>To use this style create a list in the following format: <b>&lt;ul class="</b><em>bullet-1</em><b>"&gt;&lt;li&gt;....&lt;/li&gt;&lt;li&gt;....&lt;/li&gt;...&lt;/ul&gt;</b>.</li>\r\n</ul>\r\n<ul class="bullet-2">\r\n  <li>To use this style create a list in the following format: <b>&lt;ul class="</b><em>bullet-2</em><b>"&gt;&lt;li&gt;....&lt;/li&gt;&lt;li&gt;....&lt;/li&gt;...&lt;/ul&gt;</b>.</li>\r\n</ul>\r\n</div>\r\n\r\n<div style="clear:both;border-bottom:1px solid #eee;padding-top:10px;margin-bottom:10px;"></div>\r\n\r\n<div style="border-bottom: 1px solid #eee; margin-bottom: 20px; padding-bottom: 5px;">\r\n<h3><a name="bulletd" href="#bulletd">List Styles - Number</a></h3>\r\n<p>Below is a list with <em>number</em>.  To use this style create a list in the following format: <b>&lt;ul class="</b><em>number</em><b>"&gt;&lt;li class=&quot;</b><em>number-1</em><b>&quot;&gt;....&lt;/li&gt;&lt;li class=&quot;</b><em>number-9</em><b>&gt;....&lt;/li&gt;...&lt;/ul&gt;</b></p>\r\n\r\n<ul class="number">\r\n  <li class="number-1">Aliquam laoreet elementum tellus. Aenean tincidunt. Quisque est. Pellentesque convallis felis id arcu rutrum feugiat. Aenean mauris urna, rutrum aliquam, iaculis vel, consectetuer ac, elit.</li>\r\n  <li class="number-2">Mauris euismod. In ac massa vitae quam tincidunt dapibus. Ut at tortor nec mi mattis blandit. Maecenas venenatis lorem at nulla. Phasellus a libero. Sed odio odio, eleifend dignissim, feugiat vel, tempor nec, ligula. Suspendisse lacinia convallis nulla. </li>\r\n  <li class="number-3">Vestibulum posuere, lacus aliquet pulvinar faucibus, tortor urna luctus diam, vitae ultrices ante magna non tellus.</li>\r\n  <li class="number-4">Aliquam laoreet elementum tellus. Aenean tincidunt. Quisque est. Pellentesque convallis felis id arcu rutrum feugiat. Aenean mauris urna, rutrum aliquam, iaculis vel, consectetuer ac, elit.</li>\r\n  <li class="number-5">Mauris euismod. In ac massa vitae quam tincidunt dapibus. Ut at tortor nec mi mattis blandit. Maecenas venenatis lorem at nulla. Phasellus a libero. Sed odio odio, eleifend dignissim, feugiat vel, tempor nec, ligula. Suspendisse lacinia convallis nulla. </li>\r\n</ul>\r\n</div>', '', 1, 1, 0, 3, '2008-01-26 11:40:29', 62, '', '2008-02-08 16:15:41', 62, 0, '0000-00-00 00:00:00', '2008-01-26 11:40: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=', 6, 0, 1, '', '', 0, 27, 'robots=\nauthor='),
(9, 'Tutorials', 'tutorials', '', '<div style="float:left;width:290px;margin-right:25px"><a href="index.php?option=com_content&amp;view=article&amp;id=10&amp;Itemid=11"><img src="images/tutorial/tutorial_icon1.png" align="left" border="0" alt="Install Populus" class="nounder" style="margin-right:10px;margin-top:10px" width="111" height="106" /></a><div style="font-size:130%;font-weight:bold;margin-bottom:15px;margin-top:15px">Installing Populus</div>\r\n\r\n<p>An overview of template files and instructions for installing and activating the template in Joomla. <a href="index.php?option=com_content&amp;view=article&amp;id=10&amp;Itemid=11">Read More...</a></p></div>\r\n\r\n<div style="float:right;width:310px"><a href="index.php?option=com_content&amp;view=article&amp;id=11&amp;Itemid=12"><img src="images/tutorial/tutorial_icon2.png" align="left" border="0" alt="Custom Modules" class="nounder" style="margin-right:10px;margin-top:10px" width="111" height="106" /></a><div style="font-size:130%;font-weight:bold;margin-bottom:15px;margin-top:15px">Custom Modules</div>\r\n\r\n<p>Learn all about the included <strong>Populus</strong> custom modules and how to configure them for your site. <a href="index.php?option=com_content&amp;view=article&amp;id=11&amp;Itemid=12">Read More...</a></p></div><div class="clr"></div><div class="clr"></div><br />\r\n\r\n<div style="float:left;width:290px;margin-right:25px"><a href="index.php?option=com_content&amp;view=article&amp;id=5&amp;Itemid=13"><img src="images/tutorial/tutorial_icon3.png" align="left" border="0" alt="Menu Options" class="nounder" style="margin-right:10px;margin-top:10px" width="111" height="106" /></a><div style="font-size:130%;font-weight:bold;margin-bottom:15px;margin-top:15px">Menu Options</div>\r\n\r\n<p>An overview of the <strong>Populus</strong> menu options including the top menu icon configuration. <a href="index.php?option=com_content&amp;view=article&amp;id=5&amp;Itemid=13">Read More...</a></p></div>\r\n\r\n<div style="float:right;width:310px"><a href="index.php?option=com_content&amp;view=article&amp;id=12&amp;Itemid=14"><img src="images/tutorial/tutorial_icon4.png" align="left" border="0" alt="Customization" class="nounder" style="margin-right:10px;margin-top:10px" width="111" height="106" /></a><div style="font-size:130%;font-weight:bold;margin-bottom:15px;margin-top:15px">Customization</div>\r\n\r\n<p>A guide to the basic <strong>Populus</strong> customization options that can be configured within the template "index.php" file. <a href="index.php?option=com_content&amp;view=article&amp;id=12&amp;Itemid=14">Read More...</a></p></div><div class="clr"></div><br />\r\n\r\n<div style="float:left;width:290px;margin-right:25px"><a href="index.php?option=com_content&amp;view=article&amp;id=14&amp;Itemid=16"><img src="images/tutorial/tutorial_icon5.png" align="left" border="0" alt="Typography" class="nounder" style="margin-right:10px;margin-top:10px" width="111" height="106" /></a><div style="font-size:130%;font-weight:bold;margin-bottom:15px;margin-top:15px">Using Typography</div>\r\n\r\n<p>A guide to using the included the <strong>Populus</strong> typography styles in your site. <a href="index.php?option=com_content&amp;view=article&amp;id=14&amp;Itemid=16">Read More...</a></p></div>\r\n\r\n<div style="float:right;width:310px"><a href="index.php?option=com_content&amp;view=article&amp;id=15&amp;Itemid=17"><img src="images/tutorial/tutorial_icon6.png" align="left" border="0" alt="Demo Content" class="nounder" style="margin-right:10px;margin-top:10px" width="111" height="106" /></a><div style="font-size:130%;font-weight:bold;margin-bottom:15px;margin-top:15px">Demo Content</div>\r\n\r\n<p>A look at some of the modules and techniques used in the demo content on the frontpage of the <strong>Populus</strong> demo. <a href="index.php?option=com_content&amp;view=article&amp;id=15&amp;Itemid=17">Read More...</a></p></div><div class="clr"></div><br />\r\n\r\n<div style="float:left;width:290px;margin-right:25px"><a href="index.php?option=com_content&amp;view=article&amp;id=13&amp;Itemid=15"><img src="images/tutorial/tutorial_icon7.png" align="left" border="0" alt="Logo Editing" class="nounder" style="margin-right:10px;margin-top:10px" width="111" height="106" /></a><div style="font-size:130%;font-weight:bold;margin-bottom:15px;margin-top:15px">Logo Editing</div>\r\n\r\n<p>An overview for customizing your logo and replacing the logo text with your organization or company name and logo. <a href="index.php?option=com_content&amp;view=article&amp;id=13&amp;Itemid=15">Read More...</a></p></div>\r\n\r\n<div style="float:right;width:310px"><a href="http://tutorials.rockettheme.com/joomla-templates/hivemind-tutorials/pngfix.html"><img src="images/tutorial/tutorial_icon8.png" align="left" border="0" alt="PNGfix" class="nounder" style="margin-right:10px;margin-top:10px" width="111" height="106" /></a><div style="font-size:130%;font-weight:bold;margin-bottom:15px;margin-top:15px">PNGfix</div>\r\n\r\n<p>An overview of how to customize your <strong>Populus</strong> in respects to the Internet Explorer PNGfix. <a href="http://tutorials.rockettheme.com/joomla-templates/populus-tutorials/pngfix.html">Read More...</a></p></div>\r\n\r\n<div class="clr"></div><br />\r\n\r\n<div class="contentheading">More Populus Template Tutorials</div>\r\n\r\n<p>Continue learning how to configure and customize the Populus template with the following guides and tutorials available in the RocketTheme  members forum board.</p>\r\n<div style="width:300px;float:left;margin-right:25px"><ul>\r\n<li><a href="http://www.rockettheme.com/option,com_smf/Itemid,190/topic,22673.0/"><b>Removing the People''s graphic</b></a></li>\r\n<li><a href="http://www.rockettheme.com/option,com_smf/Itemid,190/topic,22554.0/"><b>Removing The Template''s Mootools Javascript</b></a></li>\r\n<li><a href="http://www.rockettheme.com/option,com_smf/Itemid,190/topic,22553.0/"><b>Removing/Editing Footer Logo Links</b></a></li>\r\n</ul></div>\r\n\r\n<div style="width:250px;float:left"><ul>\r\n<li><a href="http://www.rockettheme.com/option,com_smf/Itemid,190/topic,22552.0/"><b>Adding The New Module Positions</b></a></li>\r\n<li><a href="http://www.rockettheme.com/option,com_smf/Itemid,190/topic,22551.0/"><b>Editing Footer Logo and Copyright</b></a></li>\r\n<li><a href="http://www.rockettheme.com/option,com_smf/Itemid,190/topic,22549.0/"><b>Removing Integrated Rokslide</b></a></li>\r\n<li><a href="http://www.rockettheme.com/option,com_smf/Itemid,190/topic,22548.0/"><b>Modify The Logo</b></a></li>\r\n</ul></div>', '', 1, 1, 0, 2, '2008-01-26 11:40:58', 62, '', '2008-02-08 16:22:00', 62, 0, '0000-00-00 00:00:00', '2008-01-26 11:40:58', '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, 8, '', '', 0, 43, 'robots=\nauthor=');
INSERT INTO `#__content` VALUES
(10, 'Installation', 'installation', '', '<p>The following is a guide that covers how to set up your new <strong>Populus</strong>  template on your Joomla site.  Here you can find an overview of the files included in the <b>Populus</b> release and instructions on installing and activating the template in your Joomla install.</p>\r\n\r\n<span class="note">\r\n<b>Video Tutorial Currently Available!</b><br/>\r\n<a href="http://tutorials.rockettheme.com/video/installing_templates/install_template_v1.01.html" target="_new">Launch the Joomla Template Installation Video Tutorial now!</a> <i>(Requires Flash)</i>\r\n</span>\r\n\r\n<h3>Downloading the Populus Files</h3>\r\n\r\nThe first step is to download all of the files that will be needed to install your template, custom modules, as well make modifications. Here is a quick explanation of each of the available files in the <strong>Populus</strong> release.\r\n\r\n<ul class="star-2">\r\n<li><b>Populus Template</b> <i>(rt_populus_j15.tgz)</i> This file is the template package you will use to install your template into Joomla.</li>\r\n\r\n<li><b>Populus Custom Extensions</b> <i>(populus_extensions_j15.zip)</i> This package contains each of the individual custom extensions included in the Populus template release.</li>\r\n\r\n<li><b>Populus Source PNG''s</b> <i>(populus_sources.zip)</i> This zip contains the source png''s for making modifications and customizations to the images in the template as well as the logo font. There are additional sources for the transparent background, buttons, typography and headers. You will need an image editing software (preferably Adobe/Macromedia Fireworks) to utilize the Source PNG files. </li>\r\n\r\n</ul>\r\n\r\n<div style="padding: 10px; float: left; width: 46%; margin-right: 1%;">\r\n<h3 style="font-size: 120%; margin-top: 0px; margin-bottom: 0px;"><a href="#step1" name="step1">Step 1 - Using the Joomla installer</a></h3>\r\n\r\nGo to your Admin control panel for your site. In the Menu at the top, go to <b><u>Extensions</u></b> -> <b><u>Install/Uninstall</u></b>. Next browse for your <b>rt_populus_j15.tgz</b> file you downloaded and then click <b>Upload File &amp; Install</b>. Now <strong>Populus</strong>  is installed and in your template list. You should observe an introductory page in which you select <b>Continue</b>.\r\n<br />\r\n<img src="images/tutorial/install/install1.jpg" alt="Joomla Template Install" style="border: 2px solid #eee; margin-top: 17px;margin-bottom:23px;"/>\r\n</div>\r\n<div style="padding: 10px; float: left; width: 46%;">\r\n<h3 style="font-size: 120%; margin-top: 0px; margin-bottom: 0px;"><a name="step2" href="#step2">Step 2 - Making Populus your default template</a></h3>\r\n\r\nNext, from your admin control panel, go to <b><u>Extensions</u></b> -> <b><u>Template Manager</u></b>. This will pull up the list of your installed templates. Find Populus on the list and select the radio button to the left and then click <b>Default</b> up in the top right corner. Now <strong>Populus</strong>  is set as your default template. If you view your site, you should see the Populus template.\r\n\r\n<img src="images/tutorial/install/install2.jpg" alt="Joomla Template Install" style="border: 2px solid #eee; margin-top: 17px;"/>\r\n</div>', '', 1, 1, 0, 2, '2008-01-26 11:43:35', 62, '', '2008-02-08 17:14:13', 62, 0, '0000-00-00 00:00:00', '2008-01-26 11:43: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=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', 10, 0, 6, '', '', 0, 24, 'robots=\nauthor='),
(11, 'Custom Modules', 'custom-modules', '', '<p>Learn all about the exciting new RocketTheme exclusive modules that are included in the <b>Populus</b> template release. Here you can find instructions for installation and configuration for each of the custom modules.</p>\r\n\r\n<div style="width:47%;float:left;margin-right:20px">\r\n<h3>Step One: Installing the Module</h3>\r\n<ul>\r\n<li>Download the <b>populus_extensions_j15.zip</b> archive from the <strong>Populus</strong>  download section of the RocketTheme Joomla! Club.  Unzip the archive, inside you will find individual zip files for each of the modules.</li> \r\n<li>Login in to your administrator console on your Joomla! website and navigate to the <b>Extensions</b> menu item, and select <b>Install/Uninstall</b> from the dropdown menu.\r\n</li>\r\n<li>In the <b>Upload Package File</b> section, click the <b>Choose File</b> button and select one of the <b>mod_modulename.zip</b> that was inside of the zip file you downloaded earlier.  Next click the <b>Upload File &amp; Install</b> button to install the module.</li></ul>\r\n</div>\r\n\r\n\r\n<div style="width:47%;float:left">\r\n<h3>Step Two: Publishing the Module</h3>\r\n<ul>\r\n<li>Now the module is installed it must be published in the appropriate module position and configured to suit our needs.  From the top menu, select <b>Extensions</b> then <b>Module Manager</b>.</li>\r\n<li>This will take you to the <b>Site Module Manager</b> which allows you to configure the placement and configuration of all modules in your Joomla! website.</li>\r\n<li>Locate the module from the list. Remember there could be a few pages. Once you have found it, you can publish in 2 ways: The first is selecting the cross next to the tile or clicking the title then set <b>Enabled</b> to <b>Yes</b> followed by a Save.</li></ul>\r\n</div>\r\n<div class="clr"></div>\r\n    \r\n<h3><a name="integrated-rokslide" href="#integrated-rokslide">Integrated RokSlide Tabbed Modules</a></h3>\r\nFor <b>Populus</b>, we have integrated RokSlide into the core of the template so you have the RokSlide functionality in terms of tabs with stylish transitional effects with the modular layout of the template. <br /><br />\r\nRokSlide by default has 5 tabs available. Each tab has a module position ranging from User12 to User16, respective to the individual tab. Therefore, you have a single modular position per tab but you have the option of applying multiple modules to a single position. For example, you can assign 3 modules to the User12 position and they will appear in a horizontal layout in Tab 1.<br />\r\n\r\n<h3><a href="javascript:void(0);">Configuration</a></h3>\r\nConfiguration of the integrated RokSlide itself is controlled in the Administrator at <b><u>Admin -> Extensions > Template Manager > Populus</u></b><br /><br />\r\n\r\n<img src="images/tutorial/mod/tabber-config1.jpg" alt="tabber" /><br /><br />\r\n\r\nIn the configuration panel, we have 5 groups, each groups controls a single tab. Each group is segregated into 2 distinct parts. These are <b>Tab Title</b> which controls the Tab Title. The second part is <b>Tab Module</b><br /><br />\r\n<h3><a href="#slide-height" name="slider-height">Module Slider Height</a></h3>\r\nYou will see in the above screenshot, the Module slide height settings. Similarly with the module count\r\n\r\nIn addition to setting the module slider height in the parameters, you will also need to specify a height for the <b>#moduleslider-size</b> in the "template_css.css" as well to ensure that the module slider shows at the proper size.\r\n\r\n<pre>\r\n#moduleslider-size {\r\n	height: 250px;\r\n}\r\n</pre>', '', 1, 1, 0, 2, '2008-01-26 11:44:06', 62, '', '2008-02-09 20:14:21', 62, 0, '0000-00-00 00:00:00', '2008-01-26 11:44: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=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', 13, 0, 5, '', '', 0, 46, 'robots=\nauthor='),
(12, 'Basic Customisation', 'basic-customisation', '', '<p>A guide to the basic <b>HiveMind</b> customisation options that can be configured in the the Joomla Administrator console.</p>\r\n\r\n<img src="images/tutorial/customisation.jpg" alt="customisation" /><br /><br />\r\n\r\n<div style="float:left;width:45%;margin-right:2%;padding:10px;border:1px dotted #eee;">\r\n<h3 style="margin:0;"><a name="s-width" href="#s-width">Sidebar width</a></h3>\r\nWith the following setting, you can control the width of the sidebar with one simple setting.\r\n</div>\r\n\r\n<div style="float:left;width:45%;padding:10px;border:1px dotted #eee;">\r\n<h3 style="margin:0;"><a name="split-side" href="#split-side">Splitmenu Location</a></h3>\r\nWith this setting, choose which column the splitmenu sub menu is placed.\r\n</div>\r\n\r\n<div class="clr" style="height:12px;"></div>\r\n\r\n<div style="float:left;width:45%;margin-right:2%;padding:10px;border:1px dotted #eee;">\r\n<h3 style="margin:0;"><a name="d-font" href="#d-font">Default Font</a></h3>\r\nBased on your own personal preference, or the preference of your users; you can easily set the default font size.\r\n</div>\r\n\r\n<div style="float:left;width:45%;padding:10px;border:1px dotted #eee;">\r\n<h3 style="margin:0;"><a name="pathway" href="#pathway">Show Pathway</a></h3>\r\nSometimes sites just look better with no pathway, and we''ve provided a convenient toggle to allow you to disable this for your site<br />\r\n</div>\r\n\r\n<div class="clr" style="height:12px;"></div>\r\n\r\n<div style="float:left;width:45%;padding:10px;border:1px dotted #eee;margin-right:2%;">\r\n<h3 style="margin:0;"><a name="slider-height" href="#slide-height">Module Slider Height</a></h3>\r\nThis setting controls the height of the Module Slider in pixels.\r\n</div>\r\n\r\n<div style="float:left;width:45%;padding:10px;border:1px dotted #eee;">\r\n<h3 style="margin:0;"><a name="module-count" href="#module-count">Module Count</a></h3>\r\nThe module configuration variable below controls how many consecutive modules you can have for a position. \r\n</div>\r\n\r\n<div class="clr"></div>\r\n\r\n<h3>Module List</h3>\r\n<div style="margin-bottom:18px;">\r\nWith the setting illustrated below, you can control the aspects of the integrated rokslide feature to a great extent. You can control the tab title and also the module position which appears in each of the tabs.<br /><br />\r\n\r\nIn the code snippet, we have 5 lines, each line controls a single tab. Each line is segregated into 2 distinct parts. These are <b>&quot;title&quot;=&gt;&quot;<a name="tab-title">Tab Title</a>&quot;,</b> which controls the Tab Title. The second part is <b>&quot;module&quot;=&gt;&quot;<a name="select-module" href="#select-module">Module Position</a>&quot;),</b>\r\n</div>', '', 1, 1, 0, 2, '2008-01-26 11:44:47', 62, '', '2008-02-08 16:55:47', 62, 0, '0000-00-00 00:00:00', '2008-01-26 11:44: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=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', 9, 0, 4, '', '', 0, 26, 'robots=\nauthor='),
(13, 'Logo Editing', 'logo-editing', '', '<p>The following is a step by step guide to customising your Populus logo image by replacing the logo text  with your own organization or company''s name and logo.</p>\r\n\r\n<span class="info">In order to utilise the Fireworks Source PNG included with the Populus template release, you will need Adobe Fireworks. The 30-day free trial of this software as well as more information is available <a href="http://www.adobe.com/products/fireworks/" target="_new"><strong>here at the Adobe website</strong></a>.</span>\r\n\r\n<h2>Customising Your Logo</h2>\r\n\r\n<p>One of the first steps of customising your new <strong>Populus</strong> template will undoubtedly be altering the logo text to reflect the name of your company / organization. RocketTheme makes this process a simple one by including both the Source PNG for the template, as well as font(s) used.</p>\r\n\r\n<p>The most effective way to customise the logo is to use the included Source PNG file. When opened in Adobe Fireworks, this file contains all of the Layers in the design allowing you to tweak and change any of the image elements of the template design. The following steps will help you quickly get your new logo ready to go:</p>\r\n\r\n<div>\r\n<h3><a name="step1" href="#step1">Step 1</a></h3>\r\n\r\nFirst, open the header Source PNG file in Adobe Fireworks (populus_structure.png). On the right side, you will notice a taskbar named <strong>Layers</strong>. Inside this column, a list of elements within the source will appear, dividied into folders. The first is Web Layers which controls the green slices on the page that are used to export the images. Click the eye which is immediately left to the folder name <strong>Web Layers</strong> to make it invisible. This allows use to edit the logo.<br /><br />\r\n<img style="border:3px solid #eee;" src="images/tutorial/logo/logo1.jpg" alt="Logo"/>\r\n</div>\r\n\r\n<div>\r\n<h3><a name="step2" href="#step2">Step 2</a></h3>\r\nNext, double click on the logo which should be position in top-centre. This will activate the text tool so you can edit the element. Highlight the entire text box with your cursor and type your text instead(such as your company name.)<br />\r\n<img alt="Logo" src="images/tutorial/logo/logo2.jpg" style="border:3px solid #eee;margin-bottom:15px;" /><br />\r\n<img alt="Logo" src="images/tutorial/logo/logo3.jpg" style="border:3px solid #eee;" /><br /><br />\r\n</div>\r\n\r\n<div>\r\n<h3><a name="step3" href="#step3">Step 3</a></h3>\r\nOnce you have edited the logo to your personal preference, you will need to activate the logo area slice. On the right column where the Web layers area is, we need to reactivate it. As you did in the intial step, select the eye icon to make it visibile and subsequently making the slices visible on the canvas. Select the logo slice, either on the canvas itself or in the Web Layers folder.<br /><br />\r\n<img alt="Logo" src="images/tutorial/logo/logo5.jpg" style="border:3px solid #eee;margin-bottom:15px;" /><br />\r\n<img alt="Logo" src="images/tutorial/logo/logo6.jpg" style="border:3px solid #eee;" /><br /><br />\r\n</div>\r\n<div>\r\n<h3><a name="step4" href="#step4">Step 4</a></h3>\r\nTo export your logo, right click on the green slice that is situated above your new logo. A popup menu should appear with numerous options. The value we want to deal with is &quot;Export Selected Slice...&quot;. As the name suggests, this option will export/save this slice only out of the entire source window.\r\n<br /><br />\r\n<img alt="Logo" src="images/tutorial/logo/logo7.jpg" style="border:3px solid #eee;" />\r\n</div>\r\n\r\n\r\n<div>\r\n<h3><a name="step5" href="#step5">Step 5</a></h3>\r\n<p>If you are new to Fireworks, you may be wondering why it appears that there is only one style variation in the source. This is not the case as we take advantage of the Frame features of Fireworks. You need to simply switch frames to see all the other style variation sources.<br /><br />\r\nThere are a few ways to change frames and we will show 2 methods that you can use.</p>\r\n\r\n\r\n<p>In the right column where you find the Layers toolbar including the Web Layers area, you should see another tab/toolbar named Frames. Just left click on the title <b>Frames</b> to enter the frames area. Then you can click on either of the frames which are named to show which style variant is on that particular frame.</p>\r\n<img alt="Logo" src="images/tutorial/logo/logo8.jpg" style="border:3px solid #eee;margin-bottom:15px;" /><br />\r\n\r\n<p>The second method is the most easiest and simplistic. At the bottom of the Fireworks canvas is a row of buttons, arrows just as previous and next. Select the arrows to switch between frames.</p>\r\n<img alt="Logo" src="images/tutorial/logo/logo9.jpg" style="border:3px solid #eee;" /><br />\r\n</div>\r\n\r\n<h3><a name="step6" href="#step6">Step 6</a></h3>\r\n<p>Once you have successfully edited then exported your new logo, you will need to upload it to your server. This process is best done via a FTP client such as <a href="http://filezilla.sourceforge.net/">Filezilla</a></p>\r\n<ol>\r\n<li>Open your FTP client on your local computer.</li>\r\n<li>Login to your web server where <strong>Populus</strong> is installed.</li>\r\n<li>Navigate to the /templates/rt_populus_j15/images/style# directory.</li>\r\n<li>Upload <strong>logo.png</strong> to this directory (You may need to browse on the local panel in the FTP client to find where you have exported your logo).</li>\r\n<li>Clear your browser cache before viewing such as using the keyboard commands on Windows, <strong>Ctrl+F5</strong>.</li>\r\n</ol>\r\n\r\n<span class="note" style="width:70%;">\r\nEnsure that you are uploading the correct logo to avoid confusion if it does not change.\r\nAlso take into account hosting permissions. Sometimes, hosters which are not designed for \r\nJoomla may have permissions not suited for the setup, thus, the upload will not be complete.\r\nIn this case, contact your hosting provider.\r\n</span>', '', 1, 1, 0, 2, '2008-01-26 11:45:30', 62, '', '2008-02-08 16:28:17', 62, 0, '0000-00-00 00:00:00', '2008-01-26 11:45: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=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', 5, 0, 3, '', '', 0, 14, 'robots=\nauthor='),
(14, 'Using Typography', 'using-typography', '', '<p>A guide to implementing the included <b>Populus</b> typography styles and elements into your site as well as instructions for inserting typography using the HTML editor option of your WYSIWYG editor.</p>\r\n\r\n\r\n<p>Every RocketTheme template has its own set of content styles, these styles are known as Typography. Typography can come in a number of varying and diverse formats, ranging from simple text modifications to image insertions to improve the look, layout of your website and give it life. This tutorial will take you through the necessary steps to adding typography to your Joomla! content.</p>\r\n\r\n<h2>Inserting Typography with the HTML Editor</h2>\r\n\r\n<p>To insert the Typography into your content, you must use the HTML feature of all Joomla! content editors. The following tutorial will outline the steps in which to does this with the default Joomla! content edit, TinyMCE. Please be aware, even though there are other content editors available, all are basically the same and the steps with be just as effective if you are using another Content editor.</p>\r\n\r\n<span class="note">Please note that the following tutorial will show you how to insert HTML (typography) into Articles, the same procedure is apparent for Custom modules. You may skip steps 4 and 5 if you are using <b>No WYSIWYG</b> editor.</span>\r\n\r\n<div class="moduletable-hilite2" style="float:left;width:48%;margin-right:15px">\r\n<h3><a name="step1" href="#step1">Step 1 - Login</a></h3>\r\nLogin to the Joomla! Administration Control Panel. Go to <a href="javascript:void(0);">www.yoursite.com/administrator</a>. Enter the Administrator''s Username and password.\r\n</div>\r\n\r\n<div class="moduletable-hilite2" style="float:left;width:48%">\r\n<h3><a name="step2" href="#step2">Step 2 - Navigation</a></h3>\r\nNavigate to the Article Manager. Once you have logged in, hover over the Content link on the top taskbar, scroll down to Article Manager.\r\n</div>\r\n\r\n<div class="clr"></div>\r\n\r\n<div class="moduletable-hilite5" style="float:left;width:48%;margin-right:15px">\r\n<h3><a name="step3" href="#step3">Step 3 - Article Manager</a></h3>\r\nWhen you have selected the Article Manager link, you will be sent to the Article Manager control panel. Select either Edit (after selecting a particular content item) or New, depending on whether you want to add typography to an existing or new item.\r\n</div>\r\n\r\n<div class="moduletable-hilite5" style="float:left;width:48%">\r\n<h3><a name="step4" href="#step4">Step 4 - HTML Icon</a></h3>\r\nTo add typography to your content, you must enter the HTML mode of your Content editor. In the TinyMCE editor, this an icon called &quot;HTML&quot;, in some other content editors, it is a tab. Press the icon to enter HTML mode. This step is not necessary if you are using <b>No WYSIWYG</b> editor (similarly with Step5)\r\n</div>\r\n\r\n<div class="clr"></div>\r\n\r\n<div class="moduletable-hilite2" style="float:left;width:48%;margin-right:15px">\r\n<h3><a name="step5" href="#step5">Step 5 - HTML Mode</a></h3>\r\nA popup shall appear with your content in HTML format, only if you are using TinyMCE, with other editors, a new tab may become selected. You shall do all your editing here for typography.\r\n</div>\r\n\r\n<div class="moduletable-hilite2" style="float:left;width:48%">\r\n<h3><a name="step6" href="#step6">Step 6 - Inserting HTML</a></h3>\r\nYou then proceed to add your HTML coding into the tab/textbox that appears in front of you. This can be any HTML such as span class typography or styled lists.\r\n</div>\r\n\r\n<div class="clr"></div>\r\n\r\n<center>\r\n<span class="info">You will not see the effects in the content editor, all style affects are only visible on the Frontend of your Joomla! website.\r\n</span>\r\n</center>', '', 1, 1, 0, 2, '2008-01-26 11:46:23', 62, '', '2008-02-08 16:32:41', 62, 0, '0000-00-00 00:00:00', '2008-01-26 11:46: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=', 5, 0, 2, '', '', 0, 14, 'robots=\nauthor='),
(15, 'Demo Content', 'demo-content', '', '<p>The demo for <b>Populus</b> utilises a large stock of custom code and styling to make the most of every content item and show what Populus can do. This basically \r\nmeans that the HTML used in the custom modules and content have customisations\r\nwhich employ the characteristics of the template to make the &quot;perfect&quot; content.</p>\r\n\r\n<p>This demo content section will take you through some of the content areas and general techniques used to further your understand and help you realise <b>Populus</b> true potential. If you would like to quickly deploy a replica of our Populus demo for a new Joomla site, be sure to check out our <a href="index.php?option=com_content&amp;view=article&amp;id=2&amp;Itemid=3">RocketLauncher package</a>.</p>\r\n\r\n<div>\r\n<h4><b><a name="use" href="#use">Extensions Used</a></b></h4>\r\nIn the demo, we have used lots of 3rd party extensions, geared towards a community Portal. These are:\r\n<ul class="star-2">\r\n<li><a href="http://extensions.joomla.org/component/option,com_mtree/task,viewlink/link_id,2078/Itemid,35/">Rokslideshow</a> - slideshow module</li>\r\n<li><a href="http://bestofjoomla.com">Fireboard</a> - forum software</li>\r\n<li><a href="http://groupjive.org">Groupjjive</a> - grouping extension</li>\r\n<li><a href="http://joomlapolis.com">Community Builder</a> - profile extension</li>\r\n</ul>\r\nYou can download a range of modules that usually accompany the extensions such as the Latest posts module from Fireboard, the Random users module from Community Builder and Popular Groups module from Groupjive. You can find most of these on the <a href="http://extensions.joomla.org">Joomla Extensions Directory</a>.\r\n</div>\r\n\r\n<div>\r\n<h4><b><a name="tabbed" href="#tabbed">Tabbed Modules</a></b></h4>\r\nPopulus features an exciting new RokSlide powered tabbed module system. It is designed to allow you to publish your modules into the designated locations, creating tabs for each module position which you can customise. Currently, Populus uses the User10-14 module positions for you tabs. By default, Joomla does not include these module positions, so these must be created in the Joomla admin.\r\n</div>\r\n\r\n<div>\r\n<h4><b><a name="readmore" href="#readmore">Read More Buttons</a></b></h4>\r\nRead more buttons are automatically generated for content items that use the intro and main text option. However, you can easily insert them manually as witnessed on this demo. Use the following code:\r\n<pre>\r\n&lt;a href=&quot;your_link&quot; class="readon"&gt;Read More...&lt;/a&gt;\r\n</pre>\r\n</div>', '', 1, 1, 0, 2, '2008-01-26 11:46:45', 62, '', '2008-02-08 16:52:45', 62, 0, '0000-00-00 00:00:00', '2008-01-26 11:46:45', '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, 1, '', '', 0, 30, 'robots=\nauthor='),
(16, 'About Joomla', 'about-joomla', '', '<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 visit the <a href="http://help.joomla.org" title="Joomla! Help Site">Joomla! Help Site</a> and <a href="http://forum.joomla.org" title="The Joomla! Community Forums">Forums</a>', '', 1, 3, 0, 4, '2008-01-26 12:00:50', 62, '', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '2008-01-26 12:00: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, 4, '', '', 0, 12, 'robots=\nauthor='),
(17, 'Joomla! License', 'joomla-license', '', '<p>This Web site is powered by <a href="http://www.joomla.org/">Joomla!</a>  The software and default templates on which it runs are Copyright 2005-2007 <a href="http://www.opensourcematters.org/">Open Source Matters</a>.  All other content and data, including 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">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">''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">''GNU General Public License FAQ''</a>.</p><p>Joomla! documentation is released under the terms of the <a href="http://creativecommons.org/licenses/by-nc-sa/2.5/" title="Creative Commons ">Creative Commons Attribution-Non-Commercial-Share-Alike License 2.5</a> or by the specific license of their respective copyright owners.</p><p>The Joomla! licence has always been GPL.</p>', '', 1, 3, 0, 4, '2008-01-26 12:01:34', 62, '', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '2008-01-26 12:01: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, 3, '', '', 0, 2, 'robots=\nauthor='),
(18, 'FAQ: Installation', 'faq-installation', '', '<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" title="Joomla! 1.5 Installation Manual">Installation Manual</a> on the <a href="http://help.joomla.org" title="Joomla! Help Site">Joomla! Help Site</a> where you will also find download instructions for a PDF version too. </p>', '', 1, 3, 0, 5, '2008-01-26 12:03:36', 62, '', '2008-01-26 12:10:03', 62, 0, '0000-00-00 00:00:00', '2008-01-26 12:03:36', '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, 2, '', '', 0, 0, 'robots=\nauthor='),
(19, 'FAQ: Uncategorised', 'faq-uncategorised', '', '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.', '', 1, 3, 0, 5, '2008-01-26 12:04:51', 62, '', '2008-01-26 12:09:58', 62, 0, '0000-00-00 00:00:00', '2008-01-26 12:04:51', '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, 1, '', '', 0, 0, 'robots=\nauthor='),
(20, 'Newsflash1', 'newsflash1', '', 'The photographer who took images of former Pakistani Prime Minister Benazir Bhutto moments before her assassination Thursday told CNN he was "surprised" to see her rise through the sunroof of her vehicle to wave to supporters after delivering her speech.', '', 1, 3, 0, 8, '2008-01-26 12:38:43', 62, '', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '2008-01-26 12:38: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=', 1, 0, 5, '', '', 0, 0, 'robots=\nauthor='),
(21, 'Newsflash2', 'newsflash2', '', 'A 300-pound Siberian tiger apparently jumped that wall Tuesday, zoo director Manuel Mollinedo said, attacking and killing a 17-year-old boy and injuring two other young men, brothers who were visiting the zoo with the teenager.', '', 1, 3, 0, 8, '2008-01-26 12:38:55', 62, '', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '2008-01-26 12:38: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=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', 1, 0, 4, '', '', 0, 1, 'robots=\nauthor='),
(22, 'Newsflash3', 'newsflash3', '', 'One of the most famously flawed stamps in U.S. history sold for $825,000 to a New York man who bought it slightly cheaper than the record price another "Inverted Jenny" copy fetched at auction last month.', '', 1, 3, 0, 8, '2008-01-26 12:39:11', 62, '', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '2008-01-26 12:39: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, 3, '', '', 0, 0, 'robots=\nauthor='),
(23, 'Newsflash4', 'newsflash4', '', 'One of the most famously flawed stamps in U.S. history sold for $825,000 to a New York man who bought it slightly cheaper than the record price another "Inverted Jenny" copy fetched at auction last month.', '', 1, 3, 0, 8, '2008-01-26 12:39:35', 62, '', '2008-01-26 21:43:58', 62, 0, '0000-00-00 00:00:00', '2008-01-26 12:39: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=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', 2, 0, 2, '', '', 0, 0, 'robots=\nauthor='),
(24, 'Newsflash 5', 'newsflash5', '', 'DENVER, Colorado (AP) -- United Airlines, hit hard by weekend storms in the Midwest, canceled dozens more flights Thursday as the second storm since Christmas threatened to pile 20 inches of new snow on Colorado.', '', 1, 3, 0, 8, '2008-01-26 12:40:06', 62, '', '0000-00-00 00:00:00', 0, 0, '0000-00-00 00:00:00', '2008-01-26 12:40: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=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', 1, 0, 1, '', '', 0, 0, 'robots=\nauthor='),
(25, 'Populus Template', 'populus-template', '', '<div id="ribbon-frame">\r\n<div id="ribbon"></div>\r\n{loadposition header}\r\n</div>', '', 1, 2, 0, 9, '2008-01-26 14:31:09', 62, '', '2008-02-08 20:19:22', 62, 62, '2008-02-09 10:41:41', '2008-01-26 14:31:09', '0000-00-00 00:00:00', '', '', 'show_title=0\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=0\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=', 9, 0, 1, '', '', 0, 0, 'robots=\nauthor=');

-- --------------------------------------------------------

--
-- Table structure for table `#__content_frontpage`
--

DROP TABLE IF EXISTS `#__content_frontpage`;
CREATE TABLE `#__content_frontpage` (
  `content_id` int(11) NOT NULL default '0',
  `ordering` int(11) NOT NULL default '0',
  PRIMARY KEY  (`content_id`)
) TYPE=MyISAM;

--
-- Dumping data for table `#__content_frontpage`
--

INSERT INTO `#__content_frontpage` VALUES
(25, 1);

-- --------------------------------------------------------

--
-- Table structure for table `#__content_rating`
--

DROP TABLE IF EXISTS `#__content_rating`;
CREATE TABLE `#__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(150) NOT NULL default '',
  PRIMARY KEY  (`content_id`)
) TYPE=MyISAM;

--
-- Dumping data for table `#__content_rating`
--

--
-- Table structure for table `#__core_log_items`
--

DROP TABLE IF EXISTS `#__core_log_items`;
CREATE TABLE `#__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'
) TYPE=MyISAM;

--
-- Dumping data for table `#__core_log_items`
--


-- --------------------------------------------------------

--
-- Table structure for table `#__core_log_searches`
--

DROP TABLE IF EXISTS `#__core_log_searches`;
CREATE TABLE `#__core_log_searches` (
  `search_term` text NOT NULL,
  `hits` int(11) unsigned NOT NULL default '0'
) TYPE=MyISAM;

--
-- Dumping data for table `#__core_log_searches`
--


-- --------------------------------------------------------

--
-- Table structure for table `#__fb_announcement`
--

DROP TABLE IF EXISTS `#__fb_announcement`;
CREATE TABLE `#__fb_announcement` (
  `id` int(3) NOT NULL auto_increment,
  `title` tinytext,
  `sdescription` text NOT NULL,
  `description` text NOT NULL,
  `created` datetime NOT NULL default '0000-00-00 00:00:00',
  `published` tinyint(1) NOT NULL default '0',
  `ordering` tinyint(4) NOT NULL default '0',
  `showdate` tinyint(1) NOT NULL default '1',
  PRIMARY KEY  (`id`)
) TYPE=MyISAM AUTO_INCREMENT=1 ;

--
-- Dumping data for table `#__fb_announcement`
--


-- --------------------------------------------------------

--
-- Table structure for table `#__fb_attachments`
--

DROP TABLE IF EXISTS `#__fb_attachments`;
CREATE TABLE `#__fb_attachments` (
  `mesid` int(11) NOT NULL default '0',
  `filelocation` text NOT NULL,
  KEY `mesid` (`mesid`)
) TYPE=MyISAM;

--
-- Dumping data for table `#__fb_attachments`
--


-- --------------------------------------------------------

--
-- Table structure for table `#__fb_categories`
--

DROP TABLE IF EXISTS `#__fb_categories`;
CREATE TABLE `#__fb_categories` (
  `id` int(11) NOT NULL auto_increment,
  `parent` int(11) default '0',
  `name` tinytext,
  `cat_emoticon` tinyint(4) NOT NULL default '0',
  `locked` tinyint(4) NOT NULL default '0',
  `alert_admin` tinyint(4) NOT NULL default '0',
  `moderated` tinyint(4) NOT NULL default '1',
  `moderators` varchar(15) default NULL,
  `pub_access` tinyint(4) default '1',
  `pub_recurse` tinyint(4) default '1',
  `admin_access` tinyint(4) default '0',
  `admin_recurse` tinyint(4) default '1',
  `ordering` tinyint(4) NOT NULL default '0',
  `future2` int(11) default '0',
  `published` tinyint(4) NOT NULL default '0',
  `checked_out` tinyint(4) NOT NULL default '0',
  `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
  `review` tinyint(4) NOT NULL default '0',
  `hits` int(11) NOT NULL default '0',
  `description` text NOT NULL,
  `headerdesc` text NOT NULL,
  `class_sfx` varchar(20) NOT NULL default '',
  `id_last_msg` int(10) NOT NULL default '0',
  `numTopics` mediumint(8) NOT NULL default '0',
  `numPosts` mediumint(8) NOT NULL default '0',
  `time_last_msg` int(11) default NULL,
  PRIMARY KEY  (`id`),
  KEY `parent` (`parent`),
  KEY `published_pubaccess_id` (`published`,`pub_access`,`id`),
  KEY `msg_id` (`id_last_msg`)
) TYPE=MyISAM AUTO_INCREMENT=8 ;

--
-- Dumping data for table `#__fb_categories`
--

INSERT INTO `#__fb_categories` VALUES
(1, 0, 'Sample Board (Level 1 Category)', 0, 1, 0, 1, NULL, 0, 0, 0, 0, 1, 0, 1, 0, '0000-00-00 00:00:00', 0, 0, 'Description for level 1 Category board.', '', '', 0, 4, 0, 0),
(2, 1, 'Level 2 Category', 0, 1, 0, 1, NULL, 0, 0, 0, 0, 1, 0, 1, 0, '0000-00-00 00:00:00', 0, 0, 'Level 2 Category description.', '', '', 5, 4, 0, 1202503369),
(3, 2, 'Level 3 Category A', 0, 0, 0, 1, NULL, 0, 0, 0, 0, 3, 0, 0, 0, '0000-00-00 00:00:00', 0, 0, '', '', '', 0, 0, 0, 0),
(4, 2, 'Level 3 Category B', 0, 0, 0, 1, NULL, 0, 0, 0, 0, 2, 0, 0, 0, '0000-00-00 00:00:00', 0, 0, '', '', '', 0, 0, 0, 0),
(5, 2, 'Level 3 Category C', 0, 0, 0, 1, NULL, 0, 0, 0, 0, 1, 0, 0, 0, '0000-00-00 00:00:00', 0, 0, '', '', '', 0, 0, 0, 0),
(6, 1, 'Sample Locked Forum', 0, 1, 0, 1, NULL, 0, 0, 0, 0, 2, 0, 1, 0, '0000-00-00 00:00:00', 0, 0, 'Nobody, except Moderators and Admins can create new topics or replies in a locked forum (or move posts to it).', '', '', 0, 0, 0, 0),
(7, 1, 'Sample Review On Forum', 0, 0, 0, 1, NULL, 0, 0, 0, 0, 3, 0, 1, 0, '0000-00-00 00:00:00', 1, 0, 'Posts to be reviewed by Moderators prior to publishing them in this forum. This is useful in a Moderated forum only! If you set this without any Moderators specified, the Site Admin is solely responsible for approving/deleting submitted posts as these will be kept ''on hold''!', '', '', 0, 0, 0, 0);

-- --------------------------------------------------------

--
-- Table structure for table `#__fb_favorites`
--

DROP TABLE IF EXISTS `#__fb_favorites`;
CREATE TABLE `#__fb_favorites` (
  `thread` int(11) NOT NULL default '0',
  `userid` int(11) NOT NULL default '0',
  KEY `thread` (`thread`),
  KEY `userid` (`userid`)
) TYPE=MyISAM;

--
-- Dumping data for table `#__fb_favorites`
--


-- --------------------------------------------------------

--
-- Table structure for table `#__fb_groups`
--

DROP TABLE IF EXISTS `#__fb_groups`;
CREATE TABLE `#__fb_groups` (
  `id` int(4) NOT NULL auto_increment,
  `title` varchar(255) default NULL,
  PRIMARY KEY  (`id`)
) TYPE=MyISAM AUTO_INCREMENT=2 ;

--
-- Dumping data for table `#__fb_groups`
--

INSERT INTO `#__fb_groups` VALUES
(1, 'Registered');

-- --------------------------------------------------------

--
-- Table structure for table `#__fb_messages`
--

DROP TABLE IF EXISTS `#__fb_messages`;
CREATE TABLE `#__fb_messages` (
  `id` int(11) NOT NULL auto_increment,
  `parent` int(11) default '0',
  `thread` int(11) default '0',
  `catid` int(11) NOT NULL default '0',
  `name` tinytext,
  `userid` int(11) NOT NULL default '0',
  `email` tinytext,
  `subject` tinytext,
  `time` int(11) NOT NULL default '0',
  `ip` varchar(15) default NULL,
  `topic_emoticon` int(11) NOT NULL default '0',
  `locked` tinyint(4) NOT NULL default '0',
  `hold` tinyint(4) NOT NULL default '0',
  `ordering` int(11) default '0',
  `hits` int(11) default '0',
  `moved` tinyint(4) default '0',
  `modified_by` int(7) default NULL,
  `modified_time` int(11) default NULL,
  `modified_reason` tinytext,
  PRIMARY KEY  (`id`),
  KEY `thread` (`thread`),
  KEY `parent` (`parent`),
  KEY `catid` (`catid`),
  KEY `ip` (`ip`),
  KEY `userid` (`userid`),
  KEY `time` (`time`),
  KEY `locked` (`locked`),
  KEY `hold_time` (`hold`,`time`)
) TYPE=MyISAM AUTO_INCREMENT=6 ;

--
-- Dumping data for table `#__fb_messages`
--

INSERT INTO `#__fb_messages` VALUES
(1, 0, 1, 2, 'bestofjoomla', 0, 'anonymous@forum.here', 'Sample Post', 1178882702, '127.0.0.1', 0, 0, 0, 0, 1, 0, 0, 0, '0'),
(3, 0, 3, 2, 'admin', 62, 'admin@muffindcc.com', 'RocketLauncher', 1202503135, '127.0.0.1', 0, 0, 0, 0, 3, 0, 62, 1202503294, ''),
(4, 0, 4, 2, 'admin', 62, 'admin@muffindcc.com', 'MooMenu', 1202503260, '127.0.0.1', 0, 0, 0, 0, 0, 0, NULL, NULL, NULL),
(5, 0, 5, 2, 'admin', 62, 'admin@muffindcc.com', 'Typography', 1202503369, '127.0.0.1', 0, 0, 0, 0, 3, 0, NULL, NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `#__fb_messages_text`
--

DROP TABLE IF EXISTS `#__fb_messages_text`;
CREATE TABLE `#__fb_messages_text` (
  `mesid` int(11) NOT NULL default '0',
  `message` text NOT NULL,
  PRIMARY KEY  (`mesid`)
) TYPE=MyISAM;

--
-- Dumping data for table `#__fb_messages_text`
--

INSERT INTO `#__fb_messages_text` VALUES
(1, 'Fireboard is fully integrated forum solution for joomla, no bridges, no hacking core files: It can be installed just like any other component with only a few clicks.\r\n\r\nThe administration backend is fully integrated, native ACL implemented, and it has all the capabilities one would have come to expect from a mature, full-fledged forum solution!'),
(3, 'If you want to mimic this demo, check out RocketLauncher | index.php?option=com_content&view=article&id=2&Itemid=3'),
(4, 'Excellent mootools based dropdowns for your menus | index.php?option=com_content&view=article&id=5&Itemid=6'),
(5, 'Check out the extensive typography.');

-- --------------------------------------------------------

--
-- Table structure for table `#__fb_moderation`
--

DROP TABLE IF EXISTS `#__fb_moderation`;
CREATE TABLE `#__fb_moderation` (
  `catid` int(11) NOT NULL default '0',
  `userid` int(11) NOT NULL default '0',
  `future1` tinyint(4) default '0',
  `future2` int(11) default '0',
  PRIMARY KEY  (`catid`,`userid`)
) TYPE=MyISAM;

--
-- Dumping data for table `#__fb_moderation`
--


-- --------------------------------------------------------

--
-- Table structure for table `#__fb_ranks`
--

DROP TABLE IF EXISTS `#__fb_ranks`;
CREATE TABLE `#__fb_ranks` (
  `rank_id` mediumint(8) unsigned NOT NULL auto_increment,
  `rank_title` varchar(255) NOT NULL default '',
  `rank_min` mediumint(8) unsigned NOT NULL default '0',
  `rank_special` tinyint(1) unsigned NOT NULL default '0',
  `rank_image` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`rank_id`)
) TYPE=MyISAM AUTO_INCREMENT=10 ;

--
-- Dumping data for table `#__fb_ranks`
--

INSERT INTO `#__fb_ranks` VALUES
(1, 'Fresh Boarder', 0, 0, 'rank1.gif'),
(2, 'Junior Boarder', 20, 0, 'rank2.gif'),
(3, 'Senior Boarder', 40, 0, 'rank3.gif'),
(4, 'Expert Boarder', 80, 0, 'rank4.gif'),
(5, 'Gold Boarder', 160, 0, 'rank5.gif'),
(6, 'Platinum Boarder', 320, 0, 'rank6.gif'),
(7, 'Administrator', 0, 1, 'rankadmin.gif'),
(8, 'Moderator', 0, 1, 'rankmod.gif'),
(9, 'Spammer', 0, 1, 'rankspammer.gif');

-- --------------------------------------------------------

--
-- Table structure for table `#__fb_sessions`
--

DROP TABLE IF EXISTS `#__fb_sessions`;
CREATE TABLE `#__fb_sessions` (
  `userid` int(11) NOT NULL default '0',
  `allowed` text,
  `lasttime` int(11) NOT NULL default '0',
  `readtopics` text,
  `currvisit` int(11) NOT NULL default '0',
  PRIMARY KEY  (`userid`)
) TYPE=MyISAM;

--
-- Dumping data for table `#__fb_sessions`
--

-- --------------------------------------------------------

--
-- Table structure for table `#__fb_smileys`
--

DROP TABLE IF EXISTS `#__fb_smileys`;
CREATE TABLE `#__fb_smileys` (
  `id` int(4) NOT NULL auto_increment,
  `code` varchar(12) NOT NULL default '',
  `location` varchar(50) NOT NULL default '',
  `greylocation` varchar(60) NOT NULL default '',
  `emoticonbar` tinyint(4) NOT NULL default '0',
  PRIMARY KEY  (`id`)
) TYPE=MyISAM AUTO_INCREMENT=38 ;

--
-- Dumping data for table `#__fb_smileys`
--

INSERT INTO `#__fb_smileys` VALUES
(1, 'B)', 'cool.png', 'cool-grey.png', 1),
(2, ':(', 'sad.png', 'sad-grey.png', 1),
(3, ':)', 'smile.png', 'smile-grey.png', 1),
(4, ':-)', 'smile.png', 'smile-grey.png', 0),
(5, ':-(', 'sad.png', 'sad-grey.png', 0),
(6, ':laugh:', 'laughing.png', 'laughing-grey.png', 1),
(7, ':cheer:', 'cheerful.png', 'cheerful-grey.png', 1),
(8, ';)', 'wink.png', 'wink-grey.png', 1),
(9, ';-)', 'wink.png', 'wink-grey.png', 0),
(10, ':P', 'tongue.png', 'tongue-grey.png', 1),
(12, ':X', 'sick.png', 'sick-grey.png', 0),
(13, ':x', 'sick.png', 'sick-grey.png', 0),
(14, ':angry:', 'angry.png', 'angry-grey.png', 1),
(15, ':mad:', 'angry.png', 'angry-grey.png', 0),
(16, ':unsure:', 'unsure.png', 'unsure-grey.png', 1),
(17, ':ohmy:', 'shocked.png', 'shocked-grey.png', 1),
(18, ':huh:', 'wassat.png', 'wassat-grey.png', 1),
(19, ':dry:', 'ermm.png', 'ermm-grey.png', 1),
(20, ':ermm:', 'ermm.png', 'ermm-grey.png', 0),
(21, ':lol:', 'grin.png', 'grin-grey.png', 1),
(22, ':sick:', 'sick.png', 'sick-grey.png', 1),
(23, ':silly:', 'silly.png', 'silly-grey.png', 1),
(24, ':y32b4:', 'silly.png', 'silly-grey.png', 0),
(25, ':blink:', 'blink.png', 'blink-grey.png', 1),
(26, ':blush:', 'blush.png', 'blush-grey.png', 1),
(27, ':kiss:', 'kissing.png', 'kissing-grey.png', 1),
(28, ':rolleyes:', 'blink.png', 'blink-grey.png', 0),
(29, ':woohoo:', 'w00t.png', 'w00t-grey.png', 1),
(30, ':side:', 'sideways.png', 'sideways-grey.png', 1),
(31, ':S', 'dizzy.png', 'dizzy-grey.png', 1),
(32, ':s', 'dizzy.png', 'dizzy-grey.png', 0),
(33, ':evil:', 'devil.png', 'devil-grey.png', 1),
(34, ':whistle:', 'whistling.png', 'whistling-grey.png', 1),
(35, ':pinch:', 'pinch.png', 'pinch-grey.png', 1),
(36, ':p', 'tongue.png', 'tongue-grey.png', 0),
(37, ':D', 'laughing.png', 'laughing-grey.png', 0);

-- --------------------------------------------------------

--
-- Table structure for table `#__fb_subscriptions`
--

DROP TABLE IF EXISTS `#__fb_subscriptions`;
CREATE TABLE `#__fb_subscriptions` (
  `thread` int(11) NOT NULL default '0',
  `userid` int(11) NOT NULL default '0',
  `future1` int(11) default '0',
  KEY `thread` (`thread`),
  KEY `userid` (`userid`)
) TYPE=MyISAM;

--
-- Dumping data for table `#__fb_subscriptions`
--

INSERT INTO `#__fb_subscriptions` VALUES
(2, 62, 0),
(3, 62, 0),
(4, 62, 0),
(5, 62, 0);

-- --------------------------------------------------------

--
-- Table structure for table `#__fb_users`
--

DROP TABLE IF EXISTS `#__fb_users`;
CREATE TABLE `#__fb_users` (
  `userid` int(11) NOT NULL default '0',
  `view` varchar(8) NOT NULL default 'flat',
  `signature` text,
  `moderator` int(11) default '0',
  `ordering` int(11) default '0',
  `posts` int(11) default '0',
  `avatar` varchar(50) default NULL,
  `karma` int(11) default '0',
  `karma_time` int(11) default '0',
  `group_id` int(4) default '1',
  `uhits` int(11) default '0',
  `personalText` tinytext,
  `gender` tinyint(4) NOT NULL default '0',
  `birthdate` date NOT NULL default '0001-01-01',
  `location` varchar(50) default NULL,
  `ICQ` varchar(50) default NULL,
  `AIM` varchar(50) default NULL,
  `YIM` varchar(50) default NULL,
  `MSN` varchar(50) default NULL,
  `SKYPE` varchar(50) default NULL,
  `GTALK` varchar(50) default NULL,
  `websitename` varchar(50) default NULL,
  `websiteurl` varchar(50) default NULL,
  `rank` tinyint(4) NOT NULL default '0',
  `hideEmail` tinyint(1) NOT NULL default '1',
  `showOnline` tinyint(1) NOT NULL default '1',
  PRIMARY KEY  (`userid`),
  KEY `group_id` (`group_id`)
) TYPE=MyISAM;

--
-- Dumping data for table `#__fb_users`
--

INSERT INTO `#__fb_users` VALUES
(62, 'flat', NULL, 1, 0, 3, NULL, 0, 0, 1, 0, NULL, 0, '0001-01-01', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 0, 1, 1);

-- --------------------------------------------------------

--
-- Table structure for table `#__fb_whoisonline`
--

DROP TABLE IF EXISTS `#__fb_whoisonline`;
CREATE TABLE `#__fb_whoisonline` (
  `id` int(6) NOT NULL auto_increment,
  `userid` int(7) NOT NULL default '0',
  `time` varchar(14) NOT NULL default '0',
  `item` int(6) default '0',
  `what` varchar(255) default '0',
  `func` varchar(50) default NULL,
  `do` varchar(50) default NULL,
  `task` varchar(50) default NULL,
  `link` text,
  `userip` varchar(20) NOT NULL default '',
  `user` tinyint(2) NOT NULL default '0',
  PRIMARY KEY  (`id`),
  KEY `userid` (`userid`)
) TYPE=MyISAM AUTO_INCREMENT=11 ;

--
-- Dumping data for table `#__fb_whoisonline`
--

INSERT INTO `#__fb_whoisonline` VALUES
(10, 0, '1202756912', 0, 'Typography', 'view', '', '', '/#__j15/index.php/component/fireboard/?func=view&catid=2&id=5&limit=6&limitstart=0', '70.237.218.171', 0);

-- --------------------------------------------------------

--
-- Table structure for table `#__groups`
--

DROP TABLE IF EXISTS `#__groups`;
CREATE TABLE `#__groups` (
  `id` tinyint(3) unsigned NOT NULL default '0',
  `name` varchar(150) NOT NULL default '',
  PRIMARY KEY  (`id`)
) TYPE=MyISAM;

--
-- Dumping data for table `#__groups`
--

INSERT INTO `#__groups` VALUES
(0, 'Public'),
(1, 'Registered'),
(2, 'Special');

-- --------------------------------------------------------

--
-- Table structure for table `#__menu`
--

DROP TABLE IF EXISTS `#__menu`;
CREATE TABLE `#__menu` (
  `id` int(11) NOT NULL auto_increment,
  `menutype` varchar(225) default NULL,
  `name` text,
  `alias` varchar(255) NOT NULL default '',
  `link` text,
  `type` varchar(150) 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`)
) TYPE=MyISAM AUTO_INCREMENT=44 ;

--
-- Dumping data for table `#__menu`
--

INSERT INTO `#__menu` VALUES
(1, 'mainmenu', 'Home', 'home', 'index.php?option=com_content&view=frontpage', 'component', 1, 0, 20, 0, 8, 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\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=0\nshow_pdf_icon=0\nshow_print_icon=0\nshow_email_icon=0\nshow_hits=1\nfeed_summary=\npage_title=Populus Template\nshow_page_title=0\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', 0, 0, 1),
(2, 'mainmenu', 'Features', 'features', 'index.php?option=com_content&view=article&id=1', '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),
(3, 'mainmenu', 'RocketLauncher', 'rocketlauncher', 'index.php?option=com_content&view=article&id=2', 'component', 1, 2, 20, 1, 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),
(4, 'mainmenu', 'Preset Styles', 'preset-styles', 'index.php?option=com_content&view=article&id=3', 'component', 1, 2, 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),
(5, 'mainmenu', 'RokZoom Enabled', 'rokzoom-enabled', 'index.php?option=com_content&view=article&id=4', 'component', 1, 2, 20, 1, 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),
(6, 'mainmenu', 'Menu Options', 'menu-options', 'index.php?option=com_content&view=article&id=5', 'component', 1, 2, 20, 1, 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=\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),
(7, 'mainmenu', 'Module Positions', 'module-positions', 'index.php?option=com_content&view=article&id=6', 'component', 1, 2, 20, 1, 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),
(8, 'mainmenu', 'Module Variations', 'module-variations', 'index.php?option=com_content&view=article&id=7', 'component', 1, 2, 20, 1, 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),
(9, 'mainmenu', 'Typography', 'typography', 'index.php?option=com_content&view=article&id=8', '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),
(10, 'mainmenu', 'Tutorials', 'tutorials', 'index.php?option=com_content&view=article&id=9', '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),
(11, 'mainmenu', 'Installation', 'installation', 'index.php?option=com_content&view=article&id=10', 'component', 1, 10, 20, 1, 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),
(12, 'mainmenu', 'Custom Modules', 'custom-modules', 'index.php?option=com_content&view=article&id=11', 'component', 1, 10, 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),
(13, 'mainmenu', 'Menu Options', 'menu-options', 'index.php?option=com_content&view=article&id=5', 'component', 1, 10, 20, 1, 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),
(14, 'mainmenu', 'Basic Customisation', 'basic-customisation', 'index.php?option=com_content&view=article&id=12', 'component', 1, 10, 20, 1, 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=\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),
(15, 'mainmenu', 'Logo Editing', 'logo-editing', 'index.php?option=com_content&view=article&id=13', 'component', 1, 10, 20, 1, 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),
(16, 'mainmenu', 'Using Typography', 'using-typography', 'index.php?option=com_content&view=article&id=14', 'component', 1, 10, 20, 1, 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),
(17, 'mainmenu', 'Demo Content', 'demo-content', 'index.php?option=com_content&view=article&id=15', 'component', 1, 10, 20, 1, 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),
(18, 'mainmenu', 'J! Stuff', 'j-stuff', 'index.php?option=com_content&view=article&id=16', 'component', 1, 2, 20, 1, 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),
(19, 'mainmenu', 'Contact Us', 'contact', 'index.php?option=com_contact&view=contact&id=1', 'component', 1, 18, 7, 2, 1, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'show_contact_list=0\nshow_category_crumb=0\ncontact_icons=\nicon_address=\nicon_email=\nicon_telephone=\nicon_mobile=\nicon_fax=\nicon_misc=\nshow_headings=\nshow_position=\nshow_email=\nshow_telephone=\nshow_mobile=\nshow_fax=\nallow_vcard=\nbanned_email=\nbanned_subject=\nbanned_text=\nvalidate_session=\ncustom_reply=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', 0, 0, 0),
(20, 'mainmenu', 'News', 'news', 'index.php?option=com_content&view=category&id=4', 'component', 1, 18, 20, 2, 2, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'show_headings=1\nshow_date=0\ndate_format=\nfilter=1\nfilter_type=title\norderby_sec=\nshow_pagination=1\nshow_pagination_limit=1\nshow_feed_link=1\nshow_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),
(21, 'mainmenu', 'Joomla! License', 'joomla-license', 'index.php?option=com_content&view=article&id=17', 'component', 1, 20, 20, 3, 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),
(22, 'mainmenu', 'Blog', 'blog', 'index.php?option=com_content&view=category&layout=blog&id=4', 'component', 1, 20, 20, 3, 2, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'show_description=0\nshow_description_image=0\nnum_leading_articles=1\nnum_intro_articles=4\nnum_columns=2\nnum_links=4\norderby_pri=\norderby_sec=\nshow_pagination=2\nshow_pagination_results=1\nshow_feed_link=1\nshow_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),
(23, 'mainmenu', 'News Feeds', 'newsfeeds', 'index.php?option=com_newsfeeds&view=categories', 'component', 1, 20, 11, 3, 3, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'show_limit=1\nshow_comp_description=1\ncomp_description=\nimage=-1\nimage_align=right\nshow_headings=\nshow_name=\nshow_articles=\nshow_link=\nshow_cat_description=\nshow_cat_items=\nshow_feed_image=\nshow_feed_description=\nshow_item_description=\nfeed_word_count=0\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', 0, 0, 0),
(24, 'mainmenu', 'Link', 'links', 'index.php?option=com_weblinks&view=category&id=7', 'component', 1, 18, 4, 2, 5, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'show_feed_link=1\nshow_comp_description=\ncomp_description=\nshow_link_hits=\nshow_link_description=\nshow_other_cats=\nshow_headings=\ntarget=\nlink_icons=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', 0, 0, 0),
(25, 'mainmenu', 'Search', 'search', 'index.php?option=com_search&view=search', 'component', 1, 18, 15, 2, 3, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'search_areas=1\nshow_date=\nenabled=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', 0, 0, 0),
(26, 'mainmenu', 'FAQs', 'faq-installation', 'index.php?option=com_content&view=category&id=5', 'component', 1, 18, 20, 2, 4, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'show_headings=1\nshow_date=0\ndate_format=\nfilter=1\nfilter_type=title\norderby_sec=\nshow_pagination=1\nshow_pagination_limit=1\nshow_feed_link=1\nshow_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),
(27, 'mainmenu', 'Wrapper', 'wrapper', 'index.php?option=com_wrapper&view=wrapper', 'component', 1, 0, 17, 0, 14, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'url=http://www.google.com\nscrolling=auto\nwidth=100%\nheight=500\nheight_auto=0\nadd_scheme=1\npage_title=\nshow_page_title=0\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', 0, 0, 0),
(28, 'mainmenu', 'Dummy Menu Item', 'dummy', 'javascript:void(0);', 'url', 1, 6, 0, 2, 1, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'menu_image=-1\n\n', 0, 0, 0),
(29, 'mainmenu', 'Dummy Menu Item', 'dummy', 'javascript:void(0);', 'url', 1, 6, 0, 2, 2, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'menu_image=-1\n\n', 0, 0, 0),
(30, 'mainmenu', 'Dummy Menu Item', 'dummy', 'javascript:void(0);', 'url', 1, 6, 0, 2, 3, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'menu_image=-1\n\n', 0, 0, 0),
(31, 'mainmenu', 'Dummy Menu Item', 'dummy', 'javascript:void(0);', 'url', 1, 6, 0, 2, 4, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'menu_image=-1\n\n', 0, 0, 0),
(32, 'mainmenu', 'Dummy Menu Item', 'dummy', 'javascript:void(0);', 'url', 1, 30, 0, 3, 1, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'menu_image=-1\n\n', 0, 0, 0),
(33, 'mainmenu', 'Dummy Menu Item', 'dummy', 'javascript:void(0);', 'url', 1, 30, 0, 3, 2, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'menu_image=-1\n\n', 0, 0, 0),
(34, 'mainmenu', 'Dummy Menu Item', 'dummy', 'javascript:void(0);', 'url', 1, 30, 0, 3, 3, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'menu_image=-1\n\n', 0, 0, 0),
(35, 'mainmenu', '5 Distinct Menu Styles', '-menu-styles', 'index.php?option=com_content&view=article&id=5&Itemid=6', 'url', -2, 0, 0, 1, 7, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'menu_image=-1\n\n', 0, 0, 0),
(36, 'mainmenu', 'Light / Dark preset styles', 'preset-styles', 'index.php?option=com_content&view=article&id=3&Itemid=4', 'url', -2, 0, 0, 1, 2, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'menu_image=-1\n\n', 0, 0, 0),
(37, 'mainmenu', 'SIFR Custom Headers', 'sifr', 'index.php?option=com_content&view=article&id=8&Itemid=9', 'url', -2, 0, 0, 1, 6, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'menu_image=-1\n\n', 0, 0, 0),
(38, 'mainmenu', 'Tabbed Module System', 'tabbed', 'index.php?option=com_content&view=article&id=11&Itemid=12', 'url', -2, 0, 0, 1, 5, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'menu_image=-1\n\n', 0, 0, 0),
(39, 'mainmenu', 'Tutorials & Guides', 'tutorials', 'http://demo.rockettheme.com/feb08/index.php?option=com_content&task=view&id=22&Itemid=76', 'url', -2, 0, 0, 1, 4, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'menu_image=-1\n\n', 0, 0, 0),
(40, 'mainmenu', 'RocketTheme', 'rockettheme', 'http://www.rockettheme.com', 'url', -2, 0, 0, 1, 3, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'menu_image=-1\n\n', 0, 0, 0),
(41, 'mainmenu', 'Community', 'community', 'index.php?option=com_comprofiler&task=usersList&listid=2', 'url', 1, 0, 0, 0, 13, 62, '2008-02-08 18:32:10', 0, 0, 0, 0, 'menu_image=-1\n\n', 0, 0, 0),
(42, 'mainmenu', 'Forum', 'forum', 'index.php?option=com_fireboard', 'component', 1, 0, 48, 0, 12, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'page_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', 0, 0, 0),
(43, 'mainmenu', 'Groups', 'groups', 'index.php?option=com_groupjive', 'component', -2, 0, 42, 0, 1, 0, '0000-00-00 00:00:00', 0, 0, 0, 0, 'page_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n', 0, 0, 0);

-- --------------------------------------------------------

--
-- Table structure for table `#__menu_types`
--

DROP TABLE IF EXISTS `#__menu_types`;
CREATE TABLE `#__menu_types` (
  `id` int(10) unsigned NOT NULL auto_increment,
  `menutype` varchar(225) NOT NULL default '',
  `title` text NOT NULL,
  `description` text NOT NULL,
  PRIMARY KEY  (`id`),
  UNIQUE KEY `menutype` (`menutype`)
) TYPE=MyISAM AUTO_INCREMENT=2 ;

--
-- Dumping data for table `#__menu_types`
--

INSERT INTO `#__menu_types` VALUES
(1, 'mainmenu', 'Main Menu', 'The main menu for the site');

-- --------------------------------------------------------

--
-- Table structure for table `#__messages`
--

DROP TABLE IF EXISTS `#__messages`;
CREATE TABLE `#__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`)
) TYPE=MyISAM AUTO_INCREMENT=1 ;

--
-- Dumping data for table `#__messages`
--


-- --------------------------------------------------------

--
-- Table structure for table `#__messages_cfg`
--

DROP TABLE IF EXISTS `#__messages_cfg`;
CREATE TABLE `#__messages_cfg` (
  `user_id` int(10) unsigned NOT NULL default '0',
  `cfg_name` text NOT NULL,
  `cfg_value` text NOT NULL,
  UNIQUE KEY `idx_user_var_name` (`user_id`,`cfg_name`(100))
) TYPE=MyISAM;

--
-- Dumping data for table `#__messages_cfg`
--


-- --------------------------------------------------------

--
-- Table structure for table `#__migration_backlinks`
--

DROP TABLE IF EXISTS `#__migration_backlinks`;
CREATE TABLE `#__migration_backlinks` (
  `itemid` int(11) NOT NULL default '0',
  `name` varchar(100) NOT NULL default '',
  `url` text NOT NULL,
  `sefurl` text NOT NULL,
  `newurl` text NOT NULL,
  PRIMARY KEY  (`itemid`)
) TYPE=MyISAM;

--
-- Dumping data for table `#__migration_backlinks`
--


-- --------------------------------------------------------

--
-- Table structure for table `#__modules`
--

DROP TABLE IF EXISTS `#__modules`;
CREATE TABLE `#__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(150) 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(150) 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`)
) TYPE=MyISAM AUTO_INCREMENT=116 ;

--
-- Dumping data for table `#__modules`
--

INSERT INTO `#__modules` VALUES
(1, 'Main Menu', '', 1, 'user1', 0, '0000-00-00 00:00:00', 1, 'mod_mainmenu', 0, 0, 1, 'menutype=mainmenu\nmenu_style=vert_indent\nstartLevel=0\nendLevel=0\nshowAllChildren=0\nwindow_open=\nshow_whitespace=0\ncache=1\ntag_id=\nclass_sfx=\nmoduleclass_sfx=\nmaxdepth=10\nmenu_images=0\nmenu_images_align=0\nexpand_menu=0\nactivate_parent=1\nfull_active_id=1\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, '', 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, ''),
(105, 'Latest Posts', '', 1, 'user2', 0, '0000-00-00 00:00:00', 1, 'mod_wz_uftt', 0, 0, 1, 'forum_type=fireboard\nuser_database=#__users\ntable_width=\nfb_limit=6\nlang_reply=\nlang_started=\nlang_by=\nlang_in=\nlang_at=\nlang_days_ago=\noption_date_tags_today=\noption_date_tags_yesterday=\ntag_latest=\nlang_hours_ago=\nindent=3\ncolumns=1\nlimit=10\nmsglength=\nfont_size_topic=\nnowrap=1\nswitch_author=1\nnamelength=\nfont_size_author=\nswitch_avatar=0\navatar_width=\nswitch_date=1\nuser_date=D, M jS, Y\noption_date_tags=0\nfont_size_date=\nswitch_time=1\nuser_time=H:i:s\nfont_size_time=\nswitch_forum=0\nforumlength=\nfont_size_forum=\nforum_active=1\nshow_count=3\ntopic_switch=1\ncustom_bullet=\nuser_bullet=./modules/mod_wz_uftt/arrow1.gif\n\n', 0, 0, ''),
(104, 'Community Login', '', 1, 'inset', 0, '0000-00-00 00:00:00', 1, 'mod_cblogin', 0, 0, 1, 'moduleclass_sfx=-hilite6\nhorizontal=0\ncompact=0\npretext=<img src="images/stories/avatar.png"  alt="image" align="left" />\nposttext=\nlogin=\nlogout=index.php\nshow_lostpass=1\nshow_newaccount=1\nname_lenght=10\npass_lenght=10\nlogin_message=0\nlogout_message=0\nremember_enabled=1\ngreeting=1\nname=0\nshow_avatar=0\navatar_position=default\npms_type=0\nshow_pms=0\nshow_connection_notifications=0\nhttps_post=0\n\n', 0, 0, ''),
(103, 'RokSlideshow', '', 1, 'header', 0, '0000-00-00 00:00:00', 1, 'mod_rokslideshow', 0, 0, 0, 'moduleclass_sfx=\nwidth=500\nheight=261\nimagePath=images/stories/slideshow\nshowCaption=1\nheightCaption=55\ntitleSize=14px\ntitleColor=#fff\ndescSize=11px\ndescColor=#ccc\nsortCriteria=0\nsortOrder=0\nsortOrderManual=\nimageResize=0\nimageDuration=9000\ntransDuration=2000\ntransType=fade\npan=50\nzoom=50\ntransition=Expo.easeOut\n\n', 0, 0, ''),
(21, 'Search', '', 1, 'search', 0, '0000-00-00 00:00:00', 1, 'mod_search', 0, 0, 0, 'moduleclass_sfx=\nwidth=20\ntext=\nbutton=\nbutton_pos=right\nimagebutton=\nbutton_text=\ncache=1\ncache_time=900\n\n', 0, 0, ''),
(22, 'Login', '', 1, 'top', 0, '0000-00-00 00:00:00', 1, 'mod_login', 0, 0, 0, 'cache=0\nmoduleclass_sfx=\npretext=\nposttext=\nlogin=\nlogout=\ngreeting=1\nname=0\nusesecure=0\n\n', 0, 0, ''),
(26, 'Banner', '<img src="images/stories/banner-468x60.png"  alt="Banner" width="468" height="60" border="0" />', 1, 'banner', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 0, 'moduleclass_sfx=\n\n', 0, 0, ''),
(27, 'Upload the files', 'Download the separate <b>HiveMind</b> RocketLauncher package from the <b>HiveMind</b>\r\ntemplate downloads section and upload the Joomla files within to your\r\nserver as you would a standard Joomla installation package. You upload the files with a FTP \r\nclient such as <a href="http://filezilla.sourceforge.net/" title="filezilla">Filezilla</a>.\r\n\r\n<a href="http://www.rockettheme.com/option,com_smf/Itemid,190/topic,20046.0/" class="readon">Learn more...</a>', 1, 'right', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=-hilite3b\n\n', 0, 0, ''),
(28, 'Run the installer', 'Point your browser to the location of the <b>RocketLauncher</b> Joomla\r\ninstallation package on your server (whichever domain/folder you\r\nuploaded to). You will then see a <b>RocketLauncher</b> splash screen. Click\r\nBegin Install and follow the on screen Joomla installation instructions.', 2, 'right', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=-hilite2a\n\n', 0, 0, ''),
(29, 'Customisation', '<h4><a href="#d-style" name="d-style">Default Style</a></h4>\r\n<strong>Populus</strong> has 8, pre-made styles that can be easily selected from the option shown in the manager.\r\n\r\n<h4><a name="rokzoom" href="#rokzoom">RokZoom Enabled</a></h4>\r\nRokZoom, a powerful and presentationally excellent script can sometimes come into conflict with other javascript libraries, you can disable it in the manager.\r\n\r\n<h4><a name="t-width" href="#t-width">Template Width</a></h4>\r\nYou have the ability to select, with ease, the width of the template. The setting below is what you edit to either reduce or increase templates width.\r\n\r\n<h4><a href="#m-name" name="m-name">Menu Name</a></h4>\r\nThe following parameter controls which Joomla! menu is loaded for the horizontal navigation bar. Therefore, you can use a custom menu instead of a default menu such as &quot;tab-menu&quot; or use another default menu such as &quot;topmenu&quot;.<br/>\r\n\r\n<h4><a href="#m-type" name="m-type">Menu Type</a></h4>\r\n<b>Populus</b> has 4 options for the horizontal navigation bar. You can either, select moomenu, the latest menu addition;  suckerfish, the basic vertical dropdown menu; splitmenu, the popular classic or have the area as a separate module position.', 2, 'user2', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=\n\n', 0, 0, ''),
(95, 'User6 -hilite7', 'This is the <b>-hilite6</b> module hilite. Enter this as your <b>module class suffix</b> in the Module Manager.', 1, 'user6', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=-hilite7\n\n', 0, 0, ''),
(87, 'User2 -hilite4', 'This is the <b>-hilite4</b> module hilite. Enter this as your <b>module class suffix</b> in the Module Manager.', 5, 'user2', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=-hilite4\n\n', 0, 0, ''),
(84, 'User1 -hilite1', 'This is the <b>-hilite1</b> module hilite. Enter this as your <b>module class suffix</b> in the Module Manager.', 3, 'user1', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=-hilite1\n\n', 0, 0, ''),
(85, 'User1 -hilite2', 'This is the <b>-hilite2</b> module hilite. Enter this as your <b>module class suffix</b> in the Module Manager.', 4, 'user1', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=-hilite2\n\n', 0, 0, ''),
(86, 'User1 -hilite3', 'This is the <b>-hilite3</b> module hilite. Enter this as your <b>module class suffix</b> in the Module Manager.', 5, 'user1', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=-hilite3\n\n', 0, 0, ''),
(88, 'User2 -hilite5', 'This is the <b>-hilite5</b> module hilite. Enter this as your <b>module class suffix</b> in the Module Manager.', 7, 'user2', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=-hilite5\n\n', 0, 0, ''),
(89, 'User2 -hilite6', 'This is the <b>-hilite6</b> module hilite. Enter this as your <b>module class suffix</b> in the Module Manager.', 6, 'user2', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=-hilite6\n\n', 0, 0, ''),
(90, 'User3 -hilite2', 'This is the <b>-hilite2</b> module hilite. Enter this as your <b>module class suffix</b> in the Module Manager.', 1, 'user3', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=-hilite2\n\n', 0, 0, ''),
(91, 'User3 -hilite5', 'This is the <b>-hilite5</b> module hilite. Enter this as your <b>module class suffix</b> in the Module Manager.', 2, 'user3', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=-hilite5\n\n', 0, 0, ''),
(92, 'User3 -hilite1', 'This is the <b>-hilite1</b> module hilite. Enter this as your <b>module class suffix</b> in the Module Manager.', 3, 'user3', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=-hilite1\n\n', 0, 0, ''),
(93, 'User4 -hilite5', 'This is the <b>-hilite5</b> module hilite. Enter this as your <b>module class suffix</b> in the Module Manager.', 1, 'user4', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=-hilite5\n\n', 0, 0, ''),
(94, 'User5 -hilite6', 'This is the <b>-hilite6</b> module hilite. Enter this as your <b>module class suffix</b> in the Module Manager.', 1, 'user5', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=-hilite6\n\n', 0, 0, ''),
(96, 'User7 -hilite7', 'This is the <b>-hilite7</b> module hilite. Enter this as your <b>module class suffix</b> in the Module Manager.', 2, 'user7', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=-hilite7\n\n', 0, 0, ''),
(97, 'User8 Module', 'This is a module using default module styling as provided by the template. This is as a module will appear with no <b>hilite</b> applied.', 1, 'user8', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=\n\n', 0, 0, ''),
(98, 'User9 Module', 'This is a module using default module styling as provided by the template. This is as a module will appear with no <b>hilite</b> applied.', 1, 'user9', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=\n\n', 0, 0, ''),
(106, 'Christmas Fans', '<img src="images/xmas.jpg" alt="Christmas Carol" align="left" style="margin-right:10px;" />\r\nIts December, that means its Christmas time and that means the Muppets Christmas Carol film. The Muppet''s Christmas Carol film is the undisputed champion for the festive holiday for all ages. Have you ever seen this great film? If so, why not? Do you want to join fellow Christmas film lovers? \r\n<div class="clr"></div><a href="#" class="readon" style="margin-right: 0px;margin-bottom: 10px;">Join here...</a>', 2, 'user6', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=-hilite2\n\n', 0, 0, ''),
(107, 'Horror Lovers', '<img src="images/thirty.jpg" alt="30" align="left" style="margin-right:10px;" />\r\nTerrifying, scary, frightening, that is what we like in a good horror film. 30 days of night does not disappoint as the latest horror release. From rampaging vampires to dark sceneries, to excellent special effects; you will be terrified by this film! Want to meet fellow horror enthusiasts? \r\n<div class="clr"></div><a href="#" class="readon" style="margin-right: 0px;margin-bottom: 10px;">Join here...</a>', 1, 'user7', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=-hilite1\n\n', 0, 0, ''),
(108, 'Legacy Mode', '<b>Note</b>, the 1.5 demo uses Legacy Modue to allow for Community Builder and Fireboard to be used which are currently not native to Joomla 1.5. To disable Legacy Mode, go to <b><u>Admin > Extensions > Plugin Manager > System - Legacy</u></b>. Then select <b>Enable : no</b> to disable.', 3, 'user2', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=-hilite4\n\n', 0, 0, ''),
(109, 'Extensions', 'The demo utilises several main Joomla components, orientated for community portals, these are <a href="http://www.joomlapolis.com">Community Builder</a> and <a href="http://www.bestofjoomla.com">Fireboard</a>. GroupJive has issues with legacy mode and was exempted from this demo but still present on the 1.0 version.', 4, 'user1', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=-hilite2\n\n', 0, 0, ''),
(114, 'Tutorials', 'We have an extensive <a href="http://tutorials.rockettheme.com">Tutorial Site</a> with a series of written tutorials. A series of video tutorials are available, taking you through the general Joomla processes connected to the usage of our templates.<br /><br />\r\nVisit the <a href="http://www.rockettheme.com/option,com_smf/Itemid,190/board,88.0/">forums</a>, for more tutorials  to aid you with common modification requests.', 4, 'user3', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=-hilite1\n\n', 0, 0, ''),
(110, 'RokSlide Powered', 'Harnessing the power and functionality of the popular RokSlide module, Populus offers the ability to present your modules in sliding tabs.\r\n\r\n<a href="index.php?option=com_content&view=article&id=11&Itemid=12" class="readon">Learn more...</a>', 0, 'user15', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=\n\n', 0, 0, ''),
(111, 'RocketLauncher Available', 'The Populus RocketLauncher package consists of a full 1.5 Joomla install, complete with all of the demo images, content, modules, and extensions. \r\n<a href="index.php?option=com_content&view=article&id=2&Itemid=3" class="readon">Learn more...</a>', 0, 'user16', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=\n\n', 0, 0, ''),
(112, 'Powered By', '<br /><img src="images/supported-icons.png" alt="powered by"  style="width:284px;height:41px;" />', 2, 'user17', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 0, 'moduleclass_sfx=\n\n', 0, 0, ''),
(113, 'Current Visitors', '', 1, 'user17', 0, '0000-00-00 00:00:00', 1, 'mod_whosonline', 0, 0, 1, 'cache=0\nshowmode=2\nmoduleclass_sfx=\n\n', 0, 0, ''),
(99, 'Introducing Populus', '<p>The exciting new Populus template features a module driven design with loads of module positions, making it one of the most flexible templates we have ever offered. Harness the power and flexibility of Populus to create the ultimate community portal site.</p>\r\n\r\n<p>Populus also features our popular integrated tabbed module system, providing you with a powerful way to display your content. Also making its return is the stylish RokSlideShow module, as well as many more features you''ve come to expect from RocketTheme templates including: <a href="index.php?option=com_content&view=article&id=5&Itemid=6">RokMooMenu</a>, <a href="index.php?option=com_content&view=article&id=6&Itemid=7">an incredible 22 module positions</a> with <a href="index.php?option=com_content&view=article&id=7&Itemid=8">subtle module variations</a>, <a href="index.php?option=com_content&view=article&id=4&Itemid=5">RokZoom integration</a>, and <a href="index.php?option=com_content&view=article&id=1&Itemid=2">so much more...</a></p>', 0, 'user10', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=\n\n', 0, 0, ''),
(100, '22 Module Positions', '<p>Populus features an incredible 22 fully collapsible module positions providing you with the ultimate in flexibility. Populus includes built in style and implementation for the extra module positions "user10 - user 17". These module positions are not defined in a default Joomla install and must be added.</p><br /><br />', 0, 'user11', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=\n\n', 0, 0, ''),
(102, 'Fireboard Theme', '<p><a href="#"><img src="images/forum_thumb.jpg" alt="Content" width="80" height="80" style="border:3px solid #eee" class="content-left" /></a>The all new Populus template includes custom styling for better integration of the popular Fireboard Joomla forum solution. Using the custom Populus Fireboard theme, you can deploy a great looking forum that will match perfectly with any of the preset Populus color styles!</p>\r\n\r\n<a href="#" class="readon">See it!...</a>', 0, 'user13', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=\n\n', 0, 0, ''),
(101, 'Mootools Integration', '<p>Populus utilises the javascript library known as mootools to power special effects such as the RokMooMenu, RokSlide integration, and RokZoom features. Populus uses the latest development build of the mootools javascript library, but is also now compatible with the earlier 1.11 version of mootools as well for better integration and backwards compatibility.</p>\r\n\r\n<p>Populus'' built in mootools javascript and functionality can also be disabled, should you need to use third party extensions which utilise other javascript libraries. Visit the RocketTheme Populus forum for more information. You can find out more information about Mootools on their website, located at <a href="http://mootools.net">http://mootools.net</a>.</p>', 0, 'user12', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=\n\n', 0, 0, ''),
(81, 'Mootools Integration', 'Populus features Mootools javascript powered functionality that is now compatible with both the latest mootools builds as well as the earlier 1.11 version.\r\n<br /><a href="#" class="readon">Learn more...</a>', 7, 'user1', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=-hilite2\n\n', 0, 0, ''),
(82, '22 Module Positions', 'Populus features an incredible 22 fully collapsible module positions providing you with the ultimate in flexibility. Populus includes built in style and implementation for the extra module positions "user10 - user 17". These extra module positions are not defined in a default Joomla install and must be added via the "Site > Template Manager > Module Positions in your Joomla Administrator.', 6, 'user1', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=-hilite1\n\n', 0, 0, ''),
(83, 'Inset Module', 'This is a module using default module styling as provided by the template. This is as a module will appear with no <b>hilite</b> applied.<img src="images/blank.png" alt="spacer" style="display:block;height: 20px;" />', 2, 'inset', 0, '0000-00-00 00:00:00', 1, 'mod_custom', 0, 0, 1, 'moduleclass_sfx=\n\n', 0, 0, '');

-- --------------------------------------------------------

--
-- Table structure for table `#__modules_menu`
--

DROP TABLE IF EXISTS `#__modules_menu`;
CREATE TABLE `#__modules_menu` (
  `moduleid` int(11) NOT NULL default '0',
  `menuid` int(11) NOT NULL default '0',
  PRIMARY KEY  (`moduleid`,`menuid`)
) TYPE=MyISAM;

--
-- Dumping data for table `#__modules_menu`
--

INSERT INTO `#__modules_menu` VALUES
(1, 1),
(1, 2),
(1, 4),
(1, 10),
(1, 11),
(1, 12),
(1, 13),
(1, 15),
(1, 16),
(1, 17),
(1, 18),
(1, 19),
(1, 20),
(1, 21),
(1, 22),
(1, 23),
(1, 24),
(1, 25),
(1, 26),
(21, 1),
(21, 2),
(21, 3),
(21, 4),
(21, 5),
(21, 6),
(21, 7),
(21, 10),
(21, 11),
(21, 12),
(21, 13),
(21, 14),
(21, 15),
(21, 16),
(21, 17),
(21, 18),
(21, 19),
(21, 20),
(21, 21),
(21, 22),
(21, 23),
(21, 24),
(21, 25),
(21, 26),
(22, 0),
(26, 0),
(27, 3),
(28, 3),
(29, 14),
(81, 2),
(82, 2),
(83, 8),
(84, 8),
(85, 8),
(86, 8),
(87, 8),
(88, 8),
(89, 8),
(90, 8),
(91, 8),
(92, 8),
(93, 8),
(94, 8),
(95, 8),
(96, 8),
(97, 8),
(98, 8),
(99, 1),
(99, 2),
(99, 3),
(99, 5),
(99, 6),
(99, 7),
(99, 8),
(100, 1),
(100, 2),
(100, 3),
(100, 5),
(100, 6),
(100, 7),
(100, 8),
(101, 1),
(101, 2),
(101, 3),
(101, 5),
(101, 6),
(101, 7),
(101, 8),
(102, 1),
(102, 2),
(102, 3),
(102, 5),
(102, 6),
(102, 7),
(102, 8),
(103, 1),
(104, 1),
(105, 1),
(106, 1),
(107, 1),
(108, 1),
(109, 1),
(109, 10),
(109, 11),
(109, 12),
(109, 13),
(109, 15),
(109, 16),
(109, 17),
(110, 0),
(111, 0),
(112, 0),
(113, 0),
(114, 1);

-- --------------------------------------------------------

--
-- Table structure for table `#__newsfeeds`
--

DROP TABLE IF EXISTS `#__newsfeeds`;
CREATE TABLE `#__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`)
) TYPE=MyISAM AUTO_INCREMENT=1 ;

--
-- Dumping data for table `#__newsfeeds`
--


-- --------------------------------------------------------

--
-- Table structure for table `#__plugins`
--

DROP TABLE IF EXISTS `#__plugins`;
CREATE TABLE `#__plugins` (
  `id` int(11) NOT NULL auto_increment,
  `name` text NOT NULL,
  `element` text NOT NULL,
  `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`)
) TYPE=MyISAM AUTO_INCREMENT=35 ;

--
-- Dumping data for table `#__plugins`
--

INSERT INTO `#__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, 62, '2008-02-12 22:45:52', 'enabled=1\nstyle=xhtml\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 2.0', 'tinymce', 'editors', 0, 0, 1, 1, 0, 0, '0000-00-00 00:00:00', 'theme=advanced\ncleanup=1\ncleanup_startup=0\nautosave=0\ncompressed=0\nrelative_urls=1\ntext_direction=ltr\nlang_mode=0\nlang_code=en\ninvalid_elements=applet\ncontent_css=1\ncontent_css_custom=\nnewlines=0\ntoolbar=top\nhr=1\nsmilies=1\ntable=1\nstyle=1\nlayer=1\nxhtmlxtras=0\ntemplate=0\ndirectionality=1\nfullscreen=1\nhtml_height=550\nhtml_width=750\npreview=1\ninsertdate=1\nformat_date=%Y-%m-%d\ninserttime=1\nformat_time=%H:%M:%S\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, 0, 1, 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, 'Content - RokZoom', 'rokzoom', 'content', 0, 0, 0, 0, 0, 62, '2008-02-01 14:14:10', 'compatibility=rokzoom\nthumb_ext=_thumb\nthumb_class=album\nthumb_dir=cache\nthumb_width=150\nthumb_height=100\nthumb_quality=90\n');

-- --------------------------------------------------------

--
-- Table structure for table `#__polls`
--

DROP TABLE IF EXISTS `#__polls`;
CREATE TABLE `#__polls` (
  `id` int(11) unsigned NOT NULL auto_increment,
  `title` text NOT NULL,
  `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`)
) TYPE=MyISAM AUTO_INCREMENT=2 ;

--
-- Dumping data for table `#__polls`
--

INSERT INTO `#__polls` VALUES
(1, 'How many musical instruments can you play?', 'music', 0, 0, '0000-00-00 00:00:00', 1, 0, 86400);

-- --------------------------------------------------------

--
-- Table structure for table `#__poll_data`
--

DROP TABLE IF EXISTS `#__poll_data`;
CREATE TABLE `#__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))
) TYPE=MyISAM AUTO_INCREMENT=13 ;

--
-- Dumping data for table `#__poll_data`
--

INSERT INTO `#__poll_data` VALUES
(1, 1, 'More than Five', 0),
(2, 1, 'Two or Three', 0),
(3, 1, 'Just one instrument', 0),
(4, 1, 'No musical talent at all!!!', 0),
(5, 1, '', 0),
(6, 1, '', 0),
(7, 1, '', 0),
(8, 1, '', 0),
(9, 1, '', 0),
(10, 1, '', 0),
(11, 1, '', 0),
(12, 1, '', 0);

-- --------------------------------------------------------

--
-- Table structure for table `#__poll_date`
--

DROP TABLE IF EXISTS `#__poll_date`;
CREATE TABLE `#__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`)
) TYPE=MyISAM AUTO_INCREMENT=1 ;

--
-- Dumping data for table `#__poll_date`
--


-- --------------------------------------------------------

--
-- Table structure for table `#__poll_menu`
--

DROP TABLE IF EXISTS `#__poll_menu`;
CREATE TABLE `#__poll_menu` (
  `pollid` int(11) NOT NULL default '0',
  `menuid` int(11) NOT NULL default '0',
  PRIMARY KEY  (`pollid`,`menuid`)
) TYPE=MyISAM;

--
-- Dumping data for table `#__poll_menu`
--


-- --------------------------------------------------------

--
-- Table structure for table `#__sections`
--

DROP TABLE IF EXISTS `#__sections`;
CREATE TABLE `#__sections` (
  `id` int(11) NOT NULL auto_increment,
  `title` text NOT NULL,
  `name` text NOT NULL,
  `alias` varchar(255) NOT NULL default '',
  `image` text NOT NULL,
  `scope` varchar(50) NOT NULL default '',
  `image_position` varchar(90) 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`)
) TYPE=MyISAM AUTO_INCREMENT=4 ;

--
-- Dumping data for table `#__sections`
--

INSERT INTO `#__sections` VALUES
(1, 'Template Content', '', 'template-content', '', 'content', 'left', '', 1, 0, '0000-00-00 00:00:00', 1, 0, 6, ''),
(2, 'Frontpage Content', '', 'frontpage-content', '', 'content', 'left', '', 1, 0, '0000-00-00 00:00:00', 2, 0, 1, ''),
(3, 'Sample Content', '', 'sample-content', '', 'content', 'left', '', 1, 0, '0000-00-00 00:00:00', 3, 0, 3, '');

-- --------------------------------------------------------

--
-- Table structure for table `#__stats_agents`
--

DROP TABLE IF EXISTS `#__stats_agents`;
CREATE TABLE `#__stats_agents` (
  `agent` varchar(255) NOT NULL default '',
  `type` tinyint(1) unsigned NOT NULL default '0',
  `hits` int(11) unsigned NOT NULL default '1'
) TYPE=MyISAM;

--
-- Dumping data for table `#__stats_agents`
--


-- --------------------------------------------------------

--
-- Table structure for table `#__templates_menu`
--

DROP TABLE IF EXISTS `#__templates_menu`;
CREATE TABLE `#__templates_menu` (
  `template` text NOT NULL,
  `menuid` int(11) NOT NULL default '0',
  `client_id` tinyint(4) NOT NULL default '0',
  PRIMARY KEY  (`menuid`,`client_id`,`template`(255))
) TYPE=MyISAM;

--
-- Dumping data for table `#__templates_menu`
--

INSERT INTO `#__templates_menu` VALUES
('rt_populus_j15', 0, 0),
('khepri', 0, 1);

-- --------------------------------------------------------

--
-- Table structure for table `#__weblinks`
--

DROP TABLE IF EXISTS `#__weblinks`;
CREATE TABLE `#__weblinks` (
  `id` int(11) unsigned NOT NULL auto_increment,
  `catid` int(11) NOT NULL default '0',
  `sid` int(11) NOT NULL default '0',
  `title` text NOT NULL,
  `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`)
) TYPE=MyISAM AUTO_INCREMENT=3 ;

--
-- Dumping data for table `#__weblinks`
--

INSERT INTO `#__weblinks` VALUES
(1, 7, 0, 'Joomla ', 'joomla-license', 'http://joomla.org', 'Home of Joomla', '2008-01-26 12:19:24', 0, 1, 0, '0000-00-00 00:00:00', 1, 0, 1, 'target=0\n\n'),
(2, 7, 0, 'Joomla! Forums', 'joomla-forums', 'http://forum.joomla.org', 'The Joomla! forums', '2008-01-26 12:19:43', 0, 1, 0, '0000-00-00 00:00:00', 2, 0, 1, 'target=0\n\n');
