-- MySQL dump 10.10
--
-- Host: localhost    Database: tytuvenaieu
-- ------------------------------------------------------
-- Server version	5.0.18-max

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

--
-- Table structure for table `bak_banner`
--

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

--
-- Dumping data for table `bak_banner`
--


/*!40000 ALTER TABLE `bak_banner` DISABLE KEYS */;
LOCK TABLES `bak_banner` WRITE;
INSERT INTO `bak_banner` VALUES (1,1,'banner','OSM 1','osm-1',0,43,0,'osmbanner1.png','http://www.opensourcematters.org','2004-07-07 15:31:29',1,0,'0000-00-00 00:00:00','','',13,'',0,1,'0000-00-00 00:00:00','0000-00-00 00:00:00','',''),(2,1,'banner','OSM 2','osm-2',0,49,0,'osmbanner2.png','http://www.opensourcematters.org','2004-07-07 15:31:29',1,0,'0000-00-00 00:00:00','','',13,'',0,2,'0000-00-00 00:00:00','0000-00-00 00:00:00','',''),(3,1,'','Joomla!','joomla',0,31,0,'','http://www.joomla.org','2006-05-29 14:21:28',1,0,'0000-00-00 00:00:00','','<a href=\"{CLICKURL}\" target=\"_blank\">{NAME}</a>\r\n<br/>\r\nJoomla! The most popular and widely used Open Source CMS Project in the world.',14,'',0,1,'0000-00-00 00:00:00','0000-00-00 00:00:00','',''),(4,1,'','JoomlaCode','joomlacode',0,31,0,'','http://joomlacode.org','2006-05-29 14:19:26',1,0,'0000-00-00 00:00:00','','<a href=\"{CLICKURL}\" target=\"_blank\">{NAME}</a>\r\n<br/>\r\nJoomlaCode, development and distribution made easy.',14,'',0,2,'0000-00-00 00:00:00','0000-00-00 00:00:00','',''),(5,1,'','Joomla! Extensions','joomla-extensions',0,26,0,'','http://extensions.joomla.org','2006-05-29 14:23:21',1,0,'0000-00-00 00:00:00','','<a href=\"{CLICKURL}\" target=\"_blank\">{NAME}</a>\r\n<br/>\r\nJoomla! Components, Modules, Plugins and Languages by the bucket load.',14,'',0,3,'0000-00-00 00:00:00','0000-00-00 00:00:00','',''),(6,1,'','Joomla! Shop','joomla-shop',0,26,0,'','http://shop.joomla.org','2006-05-29 14:23:21',1,0,'0000-00-00 00:00:00','','<a href=\"{CLICKURL}\" target=\"_blank\">{NAME}</a>\r\n<br/>\r\nFor all your Joomla! merchandise.',14,'',0,4,'0000-00-00 00:00:00','0000-00-00 00:00:00','',''),(7,1,'','Joomla! Promo Shop','joomla-promo-shop',0,8,1,'shop-ad.jpg','http://shop.joomla.org','2007-09-19 17:26:24',1,0,'0000-00-00 00:00:00','','',33,'',0,3,'0000-00-00 00:00:00','0000-00-00 00:00:00','',''),(8,1,'','Joomla! Promo Books','joomla-promo-books',0,10,0,'shop-ad-books.jpg','http://shop.joomla.org/amazoncom-bookstores.html','2007-09-19 17:28:01',1,0,'0000-00-00 00:00:00','','',33,'',0,4,'0000-00-00 00:00:00','0000-00-00 00:00:00','','');
UNLOCK TABLES;
/*!40000 ALTER TABLE `bak_banner` ENABLE KEYS */;

--
-- Table structure for table `bak_bannerclient`
--

DROP TABLE IF EXISTS `bak_bannerclient`;
CREATE TABLE `bak_bannerclient` (
  `cid` int(11) NOT NULL auto_increment,
  `name` varchar(255) NOT NULL default '',
  `contact` varchar(255) NOT NULL default '',
  `email` varchar(255) NOT NULL default '',
  `extrainfo` text NOT NULL,
  `checked_out` tinyint(1) NOT NULL default '0',
  `checked_out_time` time default NULL,
  `editor` varchar(50) default NULL,
  PRIMARY KEY  (`cid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `bak_bannerclient`
--


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

--
-- Table structure for table `bak_bannertrack`
--

DROP TABLE IF EXISTS `bak_bannertrack`;
CREATE TABLE `bak_bannertrack` (
  `track_date` date NOT NULL,
  `track_type` int(10) unsigned NOT NULL,
  `banner_id` int(10) unsigned NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `bak_bannertrack`
--


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

--
-- Table structure for table `bak_categories`
--

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

--
-- Dumping data for table `bak_categories`
--


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

--
-- Table structure for table `bak_components`
--

DROP TABLE IF EXISTS `bak_components`;
CREATE TABLE `bak_components` (
  `id` int(11) NOT NULL auto_increment,
  `name` varchar(50) NOT NULL default '',
  `link` varchar(255) NOT NULL default '',
  `menuid` int(11) unsigned NOT NULL default '0',
  `parent` int(11) unsigned NOT NULL default '0',
  `admin_menu_link` varchar(255) NOT NULL default '',
  `admin_menu_alt` varchar(255) NOT NULL default '',
  `option` varchar(50) NOT NULL default '',
  `ordering` int(11) NOT NULL default '0',
  `admin_menu_img` varchar(255) NOT NULL default '',
  `iscore` tinyint(4) NOT NULL default '0',
  `params` text NOT NULL,
  `enabled` tinyint(4) NOT NULL default '1',
  PRIMARY KEY  (`id`),
  KEY `parent_option` (`parent`,`option`(32))
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `bak_components`
--


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

--
-- Table structure for table `bak_contact_details`
--

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

--
-- Dumping data for table `bak_contact_details`
--


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

--
-- Table structure for table `bak_content`
--

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

--
-- Dumping data for table `bak_content`
--


/*!40000 ALTER TABLE `bak_content` DISABLE KEYS */;
LOCK TABLES `bak_content` WRITE;
INSERT INTO `bak_content` VALUES (1,'Welcome to Joomla!','welcome-to-joomla','','<div align=\"left\"><strong>Joomla! is a free open source framework and content publishing system designed for quickly creating highly interactive multi-language Web sites, online communities, media portals, blogs and eCommerce applications. <br /></strong></div><p><strong><br /></strong><img src=\"images/stories/powered_by.png\" border=\"0\" alt=\"Joomla! Logo\" title=\"Example Caption\" hspace=\"6\" vspace=\"0\" width=\"165\" height=\"68\" align=\"left\" />Joomla! provides an easy-to-use graphical user interface that simplifies the management and publishing of large volumes of content including HTML, documents, and rich media.  Joomla! is used by organisations of all sizes for intranets and extranets and is supported by a community of tens of thousands of users. </p>','With a fully documented library of developer resources, Joomla! allows the customisation of every aspect of a Web site including presentation, layout, administration, and the rapid integration with third-party applications.<p>Joomla! now provides more developer power while making the user experience all the more friendly. For those who always wanted increased extensibility, Joomla! 1.5 can make this happen.</p><p>A new framework, ground-up refactoring, and a highly-active development team brings the excitement of \'the next generation CMS\' to your fingertips.  Whether you are a systems architect or a complete \'noob\' Joomla! can take you to the next level of content delivery. \'More than a CMS\' is something we have been playing with as a catchcry because the new Joomla! API has such incredible power and flexibility, you are free to take whatever direction your creative mind takes you and Joomla! can help you get there so much more easily than ever before.</p><p>Thinking Web publishing? Think Joomla!</p>',1,1,0,1,'2008-08-12 10:00:00',62,'','2008-08-12 10:00:00',62,0,'0000-00-00 00:00:00','2006-01-03 01:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',29,0,1,'','',0,92,'robots=\nauthor='),(2,'Newsflash 1','newsflash-1','','<p>Joomla! makes it easy to launch a Web site of any kind. Whether you want a brochure site or you are building a large online community, Joomla! allows you to deploy a new site in minutes and add extra functionality as you need it. The hundreds of available Extensions will help to expand your site and allow you to deliver new services that extend your reach into the Internet.</p>','',1,1,0,3,'2008-08-10 06:30:34',62,'','2008-08-10 06:30:34',62,0,'0000-00-00 00:00:00','2004-08-09 10:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',7,0,3,'','',0,1,'robots=\nauthor='),(3,'Newsflash 2','newsflash-2','','<p>The one thing about a Web site, it always changes! Joomla! makes it easy to add Articles, content, images, videos, and more. Site administrators can edit and manage content \'in-context\' by clicking the \'Edit\' link. Webmasters can also edit content through a graphical Control Panel that gives you complete control over your site.</p>','',1,1,0,3,'2008-08-09 22:30:34',62,'','2008-08-09 22:30:34',62,0,'0000-00-00 00:00:00','2004-08-09 06:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',6,0,4,'','',0,0,'robots=\nauthor='),(4,'Newsflash 3','newsflash-3','','<p>With a library of thousands of free <a href=\"http://extensions.joomla.org\" target=\"_blank\" title=\"The Joomla! Extensions Directory\">Extensions</a>, you can add what you need as your site grows. Don\'t wait, look through the <a href=\"http://extensions.joomla.org/\" target=\"_blank\" title=\"Joomla! Extensions\">Joomla! Extensions</a>  library today. </p>','',1,1,0,3,'2008-08-10 06:30:34',62,'','2008-08-10 06:30:34',62,0,'0000-00-00 00:00:00','2004-08-09 10:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',7,0,5,'','',0,1,'robots=\nauthor='),(5,'Joomla! License Guidelines','joomla-license-guidelines','joomla-license-guidelines','<p>This Web site is powered by <a href=\"http://joomla.org/\" target=\"_blank\" title=\"Joomla!\">Joomla!</a> The software and default templates on which it runs are Copyright 2005-2008 <a href=\"http://www.opensourcematters.org/\" target=\"_blank\" title=\"Open Source Matters\">Open Source Matters</a>. The sample content distributed with Joomla! is licensed under the <a href=\"http://docs.joomla.org/JEDL\" target=\"_blank\" title=\"Joomla! Electronic Document License\">Joomla! Electronic Documentation License.</a> All data entered into this Web site and templates added after installation, are copyrighted by their respective copyright owners.</p> <p>If you want to distribute, copy, or modify Joomla!, you are welcome to do so under the terms of the <a href=\"http://www.gnu.org/licenses/old-licenses/gpl-2.0.html#SEC1\" target=\"_blank\" title=\"GNU General Public License\"> GNU General Public License</a>. If you are unfamiliar with this license, you might want to read <a href=\"http://www.gnu.org/licenses/old-licenses/gpl-2.0.html#SEC4\" target=\"_blank\" title=\"How To Apply These Terms To Your Program\">\'How To Apply These Terms To Your Program\'</a> and the <a href=\"http://www.gnu.org/licenses/old-licenses/gpl-2.0-faq.html\" target=\"_blank\" title=\"GNU General Public License FAQ\">\'GNU General Public License FAQ\'</a>.</p> <p>The Joomla! licence has always been GPL.</p>','',1,4,0,25,'2008-08-20 10:11:07',62,'','2008-08-20 10:11:07',62,0,'0000-00-00 00:00:00','2004-08-19 06:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',7,0,2,'','',0,100,'robots=\nauthor='),(6,'We are Volunteers','we-are-volunteers','','<p>The Joomla Core Team and Working Group members are volunteer developers, designers, administrators and managers who have worked together to take Joomla! to new heights in its relatively short life. Joomla! has some wonderfully talented people taking Open Source concepts to the forefront of industry standards.  Joomla! 1.5 is a major leap forward and represents the most exciting Joomla! release in the history of the project. </p>','',1,1,0,1,'2007-07-07 09:54:06',62,'','2007-07-07 09:54:06',62,0,'0000-00-00 00:00:00','2004-07-06 22:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',10,0,4,'','',0,54,'robots=\nauthor='),(9,'Millions of Smiles','millions-of-smiles','','<p>The Joomla! team has millions of good reasons to be smiling about the Joomla! 1.5. In its current incarnation, it\'s had millions of downloads, taking it to an unprecedented level of popularity.  The new code base is almost an entire re-factor of the old code base.  The user experience is still extremely slick but for developers the API is a dream.  A proper framework for real PHP architects seeking the best of the best.</p><p>If you\'re a former Mambo User or a 1.0 series Joomla! User, 1.5 is the future of CMSs for a number of reasons.  It\'s more powerful, more flexible, more secure, and intuitive.  Our developers and interface designers have worked countless hours to make this the most exciting release in the content management system sphere.</p><p>Go on ... get your FREE copy of Joomla! today and spread the word about this benchmark project. </p>','',1,1,0,1,'2007-07-07 09:54:06',62,'','2007-07-07 09:54:06',62,0,'0000-00-00 00:00:00','2004-07-06 22:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',5,0,7,'','',0,23,'robots=\nauthor='),(10,'How do I localise Joomla! to my language?','how-do-i-localise-joomla-to-my-language','','<h4>General<br /></h4><p>In Joomla! 1.5 all User interfaces can be localised. This includes the installation, the Back-end Control Panel and the Front-end Site.</p><p>The core release of Joomla! 1.5 is shipped with multiple language choices in the installation but, other than English (the default), languages for the Site and Administration interfaces need to be added after installation. Links to such language packs exist below.</p>','<p>Translation Teams for Joomla! 1.5 may have also released fully localised installation packages where site, administrator and sample data are in the local language. These localised releases can be found in the specific team projects on the <a href=\"http://extensions.joomla.org/component/option,com_mtree/task,listcats/cat_id,1837/Itemid,35/\" target=\"_blank\" title=\"JED\">Joomla! Extensions Directory</a>.</p><h4>How do I install language packs?</h4><ul><li>First download both the admin and the site language packs that you require.</li><li>Install each pack separately using the Extensions-&gt;Install/Uninstall Menu selection and then the package file upload facility.</li><li>Go to the Language Manager and be sure to select Site or Admin in the sub-menu. Then select the appropriate language and make it the default one using the Toolbar button.</li></ul><h4>How do I select languages?</h4><ul><li>Default languages can be independently set for Site and for Administrator</li><li>In addition, users can define their preferred language for each Site and Administrator. This takes affect after logging in.</li><li>While logging in to the Administrator Back-end, a language can also be selected for the particular session.</li></ul><h4>Where can I find Language Packs and Localised Releases?</h4><p><em>Please note that Joomla! 1.5 is new and language packs for this version may have not been released at this time.</em> </p><ul><li><a href=\"http://joomlacode.org/gf/project/jtranslation/\" target=\"_blank\" title=\"Accredited Translations\">The Joomla! Accredited Translations Project</a>  - This is a joint repository for language packs that were developed by teams that are members of the Joomla! Translations Working Group.</li><li><a href=\"http://extensions.joomla.org/component/option,com_mtree/task,listcats/cat_id,1837/Itemid,35/\" target=\"_blank\" title=\"Translations\">The Joomla! Extensions Site - Translations</a>  </li><li><a href=\"http://community.joomla.org/translations.html\" target=\"_blank\" title=\"Translation Work Group Teams\">List of Translation Teams and Translation Partner Sites for Joomla! 1.5</a> </li></ul>',1,3,0,32,'2008-07-30 14:06:37',62,'','2008-07-30 14:06:37',62,0,'0000-00-00 00:00:00','2006-09-29 10:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',9,0,5,'','',0,10,'robots=\nauthor='),(11,'How do I upgrade to Joomla! 1.5 ?','how-do-i-upgrade-to-joomla-15','','<p>Joomla! 1.5 does not provide an upgrade path from earlier versions. Converting an older site to a Joomla! 1.5 site requires creation of a new empty site using Joomla! 1.5 and then populating the new site with the content from the old site. This migration of content is not a one-to-one process and involves conversions and modifications to the content dump.</p> <p>There are two ways to perform the migration:</p>',' <div id=\"post_content-107\"><li>An automated method of migration has been provided which uses a migrator Component to create the migration dump out of the old site (Mambo 4.5.x up to Joomla! 1.0.x) and a smart import facility in the Joomla! 1.5 Installation that performs required conversions and modifications during the installation process.</li> <li>Migration can be performed manually. This involves exporting the required tables, manually performing required conversions and modifications and then importing the content to the new site after it is installed.</li>  <p><!--more--></p> <h2><strong> Automated migration</strong></h2>  <p>This is a two phased process using two tools. The first tool is a migration Component named <font face=\"courier new,courier\">com_migrator</font>. This Component has been contributed by Harald Baer and is based on his <strong>eBackup </strong>Component. The migrator needs to be installed on the old site and when activated it prepares the required export dump of the old site\'s data. The second tool is built into the Joomla! 1.5 installation process. The exported content dump is loaded to the new site and all conversions and modification are performed on-the-fly.</p> <h3><u> Step 1 - Using com_migrator to export data from old site:</u></h3> <li>Install the <font face=\"courier new,courier\">com_migrator</font> Component on the <u><strong>old</strong></u> site. It can be found at the <a href=\"http://joomlacode.org/gf/project/pasamioprojects/frs/\" target=\"_blank\" title=\"JoomlaCode\">JoomlaCode developers forge</a>.</li> <li>Select the Component in the Component Menu of the Control Panel.</li> <li>Click on the <strong>Dump it</strong> icon. Three exported <em>gzipped </em>export scripts will be created. The first is a complete backup of the old site. The second is the migration content of all core elements which will be imported to the new site. The third is a backup of all 3PD Component tables.</li> <li>Click on the download icon of the particular exports files needed and store locally.</li> <li>Multiple export sets can be created.</li> <li>The exported data is not modified in anyway and the original encoding is preserved. This makes the <font face=\"courier new,courier\">com_migrator</font> tool a recommended tool to use for manual migration as well.</li> <h3><u> Step 2 - Using the migration facility to import and convert data during Joomla! 1.5 installation:</u></h3><p>Note: This function requires the use of the <em><font face=\"courier new,courier\">iconv </font></em>function in PHP to convert encodings. If <em><font face=\"courier new,courier\">iconv </font></em>is not found a warning will be provided.</p> <li>In step 6 - Configuration select the \'Load Migration Script\' option in the \'Load Sample Data, Restore or Migrate Backed Up Content\' section of the page.</li> <li>Enter the table prefix used in the content dump. For example: \'jos_\' or \'site2_\' are acceptable values.</li> <li>Select the encoding of the dumped content in the dropdown list. This should be the encoding used on the pages of the old site. (As defined in the _ISO variable in the language file or as seen in the browser page info/encoding/source)</li> <li>Browse the local host and select the migration export and click on <strong>Upload and Execute</strong></li> <li>A success message should appear or alternately a listing of database errors</li> <li>Complete the other required fields in the Configuration step such as Site Name and Admin details and advance to the final step of installation. (Admin details will be ignored as the imported data will take priority. Please remember admin name and password from the old site)</li> <p><u><br /></u></p></div>',1,3,0,28,'2008-07-30 20:27:52',62,'','2008-07-30 20:27:52',62,0,'0000-00-00 00:00:00','2006-09-29 12:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',10,0,3,'','',0,14,'robots=\nauthor='),(12,'Why does Joomla! 1.5 use UTF-8 encoding?','why-does-joomla-15-use-utf-8-encoding','','<p>Well... how about never needing to mess with encoding settings again?</p><p>Ever needed to display several languages on one page or site and something always came up in Giberish?</p><p>With utf-8 (a variant of Unicode) glyphs (character forms) of basically all languages can be displayed with one single encoding setting. </p>','',1,3,0,31,'2008-08-05 01:11:29',62,'','2008-08-05 01:11:29',62,0,'0000-00-00 00:00:00','2006-10-03 10:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',8,0,8,'','',0,29,'robots=\nauthor='),(13,'What happened to the locale setting?','what-happened-to-the-locale-setting','','This is now defined in the Language [<em>lang</em>].xml file in the Language metadata settings. If you are having locale problems such as dates do not appear in your language for example, you might want to check/edit the entries in the locale tag. Note that multiple locale strings can be set and the host will usually accept the first one recognised.','',1,3,0,28,'2008-08-06 16:47:35',62,'','2008-08-06 16:47:35',62,0,'0000-00-00 00:00:00','2006-10-05 14:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',7,0,2,'','',0,11,'robots=\nauthor='),(14,'What is the FTP layer for?','what-is-the-ftp-layer-for','','<p>The FTP Layer allows file operations (such as installing Extensions or updating the main configuration file) without having to make all the folders and files writable. This has been an issue on Linux and other Unix based platforms in respect of file permissions. This makes the site admin\'s life a lot easier and increases security of the site.</p><p>You can check the write status of relevent folders by going to \'\'Help-&gt;System Info\" and then in the sub-menu to \"Directory Permissions\". With the FTP Layer enabled even if all directories are red, Joomla! will operate smoothly.</p><p>NOTE: the FTP layer is not required on a Windows host/server. </p>','',1,3,0,31,'2008-08-06 21:27:49',62,'','2008-08-06 21:27:49',62,0,'0000-00-00 00:00:00','2006-10-05 16:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=',6,0,6,'','',0,23,'robots=\nauthor='),(15,'Can Joomla! 1.5 operate with PHP Safe Mode On?','can-joomla-15-operate-with-php-safe-mode-on','','<p>Yes it can! This is a significant security improvement.</p><p>The <em>safe mode</em> limits PHP to be able to perform actions only on files/folders who\'s owner is the same as PHP is currently using (this is usually \'apache\'). As files normally are created either by the Joomla! application or by FTP access, the combination of PHP file actions and the FTP Layer allows Joomla! to operate in PHP Safe Mode.</p>','',1,3,0,31,'2008-08-06 19:28:35',62,'','2008-08-06 19:28:35',62,0,'0000-00-00 00:00:00','2006-10-05 14:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',7,0,4,'','',0,8,'robots=\nauthor='),(16,'Only one edit window! How do I create \"Read more...\"?','only-one-edit-window-how-do-i-create-read-more','','<p>This is now implemented by inserting a <strong>Read more...</strong> tag (the button is located below the editor area) a dotted line appears in the edited text showing the split location for the <em>Read more....</em> A new Plugin takes care of the rest.</p><p>It is worth mentioning that this does not have a negative effect on migrated data from older sites. The new implementation is fully backward compatible.</p>','',1,3,0,28,'2008-08-06 19:29:28',62,'','2008-08-06 19:29:28',62,0,'0000-00-00 00:00:00','2006-10-05 14:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',7,0,4,'','',0,20,'robots=\nauthor='),(17,'My MySQL database does not support UTF-8. Do I have a problem?','my-mysql-database-does-not-support-utf-8-do-i-have-a-problem','','No you don\'t. Versions of MySQL lower than 4.1 do not have built in UTF-8 support. However, Joomla! 1.5 has made provisions for backward compatibility and is able to use UTF-8 on older databases. Let the installer take care of all the settings and there is no need to make any changes to the database (charset, collation, or any other).','',1,3,0,31,'2008-08-07 09:30:37',62,'','2008-08-07 09:30:37',62,0,'0000-00-00 00:00:00','2006-10-05 20:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',10,0,7,'','',0,9,'robots=\nauthor='),(18,'Joomla! Features','joomla-features','','<h4><font color=\"#ff6600\">Joomla! features:</font></h4> <ul><li>Completely database driven site engines </li><li>News, products, or services sections fully editable and manageable</li><li>Topics sections can be added to by contributing Authors </li><li>Fully customisable layouts including <em>left</em>, <em>center</em>, and <em>right </em>Menu boxes </li><li>Browser upload of images to your own library for use anywhere in the site </li><li>Dynamic Forum/Poll/Voting booth for on-the-spot results </li><li>Runs on Linux, FreeBSD, MacOSX server, Solaris, and AIX','  </li></ul> <h4>Extensive Administration:</h4> <ul><li>Change order of objects including news, FAQs, Articles etc. </li><li>Random Newsflash generator </li><li>Remote Author submission Module for News, Articles, FAQs, and Links </li><li>Object hierarchy - as many Sections, departments, divisions, and pages as you want </li><li>Image library - store all your PNGs, PDFs, DOCs, XLSs, GIFs, and JPEGs online for easy use </li><li>Automatic Path-Finder. Place a picture and let Joomla! fix the link </li><li>News Feed Manager. Easily integrate news feeds into your Web site.</li><li>E-mail a friend and Print format available for every story and Article </li><li>In-line Text editor similar to any basic word processor software </li><li>User editable look and feel </li><li>Polls/Surveys - Now put a different one on each page </li><li>Custom Page Modules. Download custom page Modules to spice up your site </li><li>Template Manager. Download Templates and implement them in seconds </li><li>Layout preview. See how it looks before going live </li><li>Banner Manager. Make money out of your site.</li></ul>',1,4,0,29,'2008-08-08 23:32:45',62,'','2008-08-08 23:32:45',62,0,'0000-00-00 00:00:00','2006-10-07 06:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',11,0,4,'','',0,59,'robots=\nauthor='),(19,'Joomla! Overview','joomla-overview','','<p>If you\'re new to Web publishing systems, you\'ll find that Joomla! delivers sophisticated solutions to your online needs. It can deliver a robust enterprise-level Web site, empowered by endless extensibility for your bespoke publishing needs. Moreover, it is often the system of choice for small business or home users who want a professional looking site that\'s simple to deploy and use. <em>We do content right</em>.<br /> </p><p>So what\'s the catch? How much does this system cost?</p><p> Well, there\'s good news ... and more good news! Joomla! 1.5 is free, it is released under an Open Source license - the GNU/General Public License v 2.0. Had you invested in a mainstream, commercial alternative, there\'d be nothing but moths left in your wallet and to add new functionality would probably mean taking out a second mortgage each time you wanted something adding!</p><p>Joomla! changes all that ... <br />Joomla! is different from the normal models for content management software. For a start, it\'s not complicated. Joomla! has been developed for everybody, and anybody can develop it further. It is designed to work (primarily) with other Open Source, free, software such as PHP, MySQL, and Apache. </p><p>It is easy to install and administer, and is reliable. </p><p>Joomla! doesn\'t even require the user or administrator of the system to know HTML to operate it once it\'s up and running.</p><p>To get the perfect Web site with all the functionality that you require for your particular application may take additional time and effort, but with the Joomla! Community support that is available and the many Third Party Developers actively creating and releasing new Extensions for the 1.5 platform on an almost daily basis, there is likely to be something out there to meet your needs. Or you could develop your own Extensions and make these available to the rest of the community. </p>','',1,4,0,29,'2008-08-09 07:49:20',62,'','2008-08-09 07:49:20',62,0,'0000-00-00 00:00:00','2006-10-07 10:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',13,0,2,'','',0,150,'robots=\nauthor='),(20,'Support and Documentation','support-and-documentation','','<h1>Support </h1><p>Support for the Joomla! CMS can be found on several places. The best place to start would be the <a href=\"http://docs.joomla.org/\" target=\"_blank\" title=\"Joomla! Official Documentation Wiki\">Joomla! Official Documentation Wiki</a>. Here you can help yourself to the information that is regularly published and updated as Joomla! develops. There is much more to come too!</p> <p>Of course you should not forget the Help System of the CMS itself. On the <em>topmenu </em>in the Back-end Control panel you find the Help button which will provide you with lots of explanation on features.</p> <p>Another great place would of course be the <a href=\"http://forum.joomla.org/\" target=\"_blank\" title=\"Forum\">Forum</a> . On the Joomla! Forum you can find help and support from Community members as well as from Joomla! Core members and Working Group members. The forum contains a lot of information, FAQ\'s, just about anything you are looking for in terms of support.</p> <p>Two other resources for Support are the <a href=\"http://developer.joomla.org/\" target=\"_blank\" title=\"Joomla! Developer Site\">Joomla! Developer Site</a> and the <a href=\"http://extensions.joomla.org/\" target=\"_blank\" title=\"Joomla! Extensions Directory\">Joomla! Extensions Directory</a> (JED). The Joomla! Developer Site provides lots of technical information for the experienced Developer as well as those new to Joomla! and development work in general. The JED whilst not a support site in the strictest sense has many of the Extensions that you will need as you develop your own Web site.</p> <p>The Joomla! Developers and Bug Squad members are regularly posting their blog reports about several topics such as programming techniques and security issues.</p> <h1>Documentation</h1> <p>Joomla! Documentation can of course be found on the <a href=\"http://docs.joomla.org/\" target=\"_blank\" title=\"Joomla! Official Documentation Wiki\">Joomla! Official Documentation Wiki</a>. You can find information for beginners, installation, upgrade, Frequently Asked Questions, developer topics, and a lot more. The Documentation Team helps oversee the wiki but you are invited to contribute content, as well.</p> <p>There are also books written about Joomla! You can find a listing of these books in the <a href=\"http://shop.joomla.org/\" target=\"_blank\" title=\"Joomla! Shop\">Joomla! Shop</a>.</p>','',1,4,0,25,'2008-08-09 08:33:57',62,'','2008-08-09 08:33:57',62,0,'0000-00-00 00:00:00','2006-10-07 10:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',13,0,1,'','',0,6,'robots=\nauthor='),(21,'Joomla! Facts','joomla-facts','','<p>Here are some interesting facts about Joomla!</p><ul><li><span>Over 210,000 active registered Users on the <a href=\"http://forum.joomla.org\" target=\"_blank\" title=\"Joomla Forums\">Official Joomla! community forum</a> and more on the many international community sites.</span><ul><li><span>over 1,000,000 posts in over 200,000 topics</span></li><li>over 1,200 posts per day</li><li>growing at 150 new participants each day!</li></ul></li><li><span>1168 Projects on the JoomlaCode (<a href=\"http://joomlacode.org/\" target=\"_blank\" title=\"JoomlaCode\">joomlacode.org</a> ). All for open source addons by third party developers.</span><ul><li><span>Well over 6,000,000 downloads of Joomla! since the migration to JoomlaCode in March 2007.<br /></span></li></ul></li><li><span>Nearly 4,000 extensions for Joomla! have been registered on the <a href=\"http://extensions.joomla.org\" target=\"_blank\" title=\"http://extensions.joomla.org\">Joomla! Extension Directory</a>  </span></li><li><span>Joomla.org exceeds 2 TB of traffic per month!</span></li></ul>','',1,4,0,30,'2008-08-09 16:46:37',62,'','2008-08-09 16:46:37',62,0,'0000-00-00 00:00:00','2006-10-07 14:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',13,0,1,'','',0,50,'robots=\nauthor='),(22,'What\'s New in 1.5?','whats-new-in-15','','<p>As with previous releases, Joomla! provides a unified and easy-to-use framework for delivering content for Web sites of all kinds. To support the changing nature of the Internet and emerging Web technologies, Joomla! required substantial restructuring of its core functionality and we also used this effort to simplify many challenges within the current user interface. Joomla! 1.5 has many new features.</p>','<p style=\"margin-bottom: 0in\">In Joomla! 1.5, you\'ll notice: </p>    <ul><li>     <p style=\"margin-bottom: 0in\">       Substantially improved usability, manageability, and scalability far beyond the original Mambo foundations</p>   </li><li>     <p style=\"margin-bottom: 0in\"> Expanded accessibility to support internationalisation, double-byte characters and right-to-left support for Arabic, Farsi, and Hebrew languages among others</p>   </li><li>     <p style=\"margin-bottom: 0in\"> Extended integration of external applications through Web services and remote authentication such as the Lightweight Directory Access Protocol (LDAP)</p>   </li><li>     <p style=\"margin-bottom: 0in\"> Enhanced content delivery, template and presentation capabilities to support accessibility standards and content delivery to any destination</p>   </li><li>     <p style=\"margin-bottom: 0in\">       A more sustainable and flexible framework for Component and Extension developers</p>   </li><li>     <p style=\"margin-bottom: 0in\">Backward compatibility with previous releases of Components, Templates, Modules, and other Extensions</p></li></ul>',1,4,0,29,'2008-08-11 22:13:58',62,'','2008-08-11 22:13:58',62,0,'0000-00-00 00:00:00','2006-10-10 18:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',10,0,1,'','',0,92,'robots=\nauthor='),(23,'Platforms and Open Standards','platforms-and-open-standards','','<p class=\"MsoNormal\">Joomla! runs on any platform including Windows, most flavours of Linux, several Unix versions, and the Apple OS/X platform.  Joomla! depends on PHP and the MySQL database to deliver dynamic content.  </p>            <p class=\"MsoNormal\">The minimum requirements are:</p>      <ul><li>Apache 1.x, 2.x and higher</li><li>PHP 4.3 and higher</li><li>MySQL 3.23 and higher</li></ul>It will also run on alternative server platforms such as Windows IIS - provided they support PHP and MySQL - but these require additional configuration in order for the Joomla! core package to be successful installed and operated.','',1,4,0,25,'2008-08-11 04:22:14',62,'','2008-08-11 04:22:14',62,0,'0000-00-00 00:00:00','2006-10-10 08:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',7,0,3,'','',0,11,'robots=\nauthor='),(24,'Content Layouts','content-layouts','','<p>Joomla! provides plenty of flexibility when displaying your Web content. Whether you are using Joomla! for a blog site, news or a Web site for a company, you\'ll find one or more content styles to showcase your information. You can also change the style of content dynamically depending on your preferences. Joomla! calls how a page is laid out a <strong>layout</strong>. Use the guide below to understand which layouts are available and how you might use them. </p> <h2>Content </h2> <p>Joomla! makes it extremely easy to add and display content. All content  is placed where your mainbody tag in your template is located. There are three main types of layouts available in Joomla! and all of them can be customised via parameters. The display and parameters are set in the Menu Item used to display the content your working on. You create these layouts by creating a Menu Item and choosing how you want the content to display.</p> <h3>Blog Layout<br /> </h3> <p>Blog layout will show a listing of all Articles of the selected blog type (Section or Category) in the mainbody position of your template. It will give you the standard title, and Intro of each Article in that particular Category and/or Section. You can customise this layout via the use of the Preferences and Parameters, (See Article Parameters) this is done from the Menu not the Section Manager!</p> <h3>Blog Archive Layout<br /> </h3> <p>A Blog Archive layout will give you a similar output of Articles as the normal Blog Display but will add, at the top, two drop down lists for month and year plus a search button to allow Users to search for all Archived Articles from a specific month and year.</p> <h3>List Layout<br /> </h3> <p>Table layout will simply give you a <em>tabular </em>list<em> </em>of all the titles in that particular Section or Category. No Intro text will be displayed just the titles. You can set how many titles will be displayed in this table by Parameters. The table layout will also provide a filter Section so that Users can reorder, filter, and set how many titles are listed on a single page (up to 50)</p> <h2>Wrapper</h2> <p>Wrappers allow you to place stand alone applications and Third Party Web sites inside your Joomla! site. The content within a Wrapper appears within the primary content area defined by the \"mainbody\" tag and allows you to display their content as a part of your own site. A Wrapper will place an IFRAME into the content Section of your Web site and wrap your standard template navigation around it so it appears in the same way an Article would.</p> <h2>Content Parameters</h2> <p>The parameters for each layout type can be found on the right hand side of the editor boxes in the Menu Item configuration screen. The parameters available depend largely on what kind of layout you are configuring.</p>','',1,4,0,29,'2008-08-12 22:33:10',62,'','2008-08-12 22:33:10',62,0,'0000-00-00 00:00:00','2006-10-11 06:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',11,0,5,'','',0,70,'robots=\nauthor='),(25,'What are the requirements to run Joomla! 1.5?','what-are-the-requirements-to-run-joomla-15','','<p>Joomla! runs on the PHP pre-processor. PHP comes in many flavours, for a lot of operating systems. Beside PHP you will need a Web server. Joomla! is optimized for the Apache Web server, but it can run on different Web servers like Microsoft IIS it just requires additional configuration of PHP and MySQL. Joomla! also depends on a database, for this currently you can only use MySQL. </p>Many people know from their own experience that it\'s not easy to install an Apache Web server and it gets harder if you want to add MySQL, PHP and Perl. XAMPP, WAMP, and MAMP are easy to install distributions containing Apache, MySQL, PHP and Perl for the Windows, Mac OSX and Linux operating systems. These packages are for localhost installations on non-public servers only.<br />The minimum version requirements are:<br /><ul><li>Apache 1.x or 2.x</li><li>PHP 4.3 or up</li><li>MySQL 3.23 or up</li></ul>For the latest minimum requirements details, see <a href=\"http://www.joomla.org/about-joomla/technical-requirements.html\" target=\"_blank\" title=\"Joomla! Technical Requirements\">Joomla! Technical Requirements</a>.','',1,3,0,31,'2008-08-11 00:42:31',62,'','2008-08-11 00:42:31',62,0,'0000-00-00 00:00:00','2006-10-10 06:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',6,0,5,'','',0,25,'robots=\nauthor='),(26,'Extensions','extensions','','<p>Out of the box, Joomla! does a great job of managing the content needed to make your Web site sing. But for many people, the true power of Joomla! lies in the application framework that makes it possible for developers all around the world to create powerful add-ons that are called <strong>Extensions</strong>. An Extension is used to add capabilities to Joomla! that do not exist in the base core code. Here are just some examples of the hundreds of available Extensions:</p> <ul>   <li>Dynamic form builders</li>   <li>Business or organisational directories</li>   <li>Document management</li>   <li>Image and multimedia galleries</li>   <li>E-commerce and shopping cart engines</li>   <li>Forums and chat software</li>   <li>Calendars</li>   <li>E-mail newsletters</li>   <li>Data collection and reporting tools</li>   <li>Banner advertising systems</li>   <li>Paid subscription services</li>   <li>and many, many, more</li> </ul> <p>You can find more examples over at our ever growing <a href=\"http://extensions.joomla.org\" target=\"_blank\" title=\"Joomla! Extensions Directory\">Joomla! Extensions Directory</a>. Prepare to be amazed at the amount of exciting work produced by our active developer community!</p><p>A useful guide to the Extension site can be found at:<br /><a href=\"http://extensions.joomla.org/content/view/15/63/\" target=\"_blank\" title=\"Guide to the Joomla! Extension site\">http://extensions.joomla.org/content/view/15/63/</a> </p> <h3>Types of Extensions </h3><p>There are five types of extensions:</p> <ul>   <li>Components</li>   <li>Modules</li>   <li>Templates</li>   <li>Plugins</li>   <li>Languages</li> </ul> <p>You can read more about the specifics of these using the links in the Article Index - a Table of Contents (yet another useful feature of Joomla!) - at the top right or by clicking on the <strong>Next </strong>link below.<br /> </p> <hr title=\"Components\" class=\"system-pagebreak\" /> <h3><img src=\"images/stories/ext_com.png\" border=\"0\" alt=\"Component - Joomla! Extension Directory\" title=\"Component - Joomla! Extension Directory\" width=\"17\" height=\"17\" /> Components</h3> <p>A Component is the largest and most complex of the Extension types.  Components are like mini-applications that render the main body of the  page. An analogy that might make the relationship easier to understand  would be that Joomla! is a book and all the Components are chapters in  the book. The core Article Component (<font face=\"courier new,courier\">com_content</font>), for example, is the  mini-application that handles all core Article rendering just as the  core registration Component (<font face=\"courier new,courier\">com_user</font>) is the mini-application  that handles User registration.</p> <p>Many of Joomla!\'s core features are provided by the use of default Components such as:</p> <ul>   <li>Contacts</li>   <li>Front Page</li>   <li>News Feeds</li>   <li>Banners</li>   <li>Mass Mail</li>   <li>Polls</li></ul><p>A Component will manage data, set displays, provide functions, and in general can perform any operation that does not fall under the general functions of the core code.</p> <p>Components work hand in hand with Modules and Plugins to provide a rich variety of content display and functionality aside from the standard Article and content display. They make it possible to completely transform Joomla! and greatly expand its capabilities.</p>  <hr title=\"Modules\" class=\"system-pagebreak\" /> <h3><img src=\"images/stories/ext_mod.png\" border=\"0\" alt=\"Module - Joomla! Extension Directory\" title=\"Module - Joomla! Extension Directory\" width=\"17\" height=\"17\" /> Modules</h3> <p>A more lightweight and flexible Extension used for page rendering is a Module. Modules are used for small bits of the page that are generally  less complex and able to be seen across different Components. To  continue in our book analogy, a Module can be looked at as a footnote  or header block, or perhaps an image/caption block that can be rendered  on a particular page. Obviously you can have a footnote on any page but  not all pages will have them. Footnotes also might appear regardless of  which chapter you are reading. Simlarly Modules can be rendered  regardless of which Component you have loaded.</p> <p>Modules are like little mini-applets that can be placed anywhere on your site. They work in conjunction with Components in some cases and in others are complete stand alone snippets of code used to display some data from the database such as Articles (Newsflash) Modules are usually used to output data but they can also be interactive form items to input data for example the Login Module or Polls.</p> <p>Modules can be assigned to Module positions which are defined in your Template and in the back-end using the Module Manager and editing the Module Position settings. For example, \"left\" and \"right\" are common for a 3 column layout. </p> <h4>Displaying Modules</h4> <p>Each Module is assigned to a Module position on your site. If you wish it to display in two different locations you must copy the Module and assign the copy to display at the new location. You can also set which Menu Items (and thus pages) a Module will display on, you can select all Menu Items or you can pick and choose by holding down the control key and selecting multiple locations one by one in the Modules [Edit] screen</p> <p>Note: Your Main Menu is a Module! When you create a new Menu in the Menu Manager you are actually copying the Main Menu Module (<font face=\"courier new,courier\">mod_mainmenu</font>) code and giving it the name of your new Menu. When you copy a Module you do not copy all of its parameters, you simply allow Joomla! to use the same code with two separate settings.</p> <h4>Newsflash Example</h4> <p>Newsflash is a Module which will display Articles from your site in an assignable Module position. It can be used and configured to display one Category, all Categories, or to randomly choose Articles to highlight to Users. It will display as much of an Article as you set, and will show a <em>Read more...</em> link to take the User to the full Article.</p> <p>The Newsflash Component is particularly useful for things like Site News or to show the latest Article added to your Web site.</p>  <hr title=\"Plugins\" class=\"system-pagebreak\" /> <h3><img src=\"images/stories/ext_plugin.png\" border=\"0\" alt=\"Plugin - Joomla! Extension Directory\" title=\"Plugin - Joomla! Extension Directory\" width=\"17\" height=\"17\" /> Plugins</h3> <p>One  of the more advanced Extensions for Joomla! is the Plugin. In previous  versions of Joomla! Plugins were known as Mambots. Aside from changing their name their  functionality has been expanded. A Plugin is a section of code that  runs when a pre-defined event happens within Joomla!. Editors are Plugins, for example, that execute when the Joomla! event <font face=\"courier new,courier\">onGetEditorArea</font> occurs. Using a Plugin allows a developer to change  the way their code behaves depending upon which Plugins are installed  to react to an event.</p>  <hr title=\"Languages\" class=\"system-pagebreak\" /> <h3><img src=\"images/stories/ext_lang.png\" border=\"0\" alt=\"Language - Joomla! Extensions Directory\" title=\"Language - Joomla! Extensions Directory\" width=\"17\" height=\"17\" /> Languages</h3> <p>New  to Joomla! 1.5 and perhaps the most basic and critical Extension is a Language. Joomla! is released with multiple Installation Languages but the base Site and Administrator are packaged in just the one Language <strong>en-GB</strong> - being English with GB spelling for example. To include all the translations currently available would bloat the core package and make it unmanageable for uploading purposes. The Language files enable all the User interfaces both Front-end and Back-end to be presented in the local preferred language. Note these packs do not have any impact on the actual content such as Articles. </p> <p>More information on languages is available from the <br />   <a href=\"http://community.joomla.org/translations.html\" target=\"_blank\" title=\"Joomla! Translation Teams\">http://community.joomla.org/translations.html</a></p>','',1,4,0,29,'2008-08-11 06:00:00',62,'','2008-08-11 06:00:00',62,0,'0000-00-00 00:00:00','2006-10-10 22:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',24,0,3,'About Joomla!, General, Extensions','',0,102,'robots=\nauthor='),(27,'The Joomla! Community','the-joomla-community','','<p><strong>Got a question? </strong>With more than 210,000 members, the Joomla! Discussion Forums at <a href=\"http://forum.joomla.org/\" target=\"_blank\" title=\"Forums\">forum.joomla.org</a> are a great resource for both new and experienced users. Ask your toughest questions the community is waiting to see what you\'ll do with your Joomla! site.</p><p><strong>Do you want to show off your new Joomla! Web site?</strong> Visit the <a href=\"http://forum.joomla.org/viewforum.php?f=514\" target=\"_blank\" title=\"Site Showcase\">Site Showcase</a> section of our forum.</p><p><strong>Do you want to contribute?</strong></p><p>If you think working with Joomla is fun, wait until you start working on it. We\'re passionate about helping Joomla users become contributors. There are many ways you can help Joomla\'s development:</p><ul>	<li>Submit news about Joomla. We syndicate Joomla-related news on <a href=\"http://news.joomla.org\" target=\"_blank\" title=\"JoomlaConnect\">JoomlaConnect<sup>TM</sup></a>. If you have Joomla news that you would like to share with the community, find out how to get connected <a href=\"http://community.joomla.org/connect.html\" target=\"_blank\" title=\"JoomlaConnect\">here</a>.</li>	<li>Report bugs and request features in our <a href=\"http://joomlacode.org/gf/project/joomla/tracker/\" target=\"_blank\" title=\"Joomla! developement trackers\">trackers</a>. Please read <a href=\"http://docs.joomla.org/Filing_bugs_and_issues\" target=\"_blank\" title=\"Reporting Bugs\">Reporting Bugs</a>, for details on how we like our bug reports served up</li><li>Submit patches for new and/or fixed behaviour. Please read <a href=\"http://docs.joomla.org/Patch_submission_guidelines\" target=\"_blank\" title=\"Submitting Patches\">Submitting Patches</a>, for details on how to submit a patch.</li><li>Join the <a href=\"http://forum.joomla.org/viewforum.php?f=509\" target=\"_blank\" title=\"Joomla! development forums\">developer forums</a> and share your ideas for how to improve Joomla. We\'re always open to suggestions, although we\'re likely to be sceptical of large-scale suggestions without some code to back it up.</li><li>Join any of the <a href=\"http://www.joomla.org/about-joomla/the-project/working-groups.html\" target=\"_blank\" title=\"Joomla! working groups\">Joomla Working Groups</a> and bring your personal expertise to the Joomla community. </li></ul><p>These are just a few ways you can contribute. See <a href=\"http://www.joomla.org/about-joomla/contribute-to-joomla.html\" target=\"_blank\" title=\"Contribute\">Contribute to Joomla</a> for many more ways.</p>','',1,4,0,30,'2008-08-12 16:50:48',62,'','2008-08-12 16:50:48',62,0,'0000-00-00 00:00:00','2006-10-11 02:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',12,0,2,'','',0,52,'robots=\nauthor='),(28,'How do I install Joomla! 1.5?','how-do-i-install-joomla-15','','<p>Installing of Joomla! 1.5 is pretty easy. We assume you have set-up your Web site, and it is accessible with your browser.<br /><br />Download Joomla! 1.5, unzip it and upload/copy the files into the directory you Web site points to, fire up your browser and enter your Web site address and the installation will start.  </p><p>For full details on the installation processes check out the <a href=\"http://help.joomla.org/content/category/48/268/302\" target=\"_blank\" title=\"Joomla! 1.5 Installation Manual\">Installation Manual</a> on the <a href=\"http://help.joomla.org\" target=\"_blank\" title=\"Joomla! Help Site\">Joomla! Help Site</a> where you will also find download instructions for a PDF version too. </p>','',1,3,0,31,'2008-08-11 01:10:59',62,'','2008-08-11 01:10:59',62,0,'0000-00-00 00:00:00','2006-10-10 06:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',5,0,3,'','',0,5,'robots=\nauthor='),(29,'What is the purpose of the collation selection in the installation screen?','what-is-the-purpose-of-the-collation-selection-in-the-installation-screen','','The collation option determines the way ordering in the database is done. In languages that use special characters, for instance the German umlaut, the database collation determines the sorting order. If you don\'t know which collation you need, select the \"utf8_general_ci\" as most languages use this. The other collations listed are exceptions in regards to the general collation. If your language is not listed in the list of collations it most likely means that \"utf8_general_ci is suitable.','',1,3,0,32,'2008-08-11 03:11:38',62,'','2008-08-11 03:11:38',62,0,'0000-00-00 00:00:00','2006-10-10 08:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=',4,0,4,'','',0,6,'robots=\nauthor='),(30,'What languages are supported by Joomla! 1.5?','what-languages-are-supported-by-joomla-15','','Within the Installer you will find a wide collection of languages. The installer currently supports the following languages: Arabic, Bulgarian, Bengali, Czech, Danish, German, Greek, English, Spanish, Finnish, French, Hebrew, Devanagari(India), Croatian(Croatia), Magyar (Hungary), Italian, Malay, Norwegian bokmal, Dutch, Portuguese(Brasil), Portugues(Portugal), Romanian, Russian, Serbian, Svenska, Thai and more are being added all the time.<br />By default the English language is installed for the Back and Front-ends. You can download additional language files from the <a href=\"http://extensions.joomla.org\" target=\"_blank\" title=\"Joomla! Extensions Directory\">Joomla!Extensions Directory</a>. ','',1,3,0,32,'2008-08-11 01:12:18',62,'','2008-08-11 01:12:18',62,0,'0000-00-00 00:00:00','2006-10-10 06:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',5,0,2,'','',0,8,'robots=\nauthor='),(31,'Is it useful to install the sample data?','is-it-useful-to-install-the-sample-data','','Well you are reading it right now! This depends on what you want to achieve. If you are new to Joomla! and have no clue how it all fits together, just install the sample data. If you don\'t like the English sample data because you - for instance - speak Chinese, then leave it out.','',1,3,0,27,'2008-08-11 09:12:55',62,'','2008-08-11 09:12:55',62,0,'0000-00-00 00:00:00','2006-10-10 10:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',6,0,3,'','',0,3,'robots=\nauthor='),(32,'Where is the Static Content Item?','where-is-the-static-content','','<p>In Joomla! versions prior to 1.5 there were separate processes for creating a Static Content Item and normal Content Items. The processes have been combined now and whilst both content types are still around they are renamed as Articles for Content Items and Uncategorized Articles for Static Content Items. </p><p>If you want to create a static item, create a new Article in the same way as for standard content and rather than relating this to a particular Section and Category just select <span style=\"font-style: italic\">Uncategorized</span> as the option in the Section and Category drop down lists.</p>','',1,3,0,28,'2008-08-10 23:13:33',62,'','2008-08-10 23:13:33',62,0,'0000-00-00 00:00:00','2006-10-10 04:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',6,0,6,'','',0,5,'robots=\nauthor='),(33,'What is an Uncategorised Article?','what-is-uncategorised-article','','Most Articles will be assigned to a Section and Category. In many cases, you might not know where you want it to appear so put the Article in the <em>Uncategorized </em>Section/Category. The Articles marked as <em>Uncategorized </em>are handled as static content.','',1,3,0,31,'2008-08-11 15:14:11',62,'','2008-08-11 15:14:11',62,0,'0000-00-00 00:00:00','2006-10-10 12:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',8,0,2,'','',0,6,'robots=\nauthor='),(34,'Does the PDF icon render pictures and special characters?','does-the-pdf-icon-render-pictures-and-special-characters','','Yes! Prior to Joomla! 1.5, only the text values of an Article and only for ISO-8859-1 encoding was allowed in the PDF rendition. With the new PDF library in place, the complete Article including images is rendered and applied to the PDF. The PDF generator also handles the UTF-8 texts and can handle any character sets from any language. The appropriate fonts must be installed but this is done automatically during a language pack installation.','',1,3,0,32,'2008-08-11 17:14:57',62,'','2008-08-11 17:14:57',62,0,'0000-00-00 00:00:00','2006-10-10 14:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',7,0,3,'','',0,6,'robots=\nauthor='),(35,'Is it possible to change A Menu Item\'s Type?','is-it-possible-to-change-the-types-of-menu-entries','','<p>You indeed can change the Menu Item\'s Type to whatever you want, even after they have been created. </p><p>If, for instance, you want to change the Blog Section of a Menu link, go to the Control Panel-&gt;Menus Menu-&gt;[menuname]-&gt;Menu Item Manager and edit the Menu Item. Select the <strong>Change Type</strong> button and choose the new style of Menu Item Type from the available list. Thereafter, alter the Details and Parameters to reconfigure the display for the new selection  as you require it.</p>','',1,3,0,31,'2008-08-10 23:15:36',62,'','2008-08-10 23:15:36',62,0,'0000-00-00 00:00:00','2006-10-10 04:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',6,0,1,'','',0,18,'robots=\nauthor='),(36,'Where did the Installers go?','where-did-the-installer-go','','The improved Installer can be found under the Extensions Menu. With versions prior to Joomla! 1.5 you needed to select a specific Extension type when you wanted to install it and use the Installer associated with it, with Joomla! 1.5 you just select the Extension you want to upload, and click on install. The Installer will do all the hard work for you.','',1,3,0,28,'2008-08-10 23:16:20',62,'','2008-08-10 23:16:20',62,0,'0000-00-00 00:00:00','2006-10-10 04:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',6,0,1,'','',0,4,'robots=\nauthor='),(37,'Where did the Mambots go?','where-did-the-mambots-go','','<p>Mambots have been renamed as Plugins. </p><p>Mambots were introduced in Mambo and offered possibilities to add plug-in logic to your site mainly for the purpose of manipulating content. In Joomla! 1.5, Plugins will now have much broader capabilities than Mambots. Plugins are able to extend functionality at the framework layer as well.</p>','',1,3,0,28,'2008-08-11 09:17:00',62,'','2008-08-11 09:17:00',62,0,'0000-00-00 00:00:00','2006-10-10 10:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',6,0,5,'','',0,4,'robots=\nauthor='),(38,'I installed with my own language, but the Back-end is still in English','i-installed-with-my-own-language-but-the-back-end-is-still-in-english','','<p>A lot of different languages are available for the Back-end, but by default this language may not be installed. If you want a translated Back-end, get your language pack and install it using the Extension Installer. After this, go to the Extensions Menu, select Language Manager and make your language the default one. Your Back-end will be translated immediately.</p><p>Users who have access rights to the Back-end may choose the language they prefer in their Personal Details parameters. This is of also true for the Front-end language.</p><p> A good place to find where to download your languages and localised versions of Joomla! is <a href=\"http://extensions.joomla.org/index.php?option=com_mtree&task=listcats&cat_id=1837&Itemid=35\" target=\"_blank\" title=\"Translations for Joomla!\">Translations for Joomla!</a> on JED.</p>','',1,3,0,32,'2008-08-11 17:18:14',62,'','2008-08-11 17:18:14',62,0,'0000-00-00 00:00:00','2006-10-10 14:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',7,0,1,'','',0,7,'robots=\nauthor='),(39,'How do I remove an Article?','how-do-i-remove-an-article','','<p>To completely remove an Article, select the Articles that you want to delete and move them to the Trash. Next, open the Article Trash in the Content Menu and select the Articles you want to delete. After deleting an Article, it is no longer available as it has been deleted from the database and it is not possible to undo this operation.  </p>','',1,3,0,27,'2008-08-11 09:19:01',62,'','2008-08-11 09:19:01',62,0,'0000-00-00 00:00:00','2006-10-10 10:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',6,0,2,'','',0,4,'robots=\nauthor='),(40,'What is the difference between Archiving and Trashing an Article? ','what-is-the-difference-between-archiving-and-trashing-an-article','','<p>When you <em>Archive </em>an Article, the content is put into a state which removes it from your site as published content. The Article is still available from within the Control Panel and can be <em>retrieved </em>for editing or republishing purposes. Trashed Articles are just one step from being permanently deleted but are still available until you Remove them from the Trash Manager. You should use Archive if you consider an Article important, but not current. Trash should be used when you want to delete the content entirely from your site and from future search results.  </p>','',1,3,0,27,'2008-08-11 05:19:43',62,'','2008-08-11 05:19:43',62,0,'0000-00-00 00:00:00','2006-10-10 06:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',8,0,1,'','',0,5,'robots=\nauthor='),(41,'Newsflash 5','newsflash-5','','Joomla! 1.5 - \'Experience the Freedom\'!. It has never been easier to create your own dynamic Web site. Manage all your content from the best CMS admin interface and in virtually any language you speak.','',1,1,0,3,'2008-08-12 00:17:31',62,'','2008-08-12 00:17:31',62,0,'0000-00-00 00:00:00','2006-10-11 06:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',5,0,2,'','',0,4,'robots=\nauthor='),(42,'Newsflash 4','newsflash-4','','Yesterday all servers in the U.S. went out on strike in a bid to get more RAM and better CPUs. A spokes person said that the need for better RAM was due to some fool increasing the front-side bus speed. In future, buses will be told to slow down in residential motherboards.','',1,1,0,3,'2008-08-12 00:25:50',62,'','2008-08-12 00:25:50',62,0,'0000-00-00 00:00:00','2006-10-11 06:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',5,0,1,'','',0,5,'robots=\nauthor='),(43,'Example Pages and Menu Links','example-pages-and-menu-links','','<p>This page is an example of content that is <em>Uncategorized</em>; that is, it does not belong to any Section or Category. You will see there is a new Menu in the left column. It shows links to the same content presented in 4 different page layouts.</p><ul><li>Section Blog</li><li>Section Table</li><li> Blog Category</li><li>Category Table</li></ul><p>Follow the links in the <strong>Example Pages</strong> Menu to see some of the options available to you to present all the different types of content included within the default installation of Joomla!.</p><p>This includes Components and individual Articles. These links or Menu Item Types (to give them their proper name) are all controlled from within the <strong><font face=\"courier new,courier\">Menu Manager-&gt;[menuname]-&gt;Menu Items Manager</font></strong>. </p>','',1,0,0,0,'2008-08-12 09:26:52',62,'','2008-08-12 09:26:52',62,0,'0000-00-00 00:00:00','2006-10-11 10:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',7,0,1,'Uncategorized, Uncategorized, Example Pages and Menu Links','',0,43,'robots=\nauthor='),(44,'Joomla! Security Strike Team','joomla-security-strike-team','','<p>The Joomla! Project has assembled a top-notch team of experts to form the new Joomla! Security Strike Team. This new team will solely focus on investigating and resolving security issues. Instead of working in relative secrecy, the JSST will have a strong public-facing presence at the <a href=\"http://developer.joomla.org/security.html\" target=\"_blank\" title=\"Joomla! Security Center\">Joomla! Security Center</a>.</p>','<p>The new JSST will call the new <a href=\"http://developer.joomla.org/security.html\" target=\"_blank\" title=\"Joomla! Security Center\">Joomla! Security Center</a> their home base. The Security Center provides a public presence for <a href=\"http://developer.joomla.org/security/news.html\" target=\"_blank\" title=\"Joomla! Security News\">security issues</a> and a platform for the JSST to <a href=\"http://developer.joomla.org/security/articles-tutorials.html\" target=\"_blank\" title=\"Joomla! Security Articles\">help the general public better understand security</a> and how it relates to Joomla!. The Security Center also offers users a clearer understanding of how security issues are handled. There\'s also a <a href=\"http://feeds.joomla.org/JoomlaSecurityNews\" target=\"_blank\" title=\"Joomla! Security News Feed\">news feed</a>, which provides subscribers an up-to-the-minute notification of security issues as they arise.</p>',1,1,0,1,'2007-07-07 09:54:06',62,'','2007-07-07 09:54:06',62,0,'0000-00-00 00:00:00','2004-07-06 22:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,3,'','',0,0,'robots=\nauthor='),(45,'Joomla! Community Portal','joomla-community-portal','','<p>The <a href=\"http://community.joomla.org/\" target=\"_blank\" title=\"Joomla! Community Portal\">Joomla! Community Portal</a> is now online. There, you will find a constant source of information about the activities of contributors powering the Joomla! Project. Learn about <a href=\"http://community.joomla.org/events.html\" target=\"_blank\" title=\"Joomla! Events\">Joomla! Events</a> worldwide, and see if there is a <a href=\"http://community.joomla.org/user-groups.html\" target=\"_blank\" title=\"Joomla! User Groups\">Joomla! User Group</a> nearby.</p><p>The <a href=\"http://magazine.joomla.org/\" target=\"_blank\" title=\"Joomla! Community Magazine\">Joomla! Community Magazine</a> promises an interesting overview of feature articles, community accomplishments, learning topics, and project updates each month. Also, check out <a href=\"http://community.joomla.org/connect.html\" target=\"_blank\" title=\"JoomlaConnect\">JoomlaConnect&#0153;</a>. This aggregated RSS feed brings together Joomla! news from all over the world in your language. Get the latest and greatest by clicking <a href=\"http://community.joomla.org/connect.html\" target=\"_blank\" title=\"JoomlaConnect\">here</a>.</p>','',1,1,0,1,'2007-07-07 09:54:06',62,'','2007-07-07 09:54:06',62,0,'0000-00-00 00:00:00','2004-07-06 22:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',2,0,2,'','',0,5,'robots=\nauthor=');
UNLOCK TABLES;
/*!40000 ALTER TABLE `bak_content` ENABLE KEYS */;

--
-- Table structure for table `bak_content_frontpage`
--

DROP TABLE IF EXISTS `bak_content_frontpage`;
CREATE TABLE `bak_content_frontpage` (
  `content_id` int(11) NOT NULL default '0',
  `ordering` int(11) NOT NULL default '0',
  PRIMARY KEY  (`content_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `bak_content_frontpage`
--


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

--
-- Table structure for table `bak_content_rating`
--

DROP TABLE IF EXISTS `bak_content_rating`;
CREATE TABLE `bak_content_rating` (
  `content_id` int(11) NOT NULL default '0',
  `rating_sum` int(11) unsigned NOT NULL default '0',
  `rating_count` int(11) unsigned NOT NULL default '0',
  `lastip` varchar(50) NOT NULL default '',
  PRIMARY KEY  (`content_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `bak_content_rating`
--


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

--
-- Table structure for table `bak_core_acl_aro`
--

DROP TABLE IF EXISTS `bak_core_acl_aro`;
CREATE TABLE `bak_core_acl_aro` (
  `id` int(11) NOT NULL auto_increment,
  `section_value` varchar(240) NOT NULL default '0',
  `value` varchar(240) NOT NULL default '',
  `order_value` int(11) NOT NULL default '0',
  `name` varchar(255) NOT NULL default '',
  `hidden` int(11) NOT NULL default '0',
  PRIMARY KEY  (`id`),
  UNIQUE KEY `jos_section_value_value_aro` (`section_value`(100),`value`(100)),
  KEY `jos_gacl_hidden_aro` (`hidden`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `bak_core_acl_aro`
--


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

--
-- Table structure for table `bak_core_acl_aro_groups`
--

DROP TABLE IF EXISTS `bak_core_acl_aro_groups`;
CREATE TABLE `bak_core_acl_aro_groups` (
  `id` int(11) NOT NULL auto_increment,
  `parent_id` int(11) NOT NULL default '0',
  `name` varchar(255) NOT NULL default '',
  `lft` int(11) NOT NULL default '0',
  `rgt` int(11) NOT NULL default '0',
  `value` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`id`),
  KEY `jos_gacl_parent_id_aro_groups` (`parent_id`),
  KEY `jos_gacl_lft_rgt_aro_groups` (`lft`,`rgt`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `bak_core_acl_aro_groups`
--


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

--
-- Table structure for table `bak_core_acl_aro_map`
--

DROP TABLE IF EXISTS `bak_core_acl_aro_map`;
CREATE TABLE `bak_core_acl_aro_map` (
  `acl_id` int(11) NOT NULL default '0',
  `section_value` varchar(230) NOT NULL default '0',
  `value` varchar(100) NOT NULL,
  PRIMARY KEY  (`acl_id`,`section_value`,`value`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `bak_core_acl_aro_map`
--


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

--
-- Table structure for table `bak_core_acl_aro_sections`
--

DROP TABLE IF EXISTS `bak_core_acl_aro_sections`;
CREATE TABLE `bak_core_acl_aro_sections` (
  `id` int(11) NOT NULL auto_increment,
  `value` varchar(230) NOT NULL default '',
  `order_value` int(11) NOT NULL default '0',
  `name` varchar(230) NOT NULL default '',
  `hidden` int(11) NOT NULL default '0',
  PRIMARY KEY  (`id`),
  UNIQUE KEY `jos_gacl_value_aro_sections` (`value`),
  KEY `jos_gacl_hidden_aro_sections` (`hidden`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `bak_core_acl_aro_sections`
--


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

--
-- Table structure for table `bak_core_acl_groups_aro_map`
--

DROP TABLE IF EXISTS `bak_core_acl_groups_aro_map`;
CREATE TABLE `bak_core_acl_groups_aro_map` (
  `group_id` int(11) NOT NULL default '0',
  `section_value` varchar(240) NOT NULL default '',
  `aro_id` int(11) NOT NULL default '0',
  UNIQUE KEY `group_id_aro_id_groups_aro_map` (`group_id`,`section_value`,`aro_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `bak_core_acl_groups_aro_map`
--


/*!40000 ALTER TABLE `bak_core_acl_groups_aro_map` DISABLE KEYS */;
LOCK TABLES `bak_core_acl_groups_aro_map` WRITE;
INSERT INTO `bak_core_acl_groups_aro_map` VALUES (25,'',10);
UNLOCK TABLES;
/*!40000 ALTER TABLE `bak_core_acl_groups_aro_map` ENABLE KEYS */;

--
-- Table structure for table `bak_core_log_items`
--

DROP TABLE IF EXISTS `bak_core_log_items`;
CREATE TABLE `bak_core_log_items` (
  `time_stamp` date NOT NULL default '0000-00-00',
  `item_table` varchar(50) NOT NULL default '',
  `item_id` int(11) unsigned NOT NULL default '0',
  `hits` int(11) unsigned NOT NULL default '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `bak_core_log_items`
--


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

--
-- Table structure for table `bak_core_log_searches`
--

DROP TABLE IF EXISTS `bak_core_log_searches`;
CREATE TABLE `bak_core_log_searches` (
  `search_term` varchar(128) NOT NULL default '',
  `hits` int(11) unsigned NOT NULL default '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `bak_core_log_searches`
--


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

--
-- Table structure for table `bak_groups`
--

DROP TABLE IF EXISTS `bak_groups`;
CREATE TABLE `bak_groups` (
  `id` tinyint(3) unsigned NOT NULL default '0',
  `name` varchar(50) NOT NULL default '',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `bak_groups`
--


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

--
-- Table structure for table `bak_menu`
--

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

--
-- Dumping data for table `bak_menu`
--


/*!40000 ALTER TABLE `bak_menu` DISABLE KEYS */;
LOCK TABLES `bak_menu` WRITE;
INSERT INTO `bak_menu` VALUES (1,'mainmenu','Home','home','index.php?option=com_content&view=frontpage','component',1,0,20,0,1,0,'0000-00-00 00:00:00',0,0,0,3,'show_page_title=1\npage_title=Welcome to the Frontpage\nshow_description=0\nshow_description_image=0\nnum_leading_articles=1\nnum_intro_articles=4\nnum_columns=2\nnum_links=4\nshow_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\norderby_pri=\norderby_sec=front\nshow_pagination=2\nshow_pagination_results=1\nshow_noauth=0\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\n\n',0,0,1),(2,'mainmenu','Joomla! License','joomla-license','index.php?option=com_content&view=article&id=5','component',1,0,20,0,4,0,'0000-00-00 00:00:00',0,0,0,0,'pageclass_sfx=\nmenu_image=-1\nsecure=0\nshow_noauth=0\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\n\n',0,0,0),(41,'mainmenu','FAQ','faq','index.php?option=com_content&view=section&id=3','component',1,0,20,0,6,0,'0000-00-00 00:00:00',0,0,0,0,'show_page_title=1\nshow_description=0\nshow_description_image=0\nshow_categories=1\nshow_empty_categories=0\nshow_cat_num_articles=1\nshow_category_description=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\norderby=\nshow_noauth=0\nshow_title=1\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1',0,0,0),(11,'othermenu','Joomla! Home','joomla-home','http://www.joomla.org','url',1,0,0,0,1,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\n\n',0,0,0),(12,'othermenu','Joomla! Forums','joomla-forums','http://forum.joomla.org','url',1,0,0,0,2,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\n\n',0,0,0),(13,'othermenu','Joomla! Documentation','joomla-documentation','http://docs.joomla.org','url',1,0,0,0,3,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\n\n',0,0,0),(14,'othermenu','Joomla! Community','joomla-community','http://community.joomla.org','url',1,0,0,0,4,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\n\n',0,0,0),(15,'othermenu','Joomla! Magazine','joomla-community-magazine','http://magazine.joomla.org/','url',1,0,0,0,5,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\n\n',0,0,0),(16,'othermenu','OSM Home','osm-home','http://www.opensourcematters.org','url',1,0,0,0,6,0,'0000-00-00 00:00:00',0,0,0,6,'menu_image=-1\n\n',0,0,0),(17,'othermenu','Administrator','administrator','administrator/','url',1,0,0,0,7,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\n\n',0,0,0),(18,'topmenu','News','news','index.php?option=com_newsfeeds&view=newsfeed&id=1&feedid=1','component',1,0,11,0,3,0,'0000-00-00 00:00:00',0,0,0,3,'show_page_title=1\npage_title=News\npageclass_sfx=\nmenu_image=-1\nsecure=0\nshow_headings=1\nshow_name=1\nshow_articles=1\nshow_link=1\nshow_other_cats=1\nshow_cat_description=1\nshow_cat_items=1\nshow_feed_image=1\nshow_feed_description=1\nshow_item_description=1\nfeed_word_count=0\n\n',0,0,0),(20,'usermenu','Your Details','your-details','index.php?option=com_user&view=user&task=edit','component',1,0,14,0,1,0,'0000-00-00 00:00:00',0,0,1,3,'',0,0,0),(24,'usermenu','Logout','logout','index.php?option=com_user&view=login','component',1,0,14,0,4,0,'0000-00-00 00:00:00',0,0,1,3,'',0,0,0),(38,'keyconcepts','Content Layouts','content-layouts','index.php?option=com_content&view=article&id=24','component',1,0,20,0,2,0,'0000-00-00 00:00:00',0,0,0,0,'pageclass_sfx=\nmenu_image=-1\nsecure=0\nshow_noauth=0\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\n\n',0,0,0),(27,'mainmenu','Joomla! Overview','joomla-overview','index.php?option=com_content&view=article&id=19','component',1,0,20,0,2,0,'0000-00-00 00:00:00',0,0,0,0,'pageclass_sfx=\nmenu_image=-1\nsecure=0\nshow_noauth=0\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\n\n',0,0,0),(28,'topmenu','About Joomla!','about-joomla','index.php?option=com_content&view=article&id=25','component',1,0,20,0,1,0,'0000-00-00 00:00:00',0,0,0,0,'pageclass_sfx=\nmenu_image=-1\nsecure=0\nshow_noauth=0\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\n\n',0,0,0),(29,'topmenu','Features','features','index.php?option=com_content&view=article&id=22','component',1,0,20,0,2,0,'0000-00-00 00:00:00',0,0,0,0,'pageclass_sfx=\nmenu_image=-1\nsecure=0\nshow_noauth=0\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\n\n',0,0,0),(30,'topmenu','The Community','the-community','index.php?option=com_content&view=article&id=27','component',1,0,20,0,4,0,'0000-00-00 00:00:00',0,0,0,0,'pageclass_sfx=\nmenu_image=-1\nsecure=0\nshow_noauth=0\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\n\n',0,0,0),(34,'mainmenu','What\'s New in 1.5?','what-is-new-in-1-5','index.php?option=com_content&view=article&id=22','component',1,27,20,1,1,0,'0000-00-00 00:00:00',0,0,0,0,'pageclass_sfx=\nmenu_image=-1\nsecure=0\nshow_noauth=0\nshow_title=1\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\n\n',0,0,0),(40,'keyconcepts','Extensions','extensions','index.php?option=com_content&view=article&id=26','component',1,0,20,0,1,0,'0000-00-00 00:00:00',0,0,0,0,'pageclass_sfx=\nmenu_image=-1\nsecure=0\nshow_noauth=0\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\n\n',0,0,0),(37,'mainmenu','More about Joomla!','more-about-joomla','index.php?option=com_content&view=section&id=4','component',1,0,20,0,5,0,'0000-00-00 00:00:00',0,0,0,0,'show_page_title=1\nshow_description=0\nshow_description_image=0\nshow_categories=1\nshow_empty_categories=0\nshow_cat_num_articles=1\nshow_category_description=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\norderby=\nshow_noauth=0\nshow_title=1\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1',0,0,0),(43,'keyconcepts','Example Pages','example-pages','index.php?option=com_content&view=article&id=43','component',1,0,20,0,3,0,'0000-00-00 00:00:00',0,0,0,0,'pageclass_sfx=\nmenu_image=-1\nsecure=0\nshow_noauth=0\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\n\n',0,0,0),(44,'ExamplePages','Section Blog','section-blog','index.php?option=com_content&view=section&layout=blog&id=3','component',1,0,20,0,1,0,'0000-00-00 00:00:00',0,0,0,0,'show_page_title=1\npage_title=Example of Section Blog layout (FAQ section)\nshow_description=0\nshow_description_image=0\nnum_leading_articles=1\nnum_intro_articles=4\nnum_columns=2\nnum_links=4\nshow_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\norderby_pri=\norderby_sec=\nshow_pagination=2\nshow_pagination_results=1\nshow_noauth=0\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\n\n',0,0,0),(45,'ExamplePages','Section Table','section-table','index.php?option=com_content&view=section&id=3','component',1,0,20,0,2,0,'0000-00-00 00:00:00',0,0,0,0,'show_page_title=1\npage_title=Example of Table Blog layout (FAQ section)\nshow_description=0\nshow_description_image=0\nshow_categories=1\nshow_empty_categories=0\nshow_cat_num_articles=1\nshow_category_description=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\norderby=\nshow_noauth=0\nshow_title=1\nnlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\n\n',0,0,0),(46,'ExamplePages','Category Blog','categoryblog','index.php?option=com_content&view=category&layout=blog&id=31','component',1,0,20,0,3,0,'0000-00-00 00:00:00',0,0,0,0,'show_page_title=1\npage_title=Example of Category Blog layout (FAQs/General category)\nshow_description=0\nshow_description_image=0\nnum_leading_articles=1\nnum_intro_articles=4\nnum_columns=2\nnum_links=4\nshow_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\norderby_pri=\norderby_sec=\nshow_pagination=2\nshow_pagination_results=1\nshow_noauth=0\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\n\n',0,0,0),(47,'ExamplePages','Category Table','category-table','index.php?option=com_content&view=category&id=32','component',1,0,20,0,4,0,'0000-00-00 00:00:00',0,0,0,0,'show_page_title=1\npage_title=Example of Category Table layout (FAQs/Languages category)\nshow_headings=1\nshow_date=0\ndate_format=\nfilter=1\nfilter_type=title\npageclass_sfx=\nmenu_image=-1\nsecure=0\norderby_sec=\nshow_pagination=1\nshow_pagination_limit=1\nshow_noauth=0\nshow_title=1\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\n\n',0,0,0),(48,'mainmenu','Web Links','web-links','index.php?option=com_weblinks&view=categories','component',1,0,4,0,8,0,'0000-00-00 00:00:00',0,0,0,0,'page_title=Weblinks\nimage=-1\nimage_align=right\npageclass_sfx=\nmenu_image=-1\nsecure=0\nshow_comp_description=1\ncomp_description=\nshow_link_hits=1\nshow_link_description=1\nshow_other_cats=1\nshow_headings=1\nshow_page_title=1\nlink_target=0\nlink_icons=\n\n',0,0,0),(49,'mainmenu','News Feeds','news-feeds','index.php?option=com_newsfeeds&view=categories','component',1,0,11,0,9,0,'0000-00-00 00:00:00',0,0,0,0,'show_page_title=1\npage_title=Newsfeeds\nshow_comp_description=1\ncomp_description=\nimage=-1\nimage_align=right\npageclass_sfx=\nmenu_image=-1\nsecure=0\nshow_headings=1\nshow_name=1\nshow_articles=1\nshow_link=1\nshow_other_cats=1\nshow_cat_description=1\nshow_cat_items=1\nshow_feed_image=1\nshow_feed_description=1\nshow_item_description=1\nfeed_word_count=0\n\n',0,0,0),(50,'mainmenu','The News','the-news','index.php?option=com_content&view=category&layout=blog&id=1','component',1,0,20,0,7,0,'0000-00-00 00:00:00',0,0,0,0,'show_page_title=1\npage_title=The News\nshow_description=0\nshow_description_image=0\nnum_leading_articles=1\nnum_intro_articles=4\nnum_columns=2\nnum_links=4\nshow_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\norderby_pri=\norderby_sec=\nshow_pagination=2\nshow_pagination_results=1\nshow_noauth=0\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\n\n',0,0,0),(51,'usermenu','Submit an Article','submit-an-article','index.php?option=com_content&view=article&layout=form','component',1,0,20,0,2,0,'0000-00-00 00:00:00',0,0,2,0,'',0,0,0),(52,'usermenu','Submit a Web Link','submit-a-web-link','index.php?option=com_weblinks&view=weblink&layout=form','component',1,0,4,0,3,0,'0000-00-00 00:00:00',0,0,2,0,'',0,0,0);
UNLOCK TABLES;
/*!40000 ALTER TABLE `bak_menu` ENABLE KEYS */;

--
-- Table structure for table `bak_menu_types`
--

DROP TABLE IF EXISTS `bak_menu_types`;
CREATE TABLE `bak_menu_types` (
  `id` int(10) unsigned NOT NULL auto_increment,
  `menutype` varchar(75) NOT NULL default '',
  `title` varchar(255) NOT NULL default '',
  `description` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`id`),
  UNIQUE KEY `menutype` (`menutype`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `bak_menu_types`
--


/*!40000 ALTER TABLE `bak_menu_types` DISABLE KEYS */;
LOCK TABLES `bak_menu_types` WRITE;
INSERT INTO `bak_menu_types` VALUES (1,'mainmenu','Main Menu','The main menu for the site'),(2,'usermenu','User Menu','A Menu for logged in Users'),(3,'topmenu','Top Menu','Top level navigation'),(4,'othermenu','Resources','Additional links'),(5,'ExamplePages','Example Pages','Example Pages'),(6,'keyconcepts','Key Concepts','This describes some critical information for new Users.');
UNLOCK TABLES;
/*!40000 ALTER TABLE `bak_menu_types` ENABLE KEYS */;

--
-- Table structure for table `bak_messages`
--

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

--
-- Dumping data for table `bak_messages`
--


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

--
-- Table structure for table `bak_messages_cfg`
--

DROP TABLE IF EXISTS `bak_messages_cfg`;
CREATE TABLE `bak_messages_cfg` (
  `user_id` int(10) unsigned NOT NULL default '0',
  `cfg_name` varchar(100) NOT NULL default '',
  `cfg_value` varchar(255) NOT NULL default '',
  UNIQUE KEY `idx_user_var_name` (`user_id`,`cfg_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `bak_messages_cfg`
--


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

--
-- Table structure for table `bak_migration_backlinks`
--

DROP TABLE IF EXISTS `bak_migration_backlinks`;
CREATE TABLE `bak_migration_backlinks` (
  `itemid` int(11) NOT NULL,
  `name` varchar(100) NOT NULL,
  `url` text NOT NULL,
  `sefurl` text NOT NULL,
  `newurl` text NOT NULL,
  PRIMARY KEY  (`itemid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `bak_migration_backlinks`
--


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

--
-- Table structure for table `bak_modules`
--

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

--
-- Dumping data for table `bak_modules`
--


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

--
-- Table structure for table `bak_modules_menu`
--

DROP TABLE IF EXISTS `bak_modules_menu`;
CREATE TABLE `bak_modules_menu` (
  `moduleid` int(11) NOT NULL default '0',
  `menuid` int(11) NOT NULL default '0',
  PRIMARY KEY  (`moduleid`,`menuid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `bak_modules_menu`
--


/*!40000 ALTER TABLE `bak_modules_menu` DISABLE KEYS */;
LOCK TABLES `bak_modules_menu` WRITE;
INSERT INTO `bak_modules_menu` VALUES (1,0),(16,1),(17,0),(18,1),(19,1),(19,2),(19,4),(19,27),(19,36),(21,1),(22,1),(22,2),(22,4),(22,27),(22,36),(25,0),(27,0),(29,0),(30,0),(31,1),(32,0),(33,0),(34,0),(35,0),(36,0),(38,1),(39,43),(39,44),(39,45),(39,46),(39,47),(40,0);
UNLOCK TABLES;
/*!40000 ALTER TABLE `bak_modules_menu` ENABLE KEYS */;

--
-- Table structure for table `bak_newsfeeds`
--

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

--
-- Dumping data for table `bak_newsfeeds`
--


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

--
-- Table structure for table `bak_plugins`
--

DROP TABLE IF EXISTS `bak_plugins`;
CREATE TABLE `bak_plugins` (
  `id` int(11) NOT NULL auto_increment,
  `name` varchar(100) NOT NULL default '',
  `element` varchar(100) NOT NULL default '',
  `folder` varchar(100) NOT NULL default '',
  `access` tinyint(3) unsigned NOT NULL default '0',
  `ordering` int(11) NOT NULL default '0',
  `published` tinyint(3) NOT NULL default '0',
  `iscore` tinyint(3) NOT NULL default '0',
  `client_id` tinyint(3) NOT NULL default '0',
  `checked_out` int(11) unsigned NOT NULL default '0',
  `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
  `params` text NOT NULL,
  PRIMARY KEY  (`id`),
  KEY `idx_folder` (`published`,`client_id`,`access`,`folder`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `bak_plugins`
--


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

--
-- Table structure for table `bak_poll_data`
--

DROP TABLE IF EXISTS `bak_poll_data`;
CREATE TABLE `bak_poll_data` (
  `id` int(11) NOT NULL auto_increment,
  `pollid` int(11) NOT NULL default '0',
  `text` text NOT NULL,
  `hits` int(11) NOT NULL default '0',
  PRIMARY KEY  (`id`),
  KEY `pollid` (`pollid`,`text`(1))
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `bak_poll_data`
--


/*!40000 ALTER TABLE `bak_poll_data` DISABLE KEYS */;
LOCK TABLES `bak_poll_data` WRITE;
INSERT INTO `bak_poll_data` VALUES (1,14,'Community Sites',2),(2,14,'Public Brand Sites',3),(3,14,'eCommerce',1),(4,14,'Blogs',0),(5,14,'Intranets',0),(6,14,'Photo and Media Sites',2),(7,14,'All of the Above!',3),(8,14,'',0),(9,14,'',0),(10,14,'',0),(11,14,'',0),(12,14,'',0);
UNLOCK TABLES;
/*!40000 ALTER TABLE `bak_poll_data` ENABLE KEYS */;

--
-- Table structure for table `bak_poll_date`
--

DROP TABLE IF EXISTS `bak_poll_date`;
CREATE TABLE `bak_poll_date` (
  `id` bigint(20) NOT NULL auto_increment,
  `date` datetime NOT NULL default '0000-00-00 00:00:00',
  `vote_id` int(11) NOT NULL default '0',
  `poll_id` int(11) NOT NULL default '0',
  PRIMARY KEY  (`id`),
  KEY `poll_id` (`poll_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `bak_poll_date`
--


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

--
-- Table structure for table `bak_poll_menu`
--

DROP TABLE IF EXISTS `bak_poll_menu`;
CREATE TABLE `bak_poll_menu` (
  `pollid` int(11) NOT NULL default '0',
  `menuid` int(11) NOT NULL default '0',
  PRIMARY KEY  (`pollid`,`menuid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `bak_poll_menu`
--


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

--
-- Table structure for table `bak_polls`
--

DROP TABLE IF EXISTS `bak_polls`;
CREATE TABLE `bak_polls` (
  `id` int(11) unsigned NOT NULL auto_increment,
  `title` varchar(255) NOT NULL default '',
  `alias` varchar(255) NOT NULL default '',
  `voters` int(9) NOT NULL default '0',
  `checked_out` int(11) NOT NULL default '0',
  `checked_out_time` datetime NOT NULL default '0000-00-00 00:00:00',
  `published` tinyint(1) NOT NULL default '0',
  `access` int(11) NOT NULL default '0',
  `lag` int(11) NOT NULL default '0',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `bak_polls`
--


/*!40000 ALTER TABLE `bak_polls` DISABLE KEYS */;
LOCK TABLES `bak_polls` WRITE;
INSERT INTO `bak_polls` VALUES (14,'Joomla! is used for?','joomla-is-used-for',11,0,'0000-00-00 00:00:00',1,0,86400);
UNLOCK TABLES;
/*!40000 ALTER TABLE `bak_polls` ENABLE KEYS */;

--
-- Table structure for table `bak_sections`
--

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

--
-- Dumping data for table `bak_sections`
--


/*!40000 ALTER TABLE `bak_sections` DISABLE KEYS */;
LOCK TABLES `bak_sections` WRITE;
INSERT INTO `bak_sections` VALUES (1,'News','','news','articles.jpg','content','right','Select a news topic from the list below, then select a news article to read.',1,0,'0000-00-00 00:00:00',3,0,2,''),(3,'FAQs','','faqs','key.jpg','content','left','From the list below choose one of our FAQs topics, then select an FAQ to read. If you have a question which is not in this section, please contact us.',1,0,'0000-00-00 00:00:00',5,0,23,''),(4,'About Joomla!','','about-joomla','','content','left','',1,0,'0000-00-00 00:00:00',2,0,14,'');
UNLOCK TABLES;
/*!40000 ALTER TABLE `bak_sections` ENABLE KEYS */;

--
-- Table structure for table `bak_session`
--

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

--
-- Dumping data for table `bak_session`
--


/*!40000 ALTER TABLE `bak_session` DISABLE KEYS */;
LOCK TABLES `bak_session` WRITE;
INSERT INTO `bak_session` VALUES ('','1319964316','c53d2d398fedc99872ab37a1d9bbb1cc',1,0,'',0,1,'__default|a:8:{s:15:\"session.counter\";i:1;s:19:\"session.timer.start\";i:1319964316;s:18:\"session.timer.last\";i:1319964316;s:17:\"session.timer.now\";i:1319964316;s:22:\"session.client.browser\";s:175:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; EasyBits GO v1.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; AskTB5.5)\";s:8:\"registry\";O:9:\"JRegistry\":3:{s:17:\"_defaultNameSpace\";s:7:\"session\";s:9:\"_registry\";a:1:{s:7:\"session\";a:1:{s:4:\"data\";O:8:\"stdClass\":0:{}}}s:7:\"_errors\";a:0:{}}s:4:\"user\";O:5:\"JUser\":19:{s:2:\"id\";i:0;s:4:\"name\";N;s:8:\"username\";N;s:5:\"email\";N;s:8:\"password\";N;s:14:\"password_clear\";s:0:\"\";s:8:\"usertype\";N;s:5:\"block\";N;s:9:\"sendEmail\";i:0;s:3:\"gid\";i:0;s:12:\"registerDate\";N;s:13:\"lastvisitDate\";N;s:10:\"activation\";N;s:6:\"params\";N;s:3:\"aid\";i:0;s:5:\"guest\";i:1;s:7:\"_params\";O:10:\"JParameter\":7:{s:4:\"_raw\";s:0:\"\";s:4:\"_xml\";N;s:9:\"_elements\";a:0:{}s:12:\"_elementPath\";a:1:{i:0;s:80:\"/home/mindaugas/adsprojects/tytuvenai.eu/libraries/joomla/html/parameter/element\";}s:17:\"_defaultNameSpace\";s:8:\"_default\";s:9:\"_registry\";a:1:{s:8:\"_default\";a:1:{s:4:\"data\";O:8:\"stdClass\":0:{}}}s:7:\"_errors\";a:0:{}}s:9:\"_errorMsg\";N;s:7:\"_errors\";a:0:{}}s:13:\"session.token\";s:32:\"f31038605131bb11bdadc498169253ee\";}'),('','1319963920','87d37f6e96d85b40464b4d24650e1ee0',1,0,'',0,0,NULL),('admin','1319964292','a11b3607bd3c762170cf01048c185746',0,62,'Super Administrator',25,0,'__default|a:9:{s:15:\"session.counter\";i:8;s:19:\"session.timer.start\";i:1319963920;s:18:\"session.timer.last\";i:1319964270;s:17:\"session.timer.now\";i:1319964292;s:22:\"session.client.browser\";s:175:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; EasyBits GO v1.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; AskTB5.5)\";s:8:\"registry\";O:9:\"JRegistry\":3:{s:17:\"_defaultNameSpace\";s:7:\"session\";s:9:\"_registry\";a:1:{s:7:\"session\";a:1:{s:4:\"data\";O:8:\"stdClass\":0:{}}}s:7:\"_errors\";a:0:{}}s:4:\"user\";O:5:\"JUser\":19:{s:2:\"id\";s:2:\"62\";s:4:\"name\";s:13:\"Administrator\";s:8:\"username\";s:5:\"admin\";s:5:\"email\";s:18:\"darijus.j@zebra.lt\";s:8:\"password\";s:65:\"26c4c873fe385a44389b4b139d1b4769:uYUnnriRYgqWIRWG1RPa1Je9yKbDvmv6\";s:14:\"password_clear\";s:0:\"\";s:8:\"usertype\";s:19:\"Super Administrator\";s:5:\"block\";s:1:\"0\";s:9:\"sendEmail\";s:1:\"1\";s:3:\"gid\";s:2:\"25\";s:12:\"registerDate\";s:19:\"2011-10-30 09:12:57\";s:13:\"lastvisitDate\";s:19:\"2011-10-30 08:17:45\";s:10:\"activation\";s:0:\"\";s:6:\"params\";s:0:\"\";s:3:\"aid\";i:2;s:5:\"guest\";i:0;s:7:\"_params\";O:10:\"JParameter\":7:{s:4:\"_raw\";s:0:\"\";s:4:\"_xml\";N;s:9:\"_elements\";a:0:{}s:12:\"_elementPath\";a:1:{i:0;s:80:\"/home/mindaugas/adsprojects/tytuvenai.eu/libraries/joomla/html/parameter/element\";}s:17:\"_defaultNameSpace\";s:8:\"_default\";s:9:\"_registry\";a:1:{s:8:\"_default\";a:1:{s:4:\"data\";O:8:\"stdClass\":0:{}}}s:7:\"_errors\";a:0:{}}s:9:\"_errorMsg\";N;s:7:\"_errors\";a:0:{}}s:16:\"com_mailto.links\";a:5:{s:40:\"54ec0338dd8eeebbab5ba8b14ab0ff4ea7c8200a\";O:8:\"stdClass\":2:{s:4:\"link\";s:125:\"http://www.tytuvenai.eu/index.php?option=com_content&view=article&id=45:joomla-community-portal&catid=1:latest-news&Itemid=50\";s:6:\"expiry\";i:1319964292;}s:40:\"eb9f0e5af736a1078f74aa94f1e467e5edcac048\";O:8:\"stdClass\":2:{s:4:\"link\";s:118:\"http://www.tytuvenai.eu/index.php?option=com_content&view=article&id=6:we-are-volunteers&catid=1:latest-news&Itemid=50\";s:6:\"expiry\";i:1319964292;}s:40:\"98fea30758be0add33081e41777204e8d87ace8a\";O:8:\"stdClass\":2:{s:4:\"link\";s:129:\"http://www.tytuvenai.eu/index.php?option=com_content&view=article&id=44:joomla-security-strike-team&catid=1:latest-news&Itemid=50\";s:6:\"expiry\";i:1319964292;}s:40:\"977e3689516bdf2c38828df26263c098755c0dab\";O:8:\"stdClass\":2:{s:4:\"link\";s:126:\"http://www.tytuvenai.eu/index.php?option=com_content&view=article&id=5:joomla-license-guidelines&catid=25:the-project&Itemid=2\";s:6:\"expiry\";i:1319964292;}s:40:\"9c6785b778830fba6d3369d6bc439e536a72a7ba\";O:8:\"stdClass\":2:{s:4:\"link\";s:119:\"http://www.tytuvenai.eu/index.php?option=com_content&view=article&id=9:millions-of-smiles&catid=1:latest-news&Itemid=50\";s:6:\"expiry\";i:1319964292;}}s:13:\"session.token\";s:32:\"43d811f29c3bd3af2df06d872045c6b7\";}'),('','1319963528','cb961027b391f05f092ee8638b543d60',1,0,'',0,0,'__default|a:9:{s:15:\"session.counter\";i:1;s:19:\"session.timer.start\";i:1319963528;s:18:\"session.timer.last\";i:1319963528;s:17:\"session.timer.now\";i:1319963528;s:22:\"session.client.browser\";s:25:\"eZ Publish Link Validator\";s:8:\"registry\";O:9:\"JRegistry\":3:{s:17:\"_defaultNameSpace\";s:7:\"session\";s:9:\"_registry\";a:1:{s:7:\"session\";a:1:{s:4:\"data\";O:8:\"stdClass\":0:{}}}s:7:\"_errors\";a:0:{}}s:4:\"user\";O:5:\"JUser\":19:{s:2:\"id\";i:0;s:4:\"name\";N;s:8:\"username\";N;s:5:\"email\";N;s:8:\"password\";N;s:14:\"password_clear\";s:0:\"\";s:8:\"usertype\";N;s:5:\"block\";N;s:9:\"sendEmail\";i:0;s:3:\"gid\";i:0;s:12:\"registerDate\";N;s:13:\"lastvisitDate\";N;s:10:\"activation\";N;s:6:\"params\";N;s:3:\"aid\";i:0;s:5:\"guest\";i:1;s:7:\"_params\";O:10:\"JParameter\":7:{s:4:\"_raw\";s:0:\"\";s:4:\"_xml\";N;s:9:\"_elements\";a:0:{}s:12:\"_elementPath\";a:1:{i:0;s:80:\"/home/mindaugas/adsprojects/tytuvenai.eu/libraries/joomla/html/parameter/element\";}s:17:\"_defaultNameSpace\";s:8:\"_default\";s:9:\"_registry\";a:1:{s:8:\"_default\";a:1:{s:4:\"data\";O:8:\"stdClass\":0:{}}}s:7:\"_errors\";a:0:{}}s:9:\"_errorMsg\";N;s:7:\"_errors\";a:0:{}}s:16:\"com_mailto.links\";a:5:{s:40:\"54ec0338dd8eeebbab5ba8b14ab0ff4ea7c8200a\";O:8:\"stdClass\":2:{s:4:\"link\";s:125:\"http://www.tytuvenai.eu/index.php?option=com_content&view=article&id=45:joomla-community-portal&catid=1:latest-news&Itemid=50\";s:6:\"expiry\";i:1319963528;}s:40:\"eb9f0e5af736a1078f74aa94f1e467e5edcac048\";O:8:\"stdClass\":2:{s:4:\"link\";s:118:\"http://www.tytuvenai.eu/index.php?option=com_content&view=article&id=6:we-are-volunteers&catid=1:latest-news&Itemid=50\";s:6:\"expiry\";i:1319963528;}s:40:\"98fea30758be0add33081e41777204e8d87ace8a\";O:8:\"stdClass\":2:{s:4:\"link\";s:129:\"http://www.tytuvenai.eu/index.php?option=com_content&view=article&id=44:joomla-security-strike-team&catid=1:latest-news&Itemid=50\";s:6:\"expiry\";i:1319963528;}s:40:\"977e3689516bdf2c38828df26263c098755c0dab\";O:8:\"stdClass\":2:{s:4:\"link\";s:126:\"http://www.tytuvenai.eu/index.php?option=com_content&view=article&id=5:joomla-license-guidelines&catid=25:the-project&Itemid=2\";s:6:\"expiry\";i:1319963528;}s:40:\"9c6785b778830fba6d3369d6bc439e536a72a7ba\";O:8:\"stdClass\":2:{s:4:\"link\";s:119:\"http://www.tytuvenai.eu/index.php?option=com_content&view=article&id=9:millions-of-smiles&catid=1:latest-news&Itemid=50\";s:6:\"expiry\";i:1319963528;}}s:13:\"session.token\";s:32:\"700c41079cb4ee5bd4dabadffbe539bf\";}');
UNLOCK TABLES;
/*!40000 ALTER TABLE `bak_session` ENABLE KEYS */;

--
-- Table structure for table `bak_stats_agents`
--

DROP TABLE IF EXISTS `bak_stats_agents`;
CREATE TABLE `bak_stats_agents` (
  `agent` varchar(255) NOT NULL default '',
  `type` tinyint(1) unsigned NOT NULL default '0',
  `hits` int(11) unsigned NOT NULL default '1'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `bak_stats_agents`
--


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

--
-- Table structure for table `bak_templates_menu`
--

DROP TABLE IF EXISTS `bak_templates_menu`;
CREATE TABLE `bak_templates_menu` (
  `template` varchar(255) NOT NULL default '',
  `menuid` int(11) NOT NULL default '0',
  `client_id` tinyint(4) NOT NULL default '0',
  PRIMARY KEY  (`menuid`,`client_id`,`template`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `bak_templates_menu`
--


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

--
-- Table structure for table `bak_users`
--

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

--
-- Dumping data for table `bak_users`
--


/*!40000 ALTER TABLE `bak_users` DISABLE KEYS */;
LOCK TABLES `bak_users` WRITE;
INSERT INTO `bak_users` VALUES (62,'Administrator','admin','darijus.j@zebra.lt','26c4c873fe385a44389b4b139d1b4769:uYUnnriRYgqWIRWG1RPa1Je9yKbDvmv6','Super Administrator',0,1,25,'2011-10-30 09:12:57','2011-10-30 08:45:16','','');
UNLOCK TABLES;
/*!40000 ALTER TABLE `bak_users` ENABLE KEYS */;

--
-- Table structure for table `bak_weblinks`
--

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

--
-- Dumping data for table `bak_weblinks`
--


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

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

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

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


/*!40000 ALTER TABLE `jos_banner` DISABLE KEYS */;
LOCK TABLES `jos_banner` WRITE;
INSERT INTO `jos_banner` VALUES (1,1,'banner','OSM 1','osm-1',0,43,0,'osmbanner1.png','http://www.opensourcematters.org','2004-07-07 15:31:29',0,0,'0000-00-00 00:00:00','','',13,'',0,1,'0000-00-00 00:00:00','0000-00-00 00:00:00','',''),(2,1,'banner','OSM 2','osm-2',0,49,0,'osmbanner2.png','http://www.opensourcematters.org','2004-07-07 15:31:29',0,0,'0000-00-00 00:00:00','','',13,'',0,2,'0000-00-00 00:00:00','0000-00-00 00:00:00','',''),(3,1,'','Joomla!','joomla',0,70,6,'','http://www.joomla.org','2006-05-29 14:21:28',0,0,'0000-00-00 00:00:00','','<a href=\"{CLICKURL}\" target=\"_blank\">{NAME}</a>\r\n<br/>\r\nJoomla! The most popular and widely used Open Source CMS Project in the world.',14,'',0,1,'0000-00-00 00:00:00','0000-00-00 00:00:00','',''),(4,1,'','JoomlaCode','joomlacode',0,70,6,'','http://joomlacode.org','2006-05-29 14:19:26',0,0,'0000-00-00 00:00:00','','<a href=\"{CLICKURL}\" target=\"_blank\">{NAME}</a>\r\n<br/>\r\nJoomlaCode, development and distribution made easy.',14,'',0,2,'0000-00-00 00:00:00','0000-00-00 00:00:00','',''),(5,1,'','Joomla! Extensions','joomla-extensions',0,65,6,'','http://extensions.joomla.org','2006-05-29 14:23:21',0,0,'0000-00-00 00:00:00','','<a href=\"{CLICKURL}\" target=\"_blank\">{NAME}</a>\r\n<br/>\r\nJoomla! Components, Modules, Plugins and Languages by the bucket load.',14,'',0,3,'0000-00-00 00:00:00','0000-00-00 00:00:00','',''),(6,1,'','Joomla! Shop','joomla-shop',0,65,0,'','http://shop.joomla.org','2006-05-29 14:23:21',0,0,'0000-00-00 00:00:00','','<a href=\"{CLICKURL}\" target=\"_blank\">{NAME}</a>\r\n<br/>\r\nFor all your Joomla! merchandise.',14,'',0,4,'0000-00-00 00:00:00','0000-00-00 00:00:00','',''),(7,1,'','Joomla! Promo Shop','joomla-promo-shop',0,9,2,'shop-ad.jpg','http://shop.joomla.org','2007-09-19 17:26:24',0,0,'0000-00-00 00:00:00','','',33,'',0,3,'0000-00-00 00:00:00','0000-00-00 00:00:00','',''),(8,1,'','Joomla! Promo Books','joomla-promo-books',0,9,0,'shop-ad-books.jpg','http://shop.joomla.org/amazoncom-bookstores.html','2007-09-19 17:28:01',0,0,'0000-00-00 00:00:00','','',33,'',0,4,'0000-00-00 00:00:00','0000-00-00 00:00:00','',''),(9,2,'','Bėganti Eilutė','eilute',0,15592,0,'','','2011-10-31 10:37:23',1,0,'0000-00-00 00:00:00','','<font size=\"2\" color=\"#008080\"><marquee behavior=”scroll” scrollamount=”0″> <i>Aplankykite Tytuvėnų bernardinų vienuolyną ir muziejų. Kviečiame!</marquee> </i></font>',39,'',0,1,'0000-00-00 00:00:00','0000-00-00 00:00:00','','width=0\nheight=0'),(10,7,'','Vyskupija','vyskupija',0,3885,31,'Vyskupija_transp.gif','http://siauliai.lcn.lt/','2011-10-31 13:59:47',1,0,'0000-00-00 00:00:00','','',38,'',0,1,'0000-00-00 00:00:00','0000-00-00 00:00:00','','width=0\nheight=0'),(11,3,'','Regioninis parkas','regioninis-parkas',0,3929,30,'TRP_logo1.gif','http://www.trp.lt','2011-10-31 14:01:45',1,0,'0000-00-00 00:00:00','','',38,'',0,2,'0000-00-00 00:00:00','0000-00-00 00:00:00','','width=0\nheight=0'),(12,5,'','Seniūnija','seninija',0,3861,168,'Tytuvenai_transp.gif','http://www.tytuvenai.lt/','2011-10-31 14:03:24',1,0,'0000-00-00 00:00:00','','',38,'',0,3,'0000-00-00 00:00:00','0000-00-00 00:00:00','','width=80\nheight=75'),(13,4,'','Savivaldybė','savivaldyb',0,3871,32,'kelme_transp_160x56.gif','http://www.kelme.lt/','2011-10-31 14:05:16',1,0,'0000-00-00 00:00:00','','',38,'',0,4,'0000-00-00 00:00:00','0000-00-00 00:00:00','','width=0\nheight=0'),(14,6,'','VIC','vic',0,3893,40,'VIC_transp.gif','http://www.kelmevic.lt/','2011-10-31 14:06:12',1,0,'0000-00-00 00:00:00','','',38,'',0,5,'0000-00-00 00:00:00','0000-00-00 00:00:00','','width=0\nheight=0');
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_banner` ENABLE KEYS */;

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

DROP TABLE IF EXISTS `jos_bannerclient`;
CREATE TABLE `jos_bannerclient` (
  `cid` int(11) NOT NULL auto_increment,
  `name` varchar(255) NOT NULL default '',
  `contact` varchar(255) NOT NULL default '',
  `email` varchar(255) NOT NULL default '',
  `extrainfo` text NOT NULL,
  `checked_out` tinyint(1) NOT NULL default '0',
  `checked_out_time` time default NULL,
  `editor` varchar(50) default NULL,
  PRIMARY KEY  (`cid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

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


/*!40000 ALTER TABLE `jos_bannerclient` DISABLE KEYS */;
LOCK TABLES `jos_bannerclient` WRITE;
INSERT INTO `jos_bannerclient` VALUES (1,'Open Source Matters','Administrator','admin@opensourcematters.org','',0,'00:00:00',NULL),(2,'Piligrimai','Pranas','pranas@gmail.com','',0,'00:00:00',''),(3,'Regioninis parkas','Direktorius','direktorius@trp.lt','',0,'00:00:00',''),(4,'Savivaldybė','Andrius','andrius.m@kelme.lt','',0,'00:00:00',''),(5,'Seniūnija','Romas','tytuvenai@kelme.lt','',0,'00:00:00',''),(6,'VIC','Vilija','direktore@kelmevic.lt','',0,'00:00:00',''),(7,'Vyskupija','Eugenijus','eugenijus@gmail.com','',0,'00:00:00','');
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_bannerclient` ENABLE KEYS */;

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

DROP TABLE IF EXISTS `jos_bannertrack`;
CREATE TABLE `jos_bannertrack` (
  `track_date` date NOT NULL,
  `track_type` int(10) unsigned NOT NULL,
  `banner_id` int(10) unsigned NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

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


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

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

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

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


/*!40000 ALTER TABLE `jos_categories` DISABLE KEYS */;
LOCK TABLES `jos_categories` WRITE;
INSERT INTO `jos_categories` VALUES (1,0,'Paskutinės naujienos','','paskutinesnaujienos','taking_notes.jpg','1','left','',1,0,'0000-00-00 00:00:00','',1,0,1,''),(2,0,'Joomla! Specific Links','','joomla-specific-links','clock.jpg','com_weblinks','left','A selection of links that are all related to the Joomla! Project.',1,0,'0000-00-00 00:00:00',NULL,1,0,0,''),(3,0,'Newsflash','','newsflash','','1','left','',0,0,'0000-00-00 00:00:00','',2,0,0,''),(4,0,'Joomla!','','joomla','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00',NULL,2,0,0,''),(5,0,'Free and Open Source Software','','free-and-open-source-software','','com_newsfeeds','left','Read the latest news about free and open source software from some of its leading advocates.',1,0,'0000-00-00 00:00:00',NULL,3,0,0,''),(6,0,'Related Projects','','related-projects','','com_newsfeeds','left','Joomla builds on and collaborates with many other free and open source projects. Keep up with the latest news from some of them.',1,0,'0000-00-00 00:00:00',NULL,4,0,0,''),(12,0,'Kontaktai','','contacts','','com_contact_details','left','<p>Įstaigos darbuotojų kontaktiniai duomenys...</p>',1,0,'0000-00-00 00:00:00',NULL,0,0,0,''),(13,0,'Joomla','','joomla','','com_banner','left','',1,0,'0000-00-00 00:00:00',NULL,0,0,0,''),(14,0,'Text Ads','','text-ads','','com_banner','left','',1,0,'0000-00-00 00:00:00',NULL,0,0,0,''),(15,0,'Features','','features','','com_content','left','',0,0,'0000-00-00 00:00:00',NULL,6,0,0,''),(17,0,'Benefits','','benefits','','com_content','left','',0,0,'0000-00-00 00:00:00',NULL,4,0,0,''),(18,0,'Platforms','','platforms','','com_content','left','',0,0,'0000-00-00 00:00:00',NULL,3,0,0,''),(19,0,'Other Resources','','other-resources','','com_weblinks','left','',1,0,'0000-00-00 00:00:00',NULL,2,0,0,''),(29,0,'The CMS','','the-cms','','4','left','Information about the software behind Joomla!<br />',0,0,'0000-00-00 00:00:00',NULL,2,0,0,''),(28,0,'Vienuolynas','','vienuolynas','','8','left','',1,0,'0000-00-00 00:00:00',NULL,2,0,0,''),(38,0,'Partneriai','','partneriai','','com_banner','left','',1,0,'0000-00-00 00:00:00',NULL,2,0,0,''),(25,0,'Projektai','','projektai','','4','left','',1,0,'0000-00-00 00:00:00',NULL,1,0,0,''),(34,0,'Naujienos','','naujienos','','4','left','',1,0,'0000-00-00 00:00:00',NULL,4,0,0,''),(27,0,'Apie Tytuvėnus','','apie-tytuvenus','','3','left','',1,0,'0000-00-00 00:00:00',NULL,3,0,0,''),(30,0,'Piligrimai','','piligrimai','','5','left','',1,0,'0000-00-00 00:00:00',NULL,3,0,0,''),(31,0,'General','','general','','4','left','',1,0,'0000-00-00 00:00:00',NULL,1,0,0,''),(32,0,'Turizmas','','turizmas','','9','left','',1,0,'0000-00-00 00:00:00',NULL,4,0,0,''),(39,0,'Dėmesio!','','eilute','','com_banner','left','',1,0,'0000-00-00 00:00:00',NULL,3,0,0,''),(33,0,'Joomla! Promo','','joomla-promo','','com_banner','left','',1,0,'0000-00-00 00:00:00',NULL,1,0,0,''),(35,0,'Tytuvėnų kraštas','','tytuvenu-krastas','','7','left','',1,0,'0000-00-00 00:00:00',NULL,1,0,0,''),(36,0,'Muziejus','','muziejus-galerija','','7','left','',1,0,'0000-00-00 00:00:00',NULL,2,0,0,''),(37,0,'Muziejus','','muziejus','','6','left','',1,0,'0000-00-00 00:00:00',NULL,1,0,0,'');
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_categories` ENABLE KEYS */;

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

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

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


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

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

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

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


/*!40000 ALTER TABLE `jos_contact_details` DISABLE KEYS */;
LOCK TABLES `jos_contact_details` WRITE;
INSERT INTO `jos_contact_details` VALUES (1,'Vardas','name','Pareigos','Gatvė','Miestas','Apskritis','Šalis','Pašto kodas','Telefonas','Fax\\ksas','Kita informacija','powered_by.png','top','email@email.com',0,1,0,'0000-00-00 00:00:00',1,'show_name=1\nshow_position=1\nshow_email=1\nshow_street_address=0\nshow_suburb=0\nshow_state=0\nshow_postcode=0\nshow_country=0\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=1\nshow_email_copy=1\nbanned_email=\nbanned_subject=\nbanned_text=',0,12,0,'','http://interneto svetainė');
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_contact_details` ENABLE KEYS */;

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

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

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


/*!40000 ALTER TABLE `jos_content` DISABLE KEYS */;
LOCK TABLES `jos_content` WRITE;
INSERT INTO `jos_content` VALUES (1,'Kelmės regiono turizmo traukos objektas','traukos-objektas','','<p style=\"TEXT-ALIGN: left\"> <br />Tytuvėnų bažnyčios ir bernardinų vienuolyno ansamblis – tai pagrindinis Kelmės regiono turizmo traukos objektas, kuris turi didžiulę istorinę, meninę, kultūrinę, religinę/sakralinę išliekamąją vertę. Bažnyčios ir bernardinų vienuolyno ansamblį sudaro net 11 į kultūros vertybių registrą įrašytų atskirų objektų.<br /><br />2008 metų spalio 27 dienos ūkio ministro įsakymu projektas „Tytuvėnų bernardinų vienuolyno ansamblio pritaikymas turizmo reikmėms“ buvo įtrauktas į Valstybės planuojamų turizmo projektų, finansuojamų iš 2007 m. - 2013 m. Europos Sąjungos paramos lėšų, sąrašą. Pagrindinis projekto tikslas buvo kompleksiškai pritaikyti Tytuvėnų Švenčiausiosios Mergelės Marijos bažnyčios ir bernardinų vienuolyno ansamblį turizmui, išlaikant objekto unikalumą ir autentiškumą, sukurti sąlygas privačioms investicijoms, piligrimystę ir turizmą skatinančioms, palaikančioms bei aptarnaujančioms paslaugoms ir veikloms vykdyti. Pradėjus eksplotuoti objektą bus sumažintas turizmo sezoniškumas, kadangi kultūros paveldo objektas vertingas ne tik savo išore, bet ir vidaus ekspozicija. Vienuolyne įkurtas Šiaulų vyskupijos bažnytinio paveldo muziejus. Pagrindinė muziejaus ekspozicijų salė įsikurs buvusioje vienuolyno bibliotekoje, joje bus eksponuojami liturginiai reikmenys iš Šiaulių vyskupijos bažnyčių, kitose celėse galėsime parodyti paveikslus, skulptūras iš Tytuvėnų bažnyčios.</p>\r\n<p style=\"TEXT-ALIGN: left\"> </p>\r\n<p style=\"TEXT-ALIGN: right\">VšĮ „Tytuvėnų piligrimų centro“ informacija</p>','',1,8,0,28,'2011-06-27 10:00:00',62,'','2011-10-31 19:51:32',62,0,'0000-00-00 00:00:00','2011-06-27 10:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',30,0,1,'','',0,200,'robots=\nauthor='),(2,'Newsflash 1','newsflash-1','','<p>Joomla! makes it easy to launch a Web site of any kind. Whether you want a brochure site or you are building a large online community, Joomla! allows you to deploy a new site in minutes and add extra functionality as you need it. The hundreds of available Extensions will help to expand your site and allow you to deliver new services that extend your reach into the Internet.</p>','',0,1,0,3,'2008-08-10 06:30:34',62,'','2008-08-10 06:30:34',62,0,'0000-00-00 00:00:00','2004-08-09 10:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',7,0,3,'','',0,1,'robots=\nauthor='),(3,'Newsflash 2','newsflash-2','','<p>The one thing about a Web site, it always changes! Joomla! makes it easy to add Articles, content, images, videos, and more. Site administrators can edit and manage content \'in-context\' by clicking the \'Edit\' link. Webmasters can also edit content through a graphical Control Panel that gives you complete control over your site.</p>','',0,1,0,3,'2008-08-09 22:30:34',62,'','2008-08-09 22:30:34',62,0,'0000-00-00 00:00:00','2004-08-09 06:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',6,0,4,'','',0,0,'robots=\nauthor='),(4,'Newsflash 3','newsflash-3','','<p>With a library of thousands of free <a href=\"http://extensions.joomla.org\" target=\"_blank\" title=\"The Joomla! Extensions Directory\">Extensions</a>, you can add what you need as your site grows. Don\'t wait, look through the <a href=\"http://extensions.joomla.org/\" target=\"_blank\" title=\"Joomla! Extensions\">Joomla! Extensions</a>  library today. </p>','',0,1,0,3,'2008-08-10 06:30:34',62,'','2008-08-10 06:30:34',62,0,'0000-00-00 00:00:00','2004-08-09 10:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',7,0,5,'','',0,1,'robots=\nauthor='),(5,'Šiaulų bažnytinio paveldo muziejus','siauliu-baznytinio-paveldo-muziejus','joomla-license-guidelines','<p style=\"text-align: right;\"><span style=\"font-family: tahoma,arial,helvetica,sans-serif;\">Muziejaus nuotraukų galeriją galima aplankyti <a href=\"index.php?option=com_content&amp;view=section&amp;id=7&amp;Itemid=49\">čia</a><br /></span></p>\r\n<p align=\"left\"> </p>\r\n<p align=\"left\"><span style=\"font-family: Tahoma;\">Muziejus yra viešosios įstaigos „Tytuvėnų piligrimų centras“ padalinys.<br />Muziejus įkurtas Šiaulių vyskupo Eugenijaus Bartulio dekretu 2010 metais.<br />Muziejaus vadovė Rūta Krencienė.<br />Muziejaus tikslas — kaupti, saugoti ir populiarinti Šiaulių vyskupijos bažnyčių ir vienuolijų istorijos ir meno palikimą. Yra labai svarbu surinkti ir apsaugoti jau nenaudojamus liturgijoje reikmenis, dailės kūrinius, istorinius dokumentus bei knygas.<br />Muziejaus buveinės adresas: Maironio 2A, Tytuvėnai, Kelmės raj. LT-86484<br />Šiuo metu muziejaus patalpos, t.y. Tytuvėnų bernardinų vienuolynas, yra remontuojamas ir restauruojamas. Nėra nuolat veikiančios ekspozicijos, yra renkami ir tvarkomi muziejaus fondai.</span></p>\r\n<p align=\"left\"><span style=\"font-family: Tahoma;\"><br /></span></p>\r\n<p align=\"left\"><span style=\"font-family: Tahoma;\"> </span></p>\r\n<p style=\"text-align: left;\"><strong><span style=\"font-family: tahoma,arial,helvetica,sans-serif;\">MUZIEJAUS STRUKTŪRINĖS GAIRĖS</span></strong></p>\r\n<p><span style=\"font-family: tahoma,arial,helvetica,sans-serif;\">Muziejus steigiamas pagal Popiežiškosios kultūros tarybos rekomendacijas (1999m. gegužės mėn. 23 d. sprendimas „Dėl kultūros pastoracijos“).</span></p>\r\n<p><span style=\"font-family: tahoma,arial,helvetica,sans-serif;\"><strong>Muziejaus tikslas:</strong> </span></p>\r\n<ul>\r\n<li><span style=\"font-family: tahoma,arial,helvetica,sans-serif;\">Sukurti muziejų, kaupiantį, saugantį ir skleidžiantį Šiaulių vyskupijos istorijos ir meno palikimą. </span></li>\r\n<li><span style=\"font-family: tahoma,arial,helvetica,sans-serif;\">Įvairiomis formomis (parodomis, ekspozicijomis, susitikimais, leidiniais ir kt.) aktualinti  vyskupijos istorinio ir meninio palikimo savitumą ir vertę. </span></li>\r\n<li><span style=\"font-family: tahoma,arial,helvetica,sans-serif;\">Lietuvoje skleisti ir puoselėti Vakarų Europos krikščioniškąsias ir kultūros vertybes, įtakojančias demokratijos plėtrą, pilietinės visuomenės stiprėjimą bei žmogaus, kaip esminės vertybės, augimą. </span></li>\r\n</ul>\r\n<p><strong><span style=\"font-family: tahoma,arial,helvetica,sans-serif;\">Muziejaus misija:</span></strong></p>\r\n<ul>\r\n<li><span style=\"font-family: tahoma,arial,helvetica,sans-serif;\">Šiaulių vyskupijos muziejus būtų pastovi ir atvira kultūriniam bendradarbiavimui su visuomene kultūros įstaiga. Jos vaidmuo būtų kaupti ir saugoti Šiaulių vyskupystės ( dekanatai: Joniškio, Pakruojo, Radviliškio, Kelmės, Šiaulių. Tai  67 parapijos) bažnyčios meno, istorijos ir memorialinį paveldą, kitas muziejines vertybes. </span></li>\r\n<li><span style=\"font-family: tahoma,arial,helvetica,sans-serif;\">Muziejus viešai ir autentiškai pristatytų muziejines  vertybes  ir tęstų krikščioniškąsias regiono ir valstybės tradicijas. </span></li>\r\n<li><span style=\"font-family: tahoma,arial,helvetica,sans-serif;\">Kadangi įstaiga kuriama buvusiame vienuolyne, tai muziejuje būtų pristatomos  vienuolynų sukurtos dvasinio gyvenimo sistemos, reikšmingos dvasinės patirties tobulinimo keliu einančiam dabarties žmogui . </span></li>\r\n<li><span style=\"font-family: tahoma,arial,helvetica,sans-serif;\">Muziejus  teiktų kultūros, švietimo ir informacines paslaugas, kurios palaikytų ir stiprintų istorinę, kultūrinę bei religinę Lietuvos piliečių tapatybę. </span></li>\r\n</ul>\r\n<p style=\"text-align: left;\"> </p>\r\n<p style=\"text-align: left;\"><span style=\"font-family: tahoma,arial,helvetica,sans-serif;\"><br /><strong>Muziejaus istorinis kontekstas</strong></span></p>\r\n<p><span style=\"font-family: tahoma,arial,helvetica,sans-serif;\">Muziejus įsikurtų Tytuvėnų bernardinų vienuolyno rūmų vakarinio korpuso antrame aukšte ir pietvakarių rizalite, virš refektoriaus, buvusioje vienuolyno bibliotekos patalpoje.<br />Vienuolyno rūmai – tai mažiausiai pakitęs ansamblio pastatas nuo jo pastatymo laikų. Tai – trijų korpusų gyvenamasis namas, dviem galais besišliejantis prie pietinės bažnyčios sienos. Tai – puikus vėlyvojo renesanso architektūros Lietuvoje pavyzdys.<br />Tytuvėnų Švč. Mergelės Marijos bažnyčios ir bernardinų vienuolyno ansamblis yra vienas įdomiausių ir didžiausių Lietuvos  sakralinės XVII-XVIII a. architektūros kompleksų, kurio formose ryški daugiasluoksnė gotikos, renesanso ir baroko stilių dermė. Šventovė su vienuolynu išsiskiria tuo, kad jie pastatyti nuošalioje pelkėtoje ir miškingoje  vietoje mažai tenukentėjo nuo karų. Čia niekada nesiautėjo gaisrai, todėl buvo išvengta esminių perstatymų, ir bažnyčia  beveik keturis šimtmečius buvo maldos namais. Šis bernardinų vienuolyno ir bažnyčios ansamblis yra vienas iš vertingiausių barokinių ansamblių ne tik Lietuvoje, bet ir visoje Šiaurės Rytų Europoje.<br />Ansamblis išsiskiria vienintele iki mūsų dienų Lietuvoje išlikusia  vienuolyno kalvarija.  1771-1778 m. sukurta Kryžiaus kelio stočių galerija su 25 tapytomis ir 14 gipsinių horeljefinių kompozicijų, 1775-1778 m. šventoriaus centre pastatyta Kristaus laiptų koplyčia       <br />Kančios istorijos stočių išdėstymas arkadinėse galerijose daro ansamblį neįprastą ir išsiskiriantį iš kitų Lietuvos bernardinų bažnyčių, verčia susimąstyti apie bernardiniškojo meno estetiką ir Tytuvėnų Kryžiaus kelio originalumą. Ši vienuolyno kalvarija atspindi  bernardiniškojo pamaldumo Kristaus kančiai tradiciją ir potridentiniu laikotarpiu Lietuvos Didžiojoje Kunigaikštystėje (LDK) paplitusią naują piligrimystės formą – Kalvarijų, arba Naujųjų Jeruzalių, lankymą ir apvaikščiojimą. Kryžiaus kelias  čia vaizduojamas per dailės kūrinių siužetus. <br />Tytuvėnų Kryžiaus kelio įsteigimui lemiamą reikšmę turėjo piligrimystė į Šventąją Žemę. Vienuoliai, nukeliavę į Jeruzalę, pasisemdavo reikiamos patirties apie ten esantį Kančios kelią, atsigabendavo šventosios žemės bei įvairių relikvijų, kurias išdėstydavo steigiamose Naujose Jeruzalėse. Tytuvėnų Kryžiaus kelio įkūrimą nulėmė vienuolio Antano Burnickio kelionė į Šventąją Žemę XVII a. antroje pusėje. Vienuolio pargabentos  relikvijos, apgaubtos stikliniais gaubtais, iki šių dienų išsaugotos prie kai kurių stočių ir Šventųjų laiptų pakopose. Tytuvėnų bernardinų vienuolyno gvardijonas Antanas Burnickis yra aprašęs šią savo kelionę į Jeruzalę. XIX a. viduryje tik nedidelis kelionės aprašymo skyrius buvo publikuotas. Tokie užrašai būtų įdomus piligrimystės liudijimas. Tikėtina, kad jie yra saugomi Lenkijos bernardinų archyvuose ir, galbūt, kada nors atsiras galimybė, nuvalius užmaršties dulkes, juos paskelbti.<br />Įdomus ir mažai tyrinėtas Tytuvėnų bažnyčios ir bernardinų vienuolyno istorijos puslapis yra 1831m. 1863m. sukilimai. <br />1831 m. Tytuvėnai buvo vienas iš sukilėlių centrų. Vienuolynas bei ūkiniai pastatai buvo įtvirtinti gynybai, įrengtos šaudymo angos. Tąkart, sukilimui pralaimėjus, caro valdžia Tytuvėnų vienuolių nelietė.<br />1863 m., prasidėjus antram sukilimui, netoli miestelio vyko mūšiai, todėl daugelis tytuvėniškių stojo į sukilėlių gretas. Numalšinus sukilimą, caro valdininkai apkaltino vienuolius rėmus sukilėlius, ir 1864 m. vienuolyną uždarė. Tuo laiku Lietuvoje buvo uždarytos 32 bažnyčios ir 20 vienuolynų. <br />Kauno gubernatoriaus įsakymu buvo nurodyta Tytuvėnų bažnyčią ir vienuolyno pastatus atiduoti atvykstantiems rusams kolonijistams. Iškilo grėsmė  ansambliui  išlikti. Vyskupo Motiejaus Valančiaus ir tytuvėniškių atkaklių pastangų dėka bažnyčia buvo išsaugota. Šis sėkmė anuomet  buvo padrąsinimas visiems  Lietuvos katalikams priešintis rusinimo politikai ,ginti  tautos teises ir laisvę.</span></p>\r\n<p><span style=\"font-family: tahoma,arial,helvetica,sans-serif;\"><br /></span></p>\r\n<p><strong><span style=\"font-family: tahoma,arial,helvetica,sans-serif;\">Ekspozicijų tematika</span></strong></p>\r\n<p><span style=\"font-family: tahoma,arial,helvetica,sans-serif;\">1. Sakralinis barokas.<br />Ekspozicije pristatomas Tytuvėnų bernardinų bažnyčios ir vienuolyno ansamblis, jo istorinė, architektūrinė, meninė vertė; parodomas jo ryšys su kitais vyskupijos teritorijoje ir už jos ribų esančiais sakralinio baroko objektais.  Supažindinama su „Baroko kelias Lietuvoje“ turistiniais maršrutais.<br />Svarbią vietą ekspozicije užims kulto apeigose šiuo metu nenaudojami vertingi sakralinio meno daiktai (taurės, monstrancijos, relikvijoriai, kryžiai, žvakidės, liturginiai rūbai ir kt.)<br />2. Ikonografija.<br />Kartu su auksakalystės, liturginių rūbų ir kitomis vertybėmis muziejuje būtų eksponuojama <br />Tytuvėnų vienuolyne ir bažnyčioje esančių portretų kolekcija, tai pat Lietuvos muziejuose esantys portretai. Pristatomas ir religinis liaudies menas – paprastų žmonių pamaldumą liudijanti krikščioniškojo Lietuvos meno dalis. Didesnė šių eksponatų dalis deponavimo teise būtų gautos iš Lietuvos dailės muziejaus fondų.<br />Eksponuojami išlikę bernardinų gyvenimo ir apeigų daiktai.<br />3. Bernardinų (mažesniųjų brolių observantų: OFM) veikla.<br /></span></p>','',1,6,0,37,'2011-04-08 12:53:11',62,'','2011-10-31 20:37:36',62,0,'0000-00-00 00:00:00','2011-04-08 12:53:11','0000-00-00 00:00:00','','','show_title=1\nlink_titles=0\nshow_intro=0\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=0\nshow_author=0\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=lt-LT\nkeyref=\nreadmore=',10,0,1,'','',0,89,'robots=\nauthor='),(6,'We are Volunteers','we-are-volunteers','','<p>The Joomla Core Team and Working Group members are volunteer developers, designers, administrators and managers who have worked together to take Joomla! to new heights in its relatively short life. Joomla! has some wonderfully talented people taking Open Source concepts to the forefront of industry standards.  Joomla! 1.5 is a major leap forward and represents the most exciting Joomla! release in the history of the project. </p>','',-1,1,0,1,'2007-07-07 09:54:06',62,'','2007-07-07 09:54:06',62,0,'0000-00-00 00:00:00','2004-07-06 22:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',10,0,4,'','',0,54,'robots=\nauthor='),(9,'Millions of Smiles','millions-of-smiles','','<p>The Joomla! team has millions of good reasons to be smiling about the Joomla! 1.5. In its current incarnation, it\'s had millions of downloads, taking it to an unprecedented level of popularity.  The new code base is almost an entire re-factor of the old code base.  The user experience is still extremely slick but for developers the API is a dream.  A proper framework for real PHP architects seeking the best of the best.</p><p>If you\'re a former Mambo User or a 1.0 series Joomla! User, 1.5 is the future of CMSs for a number of reasons.  It\'s more powerful, more flexible, more secure, and intuitive.  Our developers and interface designers have worked countless hours to make this the most exciting release in the content management system sphere.</p><p>Go on ... get your FREE copy of Joomla! today and spread the word about this benchmark project. </p>','',-1,1,0,1,'2007-07-07 09:54:06',62,'','2007-07-07 09:54:06',62,0,'0000-00-00 00:00:00','2004-07-06 22:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',5,0,7,'','',0,23,'robots=\nauthor='),(10,'How do I localise Joomla! to my language?','how-do-i-localise-joomla-to-my-language','','<h4>General<br /></h4><p>In Joomla! 1.5 all User interfaces can be localised. This includes the installation, the Back-end Control Panel and the Front-end Site.</p><p>The core release of Joomla! 1.5 is shipped with multiple language choices in the installation but, other than English (the default), languages for the Site and Administration interfaces need to be added after installation. Links to such language packs exist below.</p>','<p>Translation Teams for Joomla! 1.5 may have also released fully localised installation packages where site, administrator and sample data are in the local language. These localised releases can be found in the specific team projects on the <a href=\"http://extensions.joomla.org/component/option,com_mtree/task,listcats/cat_id,1837/Itemid,35/\" target=\"_blank\" title=\"JED\">Joomla! Extensions Directory</a>.</p><h4>How do I install language packs?</h4><ul><li>First download both the admin and the site language packs that you require.</li><li>Install each pack separately using the Extensions-&gt;Install/Uninstall Menu selection and then the package file upload facility.</li><li>Go to the Language Manager and be sure to select Site or Admin in the sub-menu. Then select the appropriate language and make it the default one using the Toolbar button.</li></ul><h4>How do I select languages?</h4><ul><li>Default languages can be independently set for Site and for Administrator</li><li>In addition, users can define their preferred language for each Site and Administrator. This takes affect after logging in.</li><li>While logging in to the Administrator Back-end, a language can also be selected for the particular session.</li></ul><h4>Where can I find Language Packs and Localised Releases?</h4><p><em>Please note that Joomla! 1.5 is new and language packs for this version may have not been released at this time.</em> </p><ul><li><a href=\"http://joomlacode.org/gf/project/jtranslation/\" target=\"_blank\" title=\"Accredited Translations\">The Joomla! Accredited Translations Project</a>  - This is a joint repository for language packs that were developed by teams that are members of the Joomla! Translations Working Group.</li><li><a href=\"http://extensions.joomla.org/component/option,com_mtree/task,listcats/cat_id,1837/Itemid,35/\" target=\"_blank\" title=\"Translations\">The Joomla! Extensions Site - Translations</a>  </li><li><a href=\"http://community.joomla.org/translations.html\" target=\"_blank\" title=\"Translation Work Group Teams\">List of Translation Teams and Translation Partner Sites for Joomla! 1.5</a> </li></ul>',0,9,0,32,'2008-07-30 14:06:37',62,'','2008-07-30 14:06:37',62,0,'0000-00-00 00:00:00','2006-09-29 10:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',9,0,8,'','',0,10,'robots=\nauthor='),(11,'How do I upgrade to Joomla! 1.5 ?','how-do-i-upgrade-to-joomla-15','','<p>Joomla! 1.5 does not provide an upgrade path from earlier versions. Converting an older site to a Joomla! 1.5 site requires creation of a new empty site using Joomla! 1.5 and then populating the new site with the content from the old site. This migration of content is not a one-to-one process and involves conversions and modifications to the content dump.</p> <p>There are two ways to perform the migration:</p>',' <div id=\"post_content-107\"><li>An automated method of migration has been provided which uses a migrator Component to create the migration dump out of the old site (Mambo 4.5.x up to Joomla! 1.0.x) and a smart import facility in the Joomla! 1.5 Installation that performs required conversions and modifications during the installation process.</li> <li>Migration can be performed manually. This involves exporting the required tables, manually performing required conversions and modifications and then importing the content to the new site after it is installed.</li>  <p><!--more--></p> <h2><strong> Automated migration</strong></h2>  <p>This is a two phased process using two tools. The first tool is a migration Component named <font face=\"courier new,courier\">com_migrator</font>. This Component has been contributed by Harald Baer and is based on his <strong>eBackup </strong>Component. The migrator needs to be installed on the old site and when activated it prepares the required export dump of the old site\'s data. The second tool is built into the Joomla! 1.5 installation process. The exported content dump is loaded to the new site and all conversions and modification are performed on-the-fly.</p> <h3><u> Step 1 - Using com_migrator to export data from old site:</u></h3> <li>Install the <font face=\"courier new,courier\">com_migrator</font> Component on the <u><strong>old</strong></u> site. It can be found at the <a href=\"http://joomlacode.org/gf/project/pasamioprojects/frs/\" target=\"_blank\" title=\"JoomlaCode\">JoomlaCode developers forge</a>.</li> <li>Select the Component in the Component Menu of the Control Panel.</li> <li>Click on the <strong>Dump it</strong> icon. Three exported <em>gzipped </em>export scripts will be created. The first is a complete backup of the old site. The second is the migration content of all core elements which will be imported to the new site. The third is a backup of all 3PD Component tables.</li> <li>Click on the download icon of the particular exports files needed and store locally.</li> <li>Multiple export sets can be created.</li> <li>The exported data is not modified in anyway and the original encoding is preserved. This makes the <font face=\"courier new,courier\">com_migrator</font> tool a recommended tool to use for manual migration as well.</li> <h3><u> Step 2 - Using the migration facility to import and convert data during Joomla! 1.5 installation:</u></h3><p>Note: This function requires the use of the <em><font face=\"courier new,courier\">iconv </font></em>function in PHP to convert encodings. If <em><font face=\"courier new,courier\">iconv </font></em>is not found a warning will be provided.</p> <li>In step 6 - Configuration select the \'Load Migration Script\' option in the \'Load Sample Data, Restore or Migrate Backed Up Content\' section of the page.</li> <li>Enter the table prefix used in the content dump. For example: \'jos_\' or \'site2_\' are acceptable values.</li> <li>Select the encoding of the dumped content in the dropdown list. This should be the encoding used on the pages of the old site. (As defined in the _ISO variable in the language file or as seen in the browser page info/encoding/source)</li> <li>Browse the local host and select the migration export and click on <strong>Upload and Execute</strong></li> <li>A success message should appear or alternately a listing of database errors</li> <li>Complete the other required fields in the Configuration step such as Site Name and Admin details and advance to the final step of installation. (Admin details will be ignored as the imported data will take priority. Please remember admin name and password from the old site)</li> <p><u><br /></u></p></div>',-1,8,0,28,'2008-07-30 20:27:52',62,'','2008-07-30 20:27:52',62,0,'0000-00-00 00:00:00','2006-09-29 12:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',10,0,4,'','',0,14,'robots=\nauthor='),(12,'Why does Joomla! 1.5 use UTF-8 encoding?','why-does-joomla-15-use-utf-8-encoding','','<p>Well... how about never needing to mess with encoding settings again?</p><p>Ever needed to display several languages on one page or site and something always came up in Giberish?</p><p>With utf-8 (a variant of Unicode) glyphs (character forms) of basically all languages can be displayed with one single encoding setting. </p>','',-1,4,0,31,'2008-08-05 01:11:29',62,'','2008-08-05 01:11:29',62,0,'0000-00-00 00:00:00','2006-10-03 10:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',8,0,8,'','',0,29,'robots=\nauthor='),(13,'What happened to the locale setting?','what-happened-to-the-locale-setting','','This is now defined in the Language [<em>lang</em>].xml file in the Language metadata settings. If you are having locale problems such as dates do not appear in your language for example, you might want to check/edit the entries in the locale tag. Note that multiple locale strings can be set and the host will usually accept the first one recognised.','',-1,8,0,28,'2008-08-06 16:47:35',62,'','2008-08-06 16:47:35',62,0,'0000-00-00 00:00:00','2006-10-05 14:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',7,0,3,'','',0,11,'robots=\nauthor='),(14,'Atidarytas Šiaulių vyskupijos bažnytinio paveldo muziejus','atidarytasmuziejus','','<div style=\"text-align: right;\"><a href=\"http://www.youtube.com/watch?v=PQSzycO0_Bw\" target=\"_blank\">Filmukas apie atidarymo šventę </a></div>\r\n<p><br /><br />Baigiamame restauruoti Tytuvėnų bernardinų vienuolyne birželio 11 d. atidarytas Šiaulių vyskupijos bažnytinio paveldo muziejus.  Iškilmės prasidėjo 11 val. padėkos šv. Mišiomis. Jas aukojo Šiaulių vyskupas Eugenijus Bartulis, Kauno arkivyskupas metropolitas Sigitas Tamkevičius, Telšių vyskupas Jonas Boruta, Šiaulių vyskupijos kunigai.<br /><br />Oficialus muziejaus  atidarymo renginys vyko uždarame vienuolyno kiemelyje. Jame taip pat dalyvavo kultūros ministras Arūnas Gelūnas, Kultūros paveldo departamento direktorė Diana Varnaitė, Kelmės meras Kostas Arvasevičius, Seimo nariai, Kelmės garbės piliečiai, Kelmės miesto bei rajono valdžios atstovai, mokslininkai, verslininkai, parapijiečiai bei iš toliau atvykę miestelio svečiai.<br /><br />Šventės vedančioji Nijolė Saimininkienė priminė istorinius įvykius, kuomet 1614 metų gegužės 1 dieną Andriejus Valavičius, Vilniaus didikas, Tytuvėnų miestelio savininkas, Tryškiuose pasirašė fundacijos aktą dėl naujos bažnyčios bei vienuolyno statybos. Šitam dokumentui netrukus sukaks 400 metų.<br /><br />Ansamblis  pastatytas nuošalioje vietovėje, galbūt todėl  mažai nukentėjo nuo karų, čia niekada nesiautėjo gaisrai, buvo išvengta esminių perstatymų. Vienuolyno ir bažnyčios ansamblis pripažįstamas vienu vertingiausių barokinių ansamblių Lietuvoje ir visoje Šiaurės rytų Europoje. Baigiamas restauruoti renesansinis vienuolyno rūmas  gausiai išpuoštas ornamentine ir figūrine sienų tapyba, kurios siužetai iliustruoja Jėzaus Kristaus gyvenimo ir kančios kelią, tai yra autentiška aplinka ir pagrindas muziejaus ekspozicijoms.<br /><br />Kauno arkivyskupas metropolitas Sigitas Tamkevičius pabrėžė Katalikų bažnyčios vaidmenį išsaugant šį milžinišką kultūrinį paveldą. „Manau, kad Lietuva turi būti dėkinga katalikų bažnyčiai už milžinišką paveldą, kurį turime. Jei iš to paveldo atimtume bažnyčias ir vienuolynus, nedaug ką — pilis, dvarus — turėtume parodyti atvykstantiems į Lietuvą“, — tvirtino arkivyskupas. Jis pažymėjo, kad bažnyčia už tą paveldą turi jausti ir didelę atsakomybę, juo rūpintis, neapleisti.<br /><br />Kultūros ministras Arūnas Gelūnas vienuolyną vadino vienu didžiausių mūsų kultūros perlų, kuris „puikiai papuoštų bet kurį Europos kraštą“. Bažnytinio paveldo muziejaus atidarymas – „tikrai puiki proga prisiminti, ką Lietuvai davė krikščionybė, Bažnyčia, tikėjimas“, — sakė kultūros ministras. <br /><br />Kultūros paveldo departamento direktorė Diana Varnaitė sakė: „Nuostabu, jei čia sugrįžtų vienuoliai, tačiau šiandien pasirinktas optimaliausias būdas, kuris suteikia dvasinę tvirtybę, sugrąžina dvasios vertybes“.<br /><br />Kelmės rajono meras Kostas Arvasevičius teigė, kad festivaliais, piligrimyste žymiuose Tytuvėnuose atlikti darbai įprasmina tai, kas mums brangu ir artima. Restauratorių darbu džiaugėsi Lietuvos dailės muziejaus direktorius Romualdas Budrys, dar studentu būdamas lankęs šias apylinkes, matęs pastatų būklę. <br /><br />UAB „Restauracija“ vadovas Kęstutis Vaišnoras prisiminė dažnai ant pastolių matęs Šiaulių vyskupą Eugenijų Bartulį, besikalbantį su restauratoriais. Nėra tokio žmogaus Kelmėje, mažo ir seno, kurie nepažintų šilto ir malonaus mūsų vyskupo, sakė Kelmės savivaldybės administracijos direktorius Zenonas Mačernius.<br /><br />Architektė Regina Tumpienė pasidžiaugė savo kolektyvu, kuris dirbo atsakingai, kantriai ir su meile. Individualios firmos „Agrotech“ savininkas Petras Račkauskas pabrėžė nuolatinį vyskupijos kanclerio Evaldo Alūzos bei Tytuvėnų piligrimų centro direktoriaus Prano Jurkaičio rūpestį. Padėkos žodžiai tarti Tytuvėnų parapijos klebonui Rimantui Žaromskiui.<br /><br />Garbingiems svečiams buvo įtekti  proginiai medaliai šiam įvikiui atminti. Šiaulių Vyskupas Eugenijus Bartulis pašventino senąjį vienuolyno pastatą, vėliau buvo apžiūrėtas muziejus. Jo ekspozicijoms skirta buvusi vienuolyno biblioteka; mažoji salė, kurioje, istorikų įsitikinimu, buvo vienuolyno vaistinės laboratorija; dalis koridoriaus, kuriuo buvo einama į noviciato rūmą. Nors muziejus dar labai jaunas, tačiau jo ekspozicije jau galima pamatyti išskirtiniausius Šiaulių vyskupijos bažnyčių liturginius reikmenis, liturginius rūbus, skulptūras, paveikslus, galima apsilankyti autentiškoje vienuolio celėje.</p>','',1,6,0,37,'2011-06-27 08:27:49',62,'','2011-10-31 20:34:23',62,0,'0000-00-00 00:00:00','2011-06-27 09:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',9,0,2,'','',0,150,'robots=\nauthor='),(15,'Tytuvėnų bendruomenės vaidmens saugant ir naudojant kultūros paveldą stiprinimas','tytuvn-bendruomens-vaidmens-saugant-ir-naudojant-kultros-paveld-stiprinimas','','<p>VšĮ „Tytuvėnų piligrimų centras“  ir Tytuvėnų bendruomenė parengė projektą „<strong>Tytuvėnų bendruomenės vaidmens saugant ir naudojant kultūros paveldą stiprinimas</strong>“.<br /><br />Projekto tikslas: sustiprinti Tytuvėnų bendruomenės organizacinius ir žmogiškuosius gebėjimus efektyviai visuomenės reikmėms panaudoti turimą kultūros paveldą ir taip suderinti kultūrinio paveldo apsaugą ir bendruomenės vystymąsi.<br /><br />Projekto veiklos: identifikavus pagrindines problemos priežastis, numatytos projekto veiklos, skirtos sustiprinti Tytuvėnų bendruomenės organizacinius ir žmogiškuosius gebėjimus efektyviai visuomenės reikmėms panaudoti turimą kultūros paveldą ir taip suderinti kultūrinio paveldo apsaugą ir bendruomenės vystymąsi.<br /><br />Projekto veiklos yra šios:<br />1.  vienuolyno požemių tyrimai;<br />2.  bendruomenės narių mokymai ir institucijos stiprinimas;<br />3.  turistinės  informacijos parengimas.<br /><br /><br />Projekto pasiekimai pirmiausia sustiprins Tytuvėnų bendruomenės kompetencijas, Tytuvėnų bendruomenę kaip organizaciją.<br />Sustiprėjusi ir tinkamų žinių ir gebėjimų turinti Tytuvėnų bendruomenė ilgu laikotarpiu padidins Tytuvėnų kultūros paveldo teikiamą naudą vietos gyventojams, ūkio subjektams: padidins atvykstančių turistų skaičių, pailgins jų buvimo Tytuvėnuose trukmę ir taip padidins vietos ūkio subjektų pajamas, kurios atitinkamai gerins gyventojų gyvenimo kokybę.<br /><br />Jausdama tiesioginę naudą iš kultūros paveldo objektų, Tytuvėnų bendruomenė bus motyvuota maksimaliai suderinti savo ūkinę ir kultūros paveldo saugojimą bei panaudojimą.<br />Numatoma projekto vertė yra 342.650,00 LT</p>','',1,4,0,25,'2011-04-04 11:42:31',62,'','2011-10-31 11:13:14',62,0,'0000-00-00 00:00:00','2011-04-04 11:42:31','0000-00-00 00:00:00','','','show_title=1\nlink_titles=0\nshow_intro=0\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=0\nshow_author=0\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=lt-LT\nkeyref=\nreadmore=',9,0,3,'','',0,3,'robots=\nauthor='),(16,'Only one edit window! How do I create \"Read more...\"?','only-one-edit-window-how-do-i-create-read-more','','<p>This is now implemented by inserting a <strong>Read more...</strong> tag (the button is located below the editor area) a dotted line appears in the edited text showing the split location for the <em>Read more....</em> A new Plugin takes care of the rest.</p><p>It is worth mentioning that this does not have a negative effect on migrated data from older sites. The new implementation is fully backward compatible.</p>','',-1,8,0,28,'2008-08-06 19:29:28',62,'','2008-08-06 19:29:28',62,0,'0000-00-00 00:00:00','2006-10-05 14:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',7,0,5,'','',0,20,'robots=\nauthor='),(17,'My MySQL database does not support UTF-8. Do I have a problem?','my-mysql-database-does-not-support-utf-8-do-i-have-a-problem','','No you don\'t. Versions of MySQL lower than 4.1 do not have built in UTF-8 support. However, Joomla! 1.5 has made provisions for backward compatibility and is able to use UTF-8 on older databases. Let the installer take care of all the settings and there is no need to make any changes to the database (charset, collation, or any other).','',-1,4,0,31,'2008-08-07 09:30:37',62,'','2008-08-07 09:30:37',62,0,'0000-00-00 00:00:00','2006-10-05 20:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',10,0,7,'','',0,9,'robots=\nauthor='),(18,'Joomla! Features','joomla-features','','<h4><span style=\"color: #ff6600;\">Joomla! features:</span></h4>\r\n<ul>\r\n<li>Completely database driven site engines </li>\r\n<li>News, products, or services sections fully editable and manageable</li>\r\n<li>Topics sections can be added to by contributing Authors </li>\r\n<li>Fully customisable layouts including <em>left</em>, <em>center</em>, and <em>right </em>Menu boxes </li>\r\n<li>Browser upload of images to your own library for use anywhere in the site </li>\r\n<li>Dynamic Forum/Poll/Voting booth for on-the-spot results </li>\r\n<li>Runs on Linux, FreeBSD, MacOSX server, Solaris, and AIX \r\n','\r\n</li>\r\n</ul>\r\n<h4>Extensive Administration:</h4>\r\n<ul>\r\n<li>Change order of objects including news, FAQs, Articles etc. </li>\r\n<li>Random Newsflash generator </li>\r\n<li>Remote Author submission Module for News, Articles, FAQs, and Links </li>\r\n<li>Object hierarchy - as many Sections, departments, divisions, and pages as you want </li>\r\n<li>Image library - store all your PNGs, PDFs, DOCs, XLSs, GIFs, and JPEGs online for easy use </li>\r\n<li>Automatic Path-Finder. Place a picture and let Joomla! fix the link </li>\r\n<li>News Feed Manager. Easily integrate news feeds into your Web site.</li>\r\n<li>E-mail a friend and Print format available for every story and Article </li>\r\n<li>In-line Text editor similar to any basic word processor software </li>\r\n<li>User editable look and feel </li>\r\n<li>Polls/Surveys - Now put a different one on each page </li>\r\n<li>Custom Page Modules. Download custom page Modules to spice up your site </li>\r\n<li>Template Manager. Download Templates and implement them in seconds </li>\r\n<li>Layout preview. See how it looks before going live </li>\r\n<li>Banner Manager. Make money out of your site.</li>\r\n</ul>',0,4,0,29,'2008-08-08 23:32:45',62,'','2011-11-30 17:14:53',62,0,'0000-00-00 00:00:00','2006-10-07 06:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',13,0,3,'','',0,0,'robots=\nauthor='),(19,'Joomla! Overview','joomla-overview','','<p>If you\'re new to Web publishing systems, you\'ll find that Joomla! delivers sophisticated solutions to your online needs. It can deliver a robust enterprise-level Web site, empowered by endless extensibility for your bespoke publishing needs. Moreover, it is often the system of choice for small business or home users who want a professional looking site that\'s simple to deploy and use. <em>We do content right</em>.</p>\r\n<p>So what\'s the catch? How much does this system cost?</p>\r\n<p>Well, there\'s good news ... and more good news! Joomla! 1.5 is free, it is released under an Open Source license - the GNU/General Public License v 2.0. Had you invested in a mainstream, commercial alternative, there\'d be nothing but moths left in your wallet and to add new functionality would probably mean taking out a second mortgage each time you wanted something adding!</p>\r\n<p>Joomla! changes all that ... <br />Joomla! is different from the normal models for content management software. For a start, it\'s not complicated. Joomla! has been developed for everybody, and anybody can develop it further. It is designed to work (primarily) with other Open Source, free, software such as PHP, MySQL, and Apache.</p>\r\n<p>It is easy to install and administer, and is reliable.</p>\r\n<p>Joomla! doesn\'t even require the user or administrator of the system to know HTML to operate it once it\'s up and running.</p>\r\n<p>To get the perfect Web site with all the functionality that you require for your particular application may take additional time and effort, but with the Joomla! Community support that is available and the many Third Party Developers actively creating and releasing new Extensions for the 1.5 platform on an almost daily basis, there is likely to be something out there to meet your needs. Or you could develop your own Extensions and make these available to the rest of the community.</p>','',0,4,0,29,'2008-08-09 07:49:20',62,'','2011-11-30 17:14:18',62,0,'0000-00-00 00:00:00','2006-10-07 10:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',15,0,1,'','',0,0,'robots=\nauthor='),(20,'Tytuvėnų bernardinų vienuolyno ansamblio pritaikymas turizmo reikmėms','tytuvn-bernardin-vienuolyno-ansamblio-pritaikymas-turizmo-reikmms','','<p>Projektas <strong>„Tytuvėnų bernardinų vienuolyno ansamblio pritaikymas turizmo reikmėms“</strong> 2008 m. spalio 27 d. Lietuvos Respublikos ūkio ministro įsakymu  yra įtrauktas į Valstybės planuojamų turizmo projektų, siūlomų finansuoti iš 2007–2013 m. Europos Sąjungos paramos lėšų. Projekto „Tytuvėnų bernardinų vienuolyno ansamblio pritaikymas turizmo reikmėms“.<br /><br />Pagrindinis turizmo traukos objektas, kuris neabejotinai turi didžiulę istorinę, meninę, kultūrinę bei religinę - sakralinę išliekamąją vertę yra nepritaikytas turizmui. Nėra galimybės – skatinti atvykstamąjį ir vietos turizmą, tinkamai išnaudojant unikalų kultūros paminklą, bei sukuriant sąlygas kultūriniam – pažintiniam – piligriminiam turizmui.  Švč. Mergelės Marijos bažnyčios ir bernardinų vienuolyno ansamblis, kurį sudaro net 11 į kultūros vertybių registrą įrašytų atskirų objektų nesuteikia sąlygų tinkamai priimti turistus. Esama paveldo infrastruktūrą nepritaikyta kultūriniam ir paveldo bei piligriminiam turizmui, nėra sukurta pakankama laisvalaikio bei kita infrastruktūra, kas trukdo ateiti privačiam kapitalui, teiksiančiam apgyvendinimo, maitinimo, laisvalaikio ir kitas susijusias paslaugas. Kai kurių kompleksą sudarančių paveldo objektų būklė yra avarinė, todėl neinvestavus į kompleksą,  jų būklė tik blogės.<br /><br />Projekto tikslas: kompleksiškai pritaikyti Tytuvėnų Šv. Mergelės Marijos bažnyčios ir bernardinų vienuolyno ansamblį turizmui, išlaikant objekto unikalumą ir autentiškumą bei sukuriant sąlygas privačioms investicijoms, piligrimystę ir turizmą skatinančioms, palaikančioms bei aptarnaujančioms paslaugoms ir veikloms vykdyti.<br /><br />Projekto uždaviniai, veiklos: atkurti bei sutvarkyti bažnyčios ir vienuolyno komplekso – kultūros paminklo unikaliuosius  ir vertinguosius objektus bei kitą jų infrastruktūrą. Tokiu būdu suformuojamas reikšmingas piligrimų, turistų traukos objektas.<br /><br />Įgyvendinus projektą bus sumažintas turizmo sezoniškumas, kadangi kultūros paveldo objektas vertingas ne tik savo išore bet ir vidaus ekspozicija. Įgyvendinus projektą taip pat būtų išspręsta ir dar viena turizmo sezoniškumo problema, t.y. šiuo metu nėra turizmo informacijos centro, kuris atsirastų ir veiktų uždarose patalpose ištisus metus tuo užtikrindamas piligrimų, turistų sutikimą, ekskursijų organizavimą, turistų ir piligrimų grupių aptarnavimą bet kuriuo metų laiku. Esant aptarnaujančiam personalui būtų galimybė organizuoti renginius, parodas, konferencijas ištisus metus.<br /><br />Gautos paramos lėšos bus panaudojamos avarinės būklės šalinimui, perdangų keitimui, langų ir durų keitimui analogiškomis medžiagomis, muziejaus įkūrimui, vienuolyno celių atkūrimui.<br />Numatoma projekto vertė yra 10 100 000,00 LT</p>','',1,4,0,25,'2011-04-04 11:24:52',62,'','2011-10-31 11:17:00',62,0,'0000-00-00 00:00:00','2011-04-04 11:24:52','0000-00-00 00:00:00','','','show_title=1\nlink_titles=0\nshow_intro=0\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=0\nshow_author=0\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=lt-LT\nkeyref=\nreadmore=',15,0,1,'','',0,10,'robots=\nauthor='),(21,'Joomla! Facts','joomla-facts','','<p>Here are some interesting facts about Joomla!</p><ul><li><span>Over 210,000 active registered Users on the <a href=\"http://forum.joomla.org\" target=\"_blank\" title=\"Joomla Forums\">Official Joomla! community forum</a> and more on the many international community sites.</span><ul><li><span>over 1,000,000 posts in over 200,000 topics</span></li><li>over 1,200 posts per day</li><li>growing at 150 new participants each day!</li></ul></li><li><span>1168 Projects on the JoomlaCode (<a href=\"http://joomlacode.org/\" target=\"_blank\" title=\"JoomlaCode\">joomlacode.org</a> ). All for open source addons by third party developers.</span><ul><li><span>Well over 6,000,000 downloads of Joomla! since the migration to JoomlaCode in March 2007.<br /></span></li></ul></li><li><span>Nearly 4,000 extensions for Joomla! have been registered on the <a href=\"http://extensions.joomla.org\" target=\"_blank\" title=\"http://extensions.joomla.org\">Joomla! Extension Directory</a>  </span></li><li><span>Joomla.org exceeds 2 TB of traffic per month!</span></li></ul>','',0,5,0,30,'2008-08-09 16:46:37',62,'','2008-08-09 16:46:37',62,0,'0000-00-00 00:00:00','2006-10-07 14:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',13,0,1,'','',0,50,'robots=\nauthor='),(22,'Piligrimai','piligrimai','','<p><strong>Piligrimystė</strong></p>\r\n<p>Piligrimystė į šventas vietas vyksta nuo seniausių laikų. Šis reiškinys yra paplitęs visose svarbiausiose pasaulio religijose. Piligriminės kelionės – tai pirmosios žmonijos kelionės, kurių nelėmė išgyvenimo būtinumas.</p>\r\n<p>Kas yra piligrimystė? Kodėl milijonai žmonių ištisus metus keliauja į šventas vietas? Kokios vietos laikomos šventomis ir kur yra pagrindiniai piligriminiai centrai? Piligrimystė yra vienas iš žmonių judėjimo erdvėje tipų – kelionė į šventą erdvę. Krikščionybėje piligrimystė vertinama kaip savanoriškas pasišventimo aktas.</p>\r\n<p>Piligrimų kelionės tikslas – šventa vieta ar šventas objektas. Tokiose vietose jaučiamas dieviškumas ar šventybė. Piligrimystės vietos dažniausiai yra tos, kurios susijusios su religijos atsiradimu (Jeruzalė, Betliejus), jos įkūrėjų, pranašų ar šventųjų gyvenimu. Šventos vietos – tai ir tos vietos, kur konkretus žmogus patyrė apsireiškimą (ar čia įvyko kitas stebuklas), pvz., Švč. Mergelės Marijos apsireiškimų vietos Gvadelupoje, Lurde, Fatimoje, Knoke, Mejugorjėje ir kt. Piligriminėse vietose saugomos šventųjų relikvijos, šventi paveikslai, ikonos, skulptūros. Šventose vietose būna palaidoti šventi žmonės (šv. Jokūbo kapas Santjago de Komposteloje).</p>\r\n<p>Kitos piligrimystės vietos – tai administraciniai religijos centrai (Vatikanas). Katalikų Bažnyčia sąvoka šventovė nusako „bažnyčią ar kitą šventą vietą, kur tikintieji gausiai atlieka maldingas keliones skatinamo ypatingų religinių motyvų pritariant vietos ordinarui“.<br />Pakeliui į konkrečią vietovę piligrimai aplanko vis daugiau religinės svarbos vietų. Tokios vietos (bažnyčios, vienuolynai) simboliškai žymi piligrimų kelią iš profanum į sacrum pasaulį.</p>\r\n<p>Piligriminės kelionės žinomos visose pasaulio religijose. Anksčiausieji duomenys apie piligrimystę mus pasiekia iš Mesopotamijos. Gilgamešo epe, didvyris Gilgamešas, norįs būti nemirtingas, keliauja pas išmintingąjį Utnapištį. XIX a. prieš Kristų Asirų karalius Šalmaneseras III keliavo į Babilono ir Borsipos šventyklas.</p>\r\n<p>Senovės Egipte į pagrindinių dievų šventoves per kasmetines šventes susirinkdavo milžiniškos žmonių minias. Tokių švenčių metu vykdavo procesijos upėmis arba miesto gatvėmis. Antikinėje Graikijoje daug piligrimų, ypač per olimpines žaidynes, keliaudavo į Dzeuso šventovę Olimpijoje.</p>\r\n<p>Krikščionybėje piligrimystės reiškinys atsiskleidžia ryškiausiai. Pirmieji keikščionių piligrimai buvo Trys karaliai, aplankę kūdikėlį Jėzų.<br />Žmonės jau nuo II amžiaus keliauja į Romą, kur buvo nukankinti šventieji Petras ir Paulius. Krikščioniškos piligrimystės į Jeruzalę ir kitus Šventos Žemės miestus įsitvirtino jau III amžiuje ir ypač sustiprėjo, imperatoriui Konstantinui 313 m. Romos imperijoje legalizavus krikščionybę.<br />Piligriminės kelionės ypač populiarios tarp katalikų. Didžiausi krikščionių piligriminiai centrai beveik išskirtinai priklauso Romos Katalikų bažnyčiai. Didžiulės minios piligrimų keliauja į Romą ar į Mergelės Marijos apsireiškimų vietas Lurde (1858 m.), Fatimoje (1917 m.) Ten paliktos žmogaus kūno dalių kopijas iš medžio bei metalo (votai) simbolizuoja stebuklingą išgijimą ar išsigelbėjimą.</p>\r\n<p>Piligrimystė turi ir simbolinę reikšmę. Tai kelionė ne tik į išoriškai apčiuopiamą vietą, bet taip pat kelionė į save savo vidaus erdves. Piligriminė kelionė išsilaisvinimo ir apsivalymo kelias, kurį perėjęs maldininkas persikelia iš žemiško pasaulio į šventybės karalystę.<br /><br /><br /><strong>Jono Pauliaus II piligrimų kelias</strong><br /><br />(2007 m. rugpjūčio 12 d.) <br />Vyriausybė 2007 m. rugpjūčio 8 d. patvirtino Jono Pauliaus II piligrimų kelio programą. Objektai, kuriuose lankėsi Lietuvoje 1993 m. viešėjęs popiežius Jonas Paulius II, arba kurie vienaip ar kitaip susiję su jo veikla sujungti į vieną piligriminį kelią. Juos numatoma pritaikyti piligrimų reikmėm, kad atvykę piligrimai ir turistai juos lankydami galėtų rasti reikalingą viešą infrastruktūrą.</p>\r\n<p>Į Jono Pauliaus II piligrimų kelią įtraukta: Vilniaus arkikatedra bazilika, Aušros Vartų koplyčia ir Šv. Teresės bažnyčia, Vilniaus Kryžiaus kelias (Vilniaus Kalvarijos), Trakų gotikinė Švč. Mergelės Marijos Apsilankymo parapinė bažnyčia, Kauno arkikatedra bazilika, Kauno Kristaus Prisikėlimo bažnyčia, Pažaislio kamaldulių vienuolyno ansamblis, Šiluvos Švč. Mergelės Marijos Gimimo bazilika ir Šiluvos Švč. Mergelės Marijos Apsireiškimo koplyčia bei tarp jų esanti teritorija, Kryžių kalnas, Šiaulių katedra, Tytuvėnų bažnyčios ir vienuolyno ansamblis, Marijampolės bazilika ir palaimintojo Jurgio Matulaičio koplyčia jo tėviškėje Lūginėje, Žemaičių Kalvarijos Švč. Mergelės Marijos apsilankymo bazilika ir Kryžiaus kelio koplyčios, Pivašiūnų Švč. Mergelės Marijos Ėmimo į dangų bažnyčia.</p>','',1,5,0,30,'2011-04-08 06:38:34',62,'','2011-10-31 11:26:12',62,0,'0000-00-00 00:00:00','2011-04-08 06:38:34','0000-00-00 00:00:00','','','show_title=1\nlink_titles=0\nshow_intro=0\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=0\nshow_author=0\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=lt-LT\nkeyref=\nreadmore=',12,0,2,'','',0,333,'robots=\nauthor='),(23,'Ekskursijos','ekskursijos','','<p> </p>\r\n<p>Siūlome maloniai praleisti laiką Tytuvėnų miestelyje ir jo apylinkėse, kur galima pasimėgauti miškų ošimu, ežerų gaiva ir nuostabia aplinka. O norinčius istorinių kultūrinių žinių kviečiame į Tytuvėnų bernardinų vienuolyno ansamblį.<br />Vienuolyno komplekse praleisti laiką gali įvairaus amžiaus piligrimai, keliautojai, turistai. Lankytojus sudomins išsami Tytuvėnų bernardinų vienuolyno istorija ir didingų vargonų koncertas.<br /><br />VšĮ „Tytuvėnų piligrimų centras“ siūlo šias paslaugas:</p>\r\n<ul>\r\n<li>ekskursijas po Tytuvėnų miestelį,</li>\r\n<li>ekskursijas po Tytuvėnų bernardinų vienuolyną,</li>\r\n<li>ekskursijas po Kelmės rajono lankomus objektus,</li>\r\n<li>individualių maršrutų sudarymą,</li>\r\n<li>biuro paslaugas.</li>\r\n</ul>\r\n<p><br />Lankytojai aptarnaujami nuo pirmadienio iki penktadienio   8:00 – 17:00 valandomis.<br />Šeštadieniais, sekmadieniais ir po darbo valandų Tytuvėnų bernardinų vienuolynas lankomas pagal susitarimą. Siekiant užtikrinti gerą mūsų paslaugų kokybę, ekskursijas rekomenduojame užsisakyti iš anksto. Skambinkite telefonu 8 678 77676.</p>\r\n<p><strong>Kviečiame atvykti su savo grupe susikaupimo dienoms, rekolekcijoms, seminarams.</strong></p>\r\n<p><br />Tytuvėnų piligrimų centro lankytojams teikiamų paslaugų įkainiai:</p>\r\n<ul>\r\n<li>Viso ansamblio lankymas-vieno bilieto kaina suaugusiam – 10 Lt.</li>\r\n<li>Viso ansamblio lankymas -vieno bilieto kaina vaikui – 5 Lt.</li>\r\n<li>Viso ansamblio lankymas be muziejaus-vieno bilieto kaina suaugusiam – 6 Lt. </li>\r\n<li>Viso ansamblio lankymas be muziejaus-vieno bilieto kaina vaikui – 3 Lt.</li>\r\n<li>Muziejaus ir vienuolyno lankymas- vieno bilieto kaina suaugusiam – 7 Lt.</li>\r\n<li>Muziejaus ir vienuolyno lankymas-vieno bilieto kaina vaikui – 3,5 Lt.</li>\r\n<li>Vienuolyno lankymas -vieno bilieto kaina suaugusiam – 3 Lt.</li>\r\n<li>Vienuolyno lankymas -vieno bilieto kaina vaikui – 1,5 Lt.</li>\r\n<li>Išplėstinė edukacinė programa asmeniui – 30 Lt.</li>\r\n<li>Pusė išplėstinės edukacinės programos asmeniui – 15 Lt.</li>\r\n<li>Ekskursijų dalyvių vaišinimas arbata asmeniui – 3 Lt.</li>\r\n<li>Fotosesijos (vestuvių ir kt.progomis) vienuolyne ir vienuolyno kiemelyje mokestis – 50 Lt.</li>\r\n<li>Gido paslaugos: <br /> grupei iki 20 asmenų – 30 Lt,<br /> grupei iki 50 asmenų – 50 Lt,<br /> ekskursija užsienio kalba – 100 Lt,<br /> apžvalginės ekskursijos trukmė – viena valanda.</li>\r\n</ul>\r\n<p>Pensininkams ir neįgaliems asmenims bilietui taikoma 50 % nuolaida.<br />Lietuvos Respublikos muziejininkai, Tarptautinės muziejų tarybos (ICOM) nariai muziejų lanko nemokamai.<br />Asmenys, kuriems taikytinos nuolaidos, prieš pirkdami bilietą privalo pateikti nuolaidas suteikiantį pažymėjimą.<br />Pamaldų metu ekskursijos banyčioje nevedamos.<br />Ansamblio teritorijoje renginių ir ekskursijų metu nerūkoma, nevartojami svaigieji gėrimai, netriukšmaujama, nešiukšlinama, nesinaudojama mobiliaisiais telefonais, nefotografuojama su blykstėmis neleistinose vietose, nefilmuojama be leidimo.</p>\r\n<p>Ekskursijas veda 1 kategorijos gidė Rūta Krencienė.<br />Visais klausimais dėl ekskursijų prašome kreiptis telefonu 8 678 77676, el. p. ruta@tytuvenai.eu</p>','',1,9,0,32,'2011-04-14 10:34:17',62,'','2011-12-25 14:33:21',62,0,'0000-00-00 00:00:00','2011-04-14 10:34:17','0000-00-00 00:00:00','','','show_title=1\nlink_titles=0\nshow_intro=0\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=0\nshow_author=0\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=lt-LT\nkeyref=\nreadmore=',14,0,4,'','',0,666,'robots=\nauthor='),(24,'Content Layouts','content-layouts','','<p>Joomla! provides plenty of flexibility when displaying your Web content. Whether you are using Joomla! for a blog site, news or a Web site for a company, you\'ll find one or more content styles to showcase your information. You can also change the style of content dynamically depending on your preferences. Joomla! calls how a page is laid out a <strong>layout</strong>. Use the guide below to understand which layouts are available and how you might use them.</p>\r\n<h2>Content</h2>\r\n<p>Joomla! makes it extremely easy to add and display content. All content is placed where your mainbody tag in your template is located. There are three main types of layouts available in Joomla! and all of them can be customised via parameters. The display and parameters are set in the Menu Item used to display the content your working on. You create these layouts by creating a Menu Item and choosing how you want the content to display.</p>\r\n<h3>Blog Layout</h3>\r\n<p>Blog layout will show a listing of all Articles of the selected blog type (Section or Category) in the mainbody position of your template. It will give you the standard title, and Intro of each Article in that particular Category and/or Section. You can customise this layout via the use of the Preferences and Parameters, (See Article Parameters) this is done from the Menu not the Section Manager!</p>\r\n<h3>Blog Archive Layout</h3>\r\n<p>A Blog Archive layout will give you a similar output of Articles as the normal Blog Display but will add, at the top, two drop down lists for month and year plus a search button to allow Users to search for all Archived Articles from a specific month and year.</p>\r\n<h3>List Layout</h3>\r\n<p>Table layout will simply give you a <em>tabular </em>list<em> </em>of all the titles in that particular Section or Category. No Intro text will be displayed just the titles. You can set how many titles will be displayed in this table by Parameters. The table layout will also provide a filter Section so that Users can reorder, filter, and set how many titles are listed on a single page (up to 50)</p>\r\n<h2>Wrapper</h2>\r\n<p>Wrappers allow you to place stand alone applications and Third Party Web sites inside your Joomla! site. The content within a Wrapper appears within the primary content area defined by the \"mainbody\" tag and allows you to display their content as a part of your own site. A Wrapper will place an IFRAME into the content Section of your Web site and wrap your standard template navigation around it so it appears in the same way an Article would.</p>\r\n<h2>Content Parameters</h2>\r\n<p>The parameters for each layout type can be found on the right hand side of the editor boxes in the Menu Item configuration screen. The parameters available depend largely on what kind of layout you are configuring.</p>','',0,4,0,29,'2008-08-12 22:33:10',62,'','2011-11-30 17:15:36',62,0,'0000-00-00 00:00:00','2006-10-11 06:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',13,0,4,'','',0,0,'robots=\nauthor='),(25,'Kur apsistoti','kur-apsistoti','','<p style=\"text-align: center;\"><strong>KAIMO TURIZMO SODYBOS, POILSIO NAMAI IR MOTELIAI TYTUVĖNUOSE</strong><br /><br /></p>\r\n<p style=\"text-align: left;\"><strong>Poilsiavietė „Sedula“</strong></p>\r\n<p>Poilsiavietė įsikūrusi ant Bridvaišio ežero kranto, patogioje geografinėje vietovėje - 20 km nuo pagrindinio kelio Kaliningradas - Ryga, Tytuvėnų regioniniame parke. Šalia - žymusis Šiluvos miestelis.<br /><br />Pagrindiniame pastate veikia 100 vietų restoranas, 22 vietų banketų salė, 24 vietų viešbutis, 70 vietų konferencijų salė. Yra penki žiemos tipo tekintų rąstų poilsio nameliai - 25 vietos su visu aptarnavimu, 13 vasaros tipo namelių - 86 vietos, nauja pirtis ant ežero kranto, kempingas (vanduo, elektra, WC).</p>\r\n<p><span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"> </span><a href=\"files/UserImages/DSCF0101_1.JPG\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/DSCF0101_1.JPG\" border=\"0\" alt=\"DSCF0101_1.JPG\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a> <span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"><a href=\"files/UserImages/IMG_1437.jpg\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/IMG_1437.jpg\" border=\"0\" alt=\"IMG_1437.jpg\" width=\"176\" height=\"132\" style=\"border: 0;\" /> </a></span><a href=\"files/UserImages/IMG_1437.jpg\" rel=\"lytebox[1]\"><span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"> </span></a><a href=\"files/UserImages/IMG_1430.jpg\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/IMG_1430.jpg\" border=\"0\" alt=\"IMG_1430.jpg\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a> <span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"> </span></p>\r\n<p>Sezono metu veikia 35 m ilgio vandens čiuožykla, yra tramplinas, galima plaukioti valtimis, vandens dviračiais. Sporto aikštyne nuolat lankosi aktyvaus laisvalaikio mėgėjai.</p>\r\n<p>Adresas:</p>\r\n<ul>\r\n<li>Skogalio k., Tytuvėnai, Kelmės raj.</li>\r\n<li>Tel. 8427 56795 , mob. tel. 8 698 27549</li>\r\n<li>El. paštas: vadybininkas@sedula.lt </li>\r\n<li>Internetinė svetainė: <a href=\"http://www.sedula.lt\" target=\"_blank\">www.sedula.lt</a></li>\r\n</ul>\r\n<p> </p>\r\n<hr title=\"Puslapis 2\" class=\"system-pagebreak\" />\r\n<p><strong>J. Dambrauskienės svečių namai</strong><br /><br />Miestelio, kurį supa ežeras ir pušynas, centre. Aktyvus arba ramus poilsis Tytuvėnų regioninio parko teritorijoje.</p>\r\n<p style=\"text-align: justify; line-height: normal; font-weight: bold;\"><span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"><a href=\"files/UserImages/IMG_1409.jpg\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/IMG_1409.jpg\" border=\"0\" alt=\"IMG_1409.jpg\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a> <a href=\"files/UserImages/IMG_1407.jpg\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/IMG_1407.jpg\" border=\"0\" alt=\"IMG_1407.jpg\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a> </span></p>\r\n<p>Adresas: <span style=\"text-decoration: underline;\"><br /></span></p>\r\n<ul>\r\n<li>Basanavičiaus g. 2a, Tytuvėnai, Kelmės raj.</li>\r\n<li>Tel. 8427 56059 , mob. 8 687 13183</li>\r\n<li>El. paštas: turizmas@tai.lt</li>\r\n<li>Internetinė svetainė: <a href=\"http://www.turizmas.tai.lt\" target=\"_blank\">http://www.turizmas.tai.lt</a></li>\r\n</ul>\r\n<p style=\"text-align: left; line-height: normal; font-weight: bold;\"> </p>\r\n<hr title=\"Puslapis 3\" class=\"system-pagebreak\" />\r\n<p><strong>Poilsiavietė prie Giliaus ežero</strong><br /><br />Nameliai, krepšinio, tinklinio aikštė.</p>\r\n<p style=\"text-align: justify; line-height: normal;\"><span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"><a href=\"files/UserImages/IMG_1416.jpg\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/IMG_1416.jpg\" border=\"0\" alt=\"IMG_1416.jpg\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a></span></p>\r\n<p>Adresas:</p>\r\n<ul>\r\n<li>Tytuvėnai, Kelmės raj.</li>\r\n<li>Tel.: 8 427 56991, mob. tel.: 8 611 30487</li>\r\n<li>El. paštas: nėra</li>\r\n<li>Internetinė svetainė: <a href=\"http://nameliai.ten.lt\" target=\"_blank\">http://nameliai.ten.lt</a></li>\r\n</ul>\r\n<p> </p>\r\n<hr title=\"Puslapis 4\" class=\"system-pagebreak\" />\r\n<p><strong>Motelis „Samana“</strong><br /><br />Kavinė, gidų paslaugos, automobilių stovėjimo aikštelė. Svečius priima visus metus.</p>\r\n<p style=\"text-align: justify; line-height: normal;\"><span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"><a href=\"files/UserImages/IMG_1412.jpg\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/IMG_1412.jpg\" border=\"0\" alt=\"IMG_1412.jpg\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a></span></p>\r\n<p>Adresas:</p>\r\n<ul>\r\n<li>Taikos g. 2, Tytuvėnai, Kelmės raj.</li>\r\n<li>Tel.: 8 427 56249, faks.: 8 427 56249, mob.: 8 618 70718</li>\r\n<li>El. paštas: nėra</li>\r\n<li>Internetinė svetainė: nėra</li>\r\n</ul>\r\n<p> </p>\r\n<hr title=\"Puslapis 5\" class=\"system-pagebreak\" />\r\n<p><strong>Kempingas prie Gauštvinio ežero</strong></p>\r\n<p><span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"><a href=\"files/UserImages/IMG_1452.jpg\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/IMG_1452.jpg\" border=\"0\" alt=\"IMG_1452.jpg\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a> </span><a href=\"files/UserImages/IMG_1452.jpg\" rel=\"lytebox[1]\"><span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"> </span></a><a href=\"files/UserImages/IMG_1455.jpg\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/IMG_1455.jpg\" border=\"0\" alt=\"IMG_1455.jpg\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a></p>\r\n<p>Adresas:</p>\r\n<ul>\r\n<li>Pagauštvinio k., Tytuvėnų apyl. sen., Kelmės raj.</li>\r\n<li>Tel.:8427 59030</li>\r\n<li>El. paštas: nėra</li>\r\n<li>Internetinė svetainė: nėra</li>\r\n</ul>\r\n<p> </p>\r\n<p><strong><span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"> </span></strong>\r\n<p> </p>\r\n<p style=\"text-align: justify; line-height: normal;\"><strong>„Seserų viensėdis“</strong><br /><br />Nepakartojamas Dubysos regioninio parko grožis, tyras kaip krištolas upės ir sodybos tvenkinių vandens gaivumas, aplinkinių laukų platumos, tolimo miško ošimas, gyvenimo sąlygų komfortas leis pamiršti kasdienius rūpesčius, atgauti jėgas, praturtinti sielą.<br /><br />Sodyboje poilsiautojai laukiami ištisus metus. Čia ideali vieta rengti seminarus, darbuotojų mokymus su modernia įranga. Yra pokylių salė su židiniu, kurioje gali patogiai jaustis apie 60 žmonių, ir kambariai saldžiam ir ramiam miegui. Kaimiška pirtis ir erdvi šokių salė.<br /><br />Sodyba yra kelyje Kelmė - Tytuvėnai, prieš ženklą Bulavėnai (5 km nuo pagrindinio kelio).</p>\r\n<p style=\"text-align: justify; line-height: normal;\"><span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"><a href=\"files/UserImages/1947.jpg\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/1947.jpg\" border=\"0\" alt=\"1947.jpg\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a></span> <span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"><a href=\"files/UserImages/1938.jpg\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/1938.jpg\" border=\"0\" alt=\"1938.jpg\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a></span> <span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"><a href=\"files/UserImages/IMG_5893.jpg\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/IMG_5893.jpg\" border=\"0\" alt=\"IMG_5893.jpg\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a></span> <span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"> </span></p>\r\n<p>Adresas:</p>\r\n<ul>\r\n<li>Tytuvėnų apylinkių seniūnija, Kelmės raj.</li>\r\n<li>Tel.: +370 614 75 087</li>\r\n<li>El. paštas: seseruviensedis@puslapiai.lt </li>\r\n<li>Internetinė svetainė: nėra</li>\r\n</ul>\r\n<p><span style=\"line-height: 115%;\"> </span></p>\r\n<p style=\"text-align: left; line-height: normal; font-weight: bold;\"> </p>\r\n<hr title=\"Puslapis 7\" class=\"system-pagebreak\" />\r\n<p><strong>Kaimo turizmo sodyba „5 Sezonas“</strong><br /><br />Moderni kaimo turizmo sodyba ribojasi su Dubysos upe. Labai graži, vaizdinga vietovė, atsiveria visa Padubysio erdvė. Nameliai išdėstyti kalne, tai suteikia dar didesnį erdvės pojūtį. Šiltuoju sezonu ant pagrindinio namo stogo įrengiama įspūdingo dydžio lauko terasa. Visa teritorija apšviesta, takeliai ir automobilių stovėjimo aikštelė iškloti trinkelėmis.<br /><br />Poilsio kompleksą sudaro pagrindinis namas bei trys atskiri šeimyniniam poilsiui pritaikyti nameliai. Pagrindiniame name yra konferencijų ir pokylių salė su reikalinga įranga, penki poilsiui pritaikyti numeriai su mini virtuvėmis ir kiekvienam kambariui skirtu WC ir dušu, rūsyje - turkiška pirtis, baseinas su masažine srove; biliardo stalas. Kiekvienas kambarys turi atskirą terasą su lauko baldais.<br /><br />Kiekviename namelyje įrengta virtuvė, poilsio zona, WC ir dušo kabinos. Visi nameliai turi didelę lauko terasą su vaizdu, atsiveriančiu į upę. Nameliai išdėstyti taip, kad lankytojai turėtų kuo daugiau privatumo.</p>\r\n<p style=\"text-align: justify; line-height: normal;\"><span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"><a href=\"files/UserImages/IMG_0554.jpg\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/IMG_0554.jpg\" border=\"0\" alt=\"IMG_0554.jpg\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a> </span><span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"> </span><span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"><a href=\"files/UserImages/IMG_9651_resize.JPG\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/IMG_9651_resize.JPG\" border=\"0\" alt=\"IMG_9651_resize.JPG\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a> </span><span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"> </span><span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"><a href=\"files/UserImages/IMG_9788_resize.JPG\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/IMG_9788_resize.JPG\" border=\"0\" alt=\"IMG_9788_resize.JPG\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a></span><span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"> </span></p>\r\n<p>Adresas:</p>\r\n<ul>\r\n<li>Rėžalių km., Tytuvėnų apylinkės seniūnija, Kelmės rajonas</li>\r\n<li>Tel.: +370 611 16797</li>\r\n<li>El. paštas: info@5sezonas.lt</li>\r\n<li>Internetinė svetainė: <a href=\"http://www.5sezonas.lt\" target=\"_blank\">www.5sezonas.lt</a></li>\r\n</ul>\r\n<p> </p>\r\n<hr title=\"Puslapis 8\" class=\"system-pagebreak\" />\r\n<p style=\"text-align: center; line-height: normal; font-weight: bold;\">KAIMO TURIZMO SODYBOS, POILSIO NAMAI IR MOTELIAI KELMĖS RAJONE</p>\r\n<p style=\"text-align: left; line-height: normal; font-weight: bold;\"> </p>\r\n<p><strong>Kaimo turizmo sodyba „Ąžuolų slėnis“</strong><br /><br />Sodyba įsikūrusi buvusio dvaro teritorijoje - vienkiemyje, prie legendomis apipinto Kibirkštuko ežero. Čia pateksite vykdami plentu Ryga - Kaliningradas, atkarpoje Šiauliai - Kelmė tarp 81-82 km pasukę į dešinę ir pavažiavę apie 100 metrų (informuoja stendas).<br /><br />Kviečiame paviešėti kolektyvus, šeimas, moksleivių grupes. Siūlome ne tik pasigrožėti nuostabia gamta, karūnuotaisiais danieliais, nepakartojamu ilgakojų stručių šokiu, bet ir organizuoti įvairias šventes, susitikimus, seminarus, konferencijas. Tam skirta salė su baru, svetainė, poilsio kambarys su židiniu. Jums pageidaujant organizuosime šventę ir lauko estradoje, ant Kibirkštuko ežero kranto, pakviesime pamėgtą muzikine grupę ar kapelą.<br /><br />Besidomintiems tautos praeitimi sudarysime galimybę dalyvauti pažintinėje ekskursijoje po vietos apylinkes, papasakosime apie senąją dvarvietę, kur dabar auginami Afrikos stručiai.<br /><br />Norintiems ilgiau paviešėti siūlome 2-4 vietų kambarius, baseiną, pirtį, sūkurinę vonią, žaidimų aikšteles. Ieškantieji romantikos galės įsikurti kempinge ar namelyje ant ratų.<br /><br />Poilsis pliaže, maudynės ežere, valtelės, vandens dviratis, žvejyba, sportas.</p>\r\n<p><br /><span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"><a href=\"files/UserImages/IMG_5755.jpg\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/IMG_5755.jpg\" border=\"0\" alt=\"IMG_5755.jpg\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a></span> <span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"><a href=\"files/UserImages/IMG_1340.jpg\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/IMG_1340.jpg\" border=\"0\" alt=\"IMG_1340.jpg\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a></span> <span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"><a href=\"files/UserImages/azuolu_slenis_1.jpg\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/azuolu_slenis_1.jpg\" border=\"0\" alt=\"azuolu_slenis_1.jpg\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a></span></p>\r\n<p>Adresas:</p>\r\n<ul>\r\n<li>Targauskių km., Kukečių sen., Kelmės r.</li>\r\n<li>Tel.: +37068732737, +37065569720</li>\r\n<li>El. paštas: info@azuoluslenis.lt </li>\r\n<li>Internetinė svetainė: <a href=\"http://www.azuoluslenis.lt\" target=\"_blank\">www.azuoluslenis.lt</a></li>\r\n</ul>\r\n<p style=\"text-align: left; line-height: normal; font-weight: bold;\"> </p>\r\n<hr title=\"Puslapis 9\" class=\"system-pagebreak\" />\r\n<p><strong>Užvenčio malūnas</strong><br /><br />Užvenčio vandens malūno ir spirito varyklos pastatas - vienas iš buvusio Užvenčio dvaro sodybos teritorijoje išlikusių pastatų. Jau 1759 m. Užventyje veikė malūnas ant Ventos upės ir bravoras. Į Ventos tvenkinį šakas sumerkę gluosniai dar mena čia gyvenusią ir vertingiausius savo kūrinius \"Sename dvare\" ir \"Viktutė\" sukūrusią rašytoją Šatrijos Raganą.<br /><br />Šiandien Užvenčio vandens malūnas prikeltas naujam gyvenimui. Atkurta senoji turbina gamina elektros energiją, restauruotos malūno salės laukia pokylio svečių. Įrengtas sveikatingumo kompleksas su baseinu, pirtimi, treniruoklių sale, viešbutis, konferencijų salė. Visa šiaurine Ventos pakrante nuo 2003 m. įrengtas sveikatingumo takas, papuoštas tilteliais ir liaudies meistrų medžio darbais. Einat šiuo taku galima grožėtis nuostabia gamta, netikėtai atsiveriančiomis malūno perspektyvomis ir ypač nuostabiais saulėlydžiais.</p>\r\n<p style=\"text-align: justify; line-height: normal;\"><span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"><a href=\"files/UserImages/2005_08_12_01_005.jpg\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/2005_08_12_01_005.jpg\" border=\"0\" alt=\"2005_08_12_01_005.jpg\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a></span> <span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"><a href=\"files/UserImages/DSCF0038.JPG\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/DSCF0038.JPG\" border=\"0\" alt=\"DSCF0038.JPG\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a></span> <span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"><a href=\"files/UserImages/IMG_5609.jpg\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/IMG_5609.jpg\" border=\"0\" alt=\"IMG_5609.jpg\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a></span></p>\r\n<p>Adresas:</p>\r\n<ul>\r\n<li>Užventis, Kelmės r.</li>\r\n<li>Tel.: +37068214007 - Alvydas, +37068214008 - Milda</li>\r\n<li>El. paštas: <a href=\"mailto:uzvencio-malunas@info.lt\">uzvencio-malunas@info.lt</a></li>\r\n</ul>\r\n<p style=\"text-align: left; line-height: normal; font-weight: bold;\"> </p>\r\n<hr title=\"Puslapis 10\" class=\"system-pagebreak\" />\r\n<p><strong>Kaimo turizmo sodyba „Miego klinika“</strong><br /><br />Sodyba įsikūrusi Kurtuvėnų regioniniame parke. Čia yra: gyvenamasis namas (4 kambariai, 2 iš jų su židiniu, dušas, tualetas viduje), atskira virtuvė, svetainė su židiniu, televizija, radijas, pokylių salė su židiniu (iki 50 vietų), pavėsinė, pirtis, 2 tvenkiniai, lauko židinys, vaikų žaidimų aikštelė, sūpuoklės.<br /><br />Netrūksta pramogų nei vaikams, nei suaugusiesiems. Siūlome pasivažinėti keturračiais ar dviračiais apylinkės keliais, pajodinėti žirgais, pažaisti krepšinį, išsimaudyti pirtyje, tvenkinyje. Norintieji gali uogauti, grybauti šalia esančiuose miškuose. Čia rasite visa, ko reikia: tylą, ramybę, atgaivą kūnui ir sielai.</p>\r\n<p style=\"text-align: justify; line-height: normal;\"><span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"><a href=\"files/UserImages/_MG_3601.jpg\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/_MG_3601.jpg\" border=\"0\" alt=\"_MG_3601.jpg\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a></span> <span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"><a href=\"files/UserImages/_MG_3670.jpg\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/_MG_3670.jpg\" border=\"0\" alt=\"_MG_3670.jpg\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a></span> <span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"><a href=\"files/UserImages/_MG_3496.jpg\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/_MG_3496.jpg\" border=\"0\" alt=\"_MG_3496.jpg\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a></span></p>\r\n<p>Adresas:</p>\r\n<ul>\r\n<li>Raudsparnės km, Kelmės r.</li>\r\n<li>Tel.: +370 612 22203</li>\r\n<li>El. paštas: info@miegoklinika.lt </li>\r\n<li>Internetinė svetainė: <a href=\"http://www.miegoklinika.lt\" target=\"_blank\">www.miegoklinika.lt</a></li>\r\n</ul>\r\n<p> </p>\r\n<p><strong><span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"> </span></strong>\r\n<p> </p>\r\n<p style=\"text-align: justify; line-height: normal;\"><strong>„Liepynė“</strong><br /><br />Sodyba įsikūrusi unikaliame gamtos kampelyje, ją supantys miškai ir laukai garantuoja gamtos ramybę, oro gaivumą, sielos ramumą. Šiuo metu sodyba dar kuriasi, numatoma jos veiklos pradžia - 2009 m. Galėsime pasiūlyti Jums unikalią pirtį, įrengtą tvenkinio viduryje plaukiojančiame laive, vėlyvais vakarais šildys jauki pavėsinė su neįprastu židiniu. Pobūviams ir vakarėliams turime puikią salę. Mūsų sodyba - Jūsų gera nuotaika.</p>\r\n<p style=\"text-align: justify; line-height: normal;\"><span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"><a href=\"files/UserImages/IMG_5832.jpg\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/IMG_5832.jpg\" border=\"0\" alt=\"IMG_5832.jpg\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a></span> <span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"><a href=\"files/UserImages/DSCF1669.JPG\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/DSCF1669.JPG\" border=\"0\" alt=\"DSCF1669.JPG\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a></span> <span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"><a href=\"files/UserImages/IMG_5842.jpg\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/IMG_5842.jpg\" border=\"0\" alt=\"IMG_5842.jpg\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a></span></p>\r\n<p>Adresas:</p>\r\n<ul>\r\n<li>Kuzokų k., Liolių sen., Kelmės r.</li>\r\n<li>Mob.: +370 614 90 097</li>\r\n<li>El. paštas: ekokuras@gmail.com</li>\r\n<li>Internetinė svetainė: nėra</li>\r\n</ul>\r\n<p style=\"text-align: left; line-height: normal; font-weight: bold;\"> </p>\r\n<p><strong></strong>\r\n<p> </p>\r\n<p style=\"text-align: justify; line-height: normal;\"><strong>„Akmenukė“</strong><br /><br />Nuomojama sodyba. Nuo Šiaulių važiuojant senuoju keliu Kelmės link rasite rojaus kampelį, kurį kelių kilometrų spinduliu supa Bijotės, Pagėluvio, Dūkšto ežerai, kiti vandens telkiniai, miškai. Labai geras privažiavimas, 1 km nuo senojo Kelmės plento. Moderni ir erdvi 100 m² pokylių salė, židinys, muzika, koncertiniai šviesos efektai, gera garso akustika. Karštą vasarą atvėsins ventiliatoriai, yra šviestuvai, prie salės yra lauko terasa, erdvi virtuvė su visa įranga. Atskirame pastate miegamieji. 0,7 ha kiemas su gėlynais ir gėlinėmis, lauko židiniai, pirtis, tvenkinys, kuriame malonu atsigaivinti po pirties.</p>\r\n<p style=\"text-align: justify; line-height: normal;\"><span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"><a href=\"files/UserImages/IMG_1322.jpg\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/IMG_1322.jpg\" border=\"0\" alt=\"IMG_1322.jpg\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a></span> <span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"><a href=\"files/UserImages/akmenuke1.jpg\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/akmenuke1.jpg\" border=\"0\" alt=\"akmenuke1.jpg\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a></span> <span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"><a href=\"files/UserImages/akmenuke2.jpg\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/akmenuke2.jpg\" border=\"0\" alt=\"akmenuke2.jpg\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a></span></p>\r\n<p>Adresas:</p>\r\n<ul>\r\n<li>Kumpiškės kaimas, Kukečių seniūnija, Kelmės raj.</li>\r\n<li>Tel. +370 685 60 136</li>\r\n<li>El. paštas: nėra</li>\r\n<li>Internetinė svetainė: <a href=\"http://www.akmenuke.puslapiai.lt\" target=\"_blank\">www.akmenuke.puslapiai.lt</a></li>\r\n</ul>\r\n<p> </p>\r\n<p style=\"text-align: left; line-height: normal; font-weight: bold;\"> </p>\r\n<hr title=\"Puslapis 13\" class=\"system-pagebreak\" />\r\n<p><strong>„Miško užeiga“</strong><br /><br />Pasiilgote miško kvapo, miško apsupties, ramybės? Tuomet mūsų sodyba kaip tik Jums. Galime pasiūlyti pokylių salę, miegamąsias vietas, pirtį, baseiną. Šalia esančiame miške galima grybauti, uogauti, galėsite pasimėgauti mūsų auginamos meškutės draugija.</p>\r\n<p style=\"text-align: justify; line-height: normal;\"><span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"><a href=\"files/UserImages/IMG_5806.jpg\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/IMG_5806.jpg\" border=\"0\" alt=\"IMG_5806.jpg\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a></span></p>\r\n<p>Adresas:</p>\r\n<ul>\r\n<li>LT-86427, Kryžbarko k., Kelmės apylinkių sen., Kelmės r.</li>\r\n<li>Tel.: 8 (699) 53261</li>\r\n<li>El. paštas: nėra</li>\r\n<li>Internetinė svetainė: nėra</li>\r\n</ul>\r\n<p> </p>\r\n<p style=\"text-align: left; line-height: normal; font-weight: bold;\"> </p>\r\n<p><strong><span style=\"font-size: x-small;\"></span></strong>\r\n<p> </p>\r\n<p style=\"text-align: justify; line-height: normal;\"><strong>„Petrališkė“</strong><br /><br />Svečių namuose turėsite galimybę maloniai ir smagiai praleisti laiką. Pokylių salė, nakvynė, baseinas, pirtis, lauko estrada, geras ir malonus aptarnavimas.</p>\r\n<p style=\"text-align: justify; line-height: normal;\"><span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"><a href=\"files/UserImages/IMG_1476.JPG\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/IMG_1476.JPG\" border=\"0\" alt=\"IMG_1476.JPG\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a></span> <span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"><a href=\"files/UserImages/IMG_1475.JPG\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/IMG_1475.JPG\" border=\"0\" alt=\"IMG_1475.JPG\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a></span></p>\r\n<p>Adresas:</p>\r\n<ul>\r\n<li>Petrališkės k., Kražių sen., Kelmės r.</li>\r\n<li>Tel.: +370 677 07 953</li>\r\n<li>El. paštas: nėra</li>\r\n<li>Internetinė svetainė: nėra</li>\r\n</ul>\r\n<p> </p>\r\n<div>\r\n<p align=\"left\"> </p>\r\n<hr title=\"Puslapis 15\" class=\"system-pagebreak\" />\r\n<strong><span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"> </span></strong>\r\n<p align=\"left\"><strong>Liucijos Pauliukėnienės sodyba</strong><br /><br />Tekintų rąstų, 50 kvadratinių metrų namelis su visais patogumais. Siūlome žvejoti, grybauti, uogauti. Nuomojame30 vietų salę šventėms. Maloniai laukiame!</p>\r\n<p align=\"left\"><span style=\"font-family: tahoma,arial,helvetica,sans-serif;\"><span style=\"font-size: x-small;\"><a href=\"files/UserImages/506_400x500_1_.jpg\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/506_400x500_1_.jpg\" border=\"0\" alt=\"506_400x500_1_.jpg\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a></span></span> <span style=\"font-family: tahoma,arial,helvetica,sans-serif;\"><span style=\"font-size: x-small;\"><a href=\"files/UserImages/IMG_5626.jpg\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/IMG_5626.jpg\" border=\"0\" alt=\"IMG_5626.jpg\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a></span></span> <span style=\"font-family: tahoma,arial,helvetica,sans-serif;\"><span style=\"font-size: x-small;\"><a href=\"files/UserImages/IMG_5629.jpg\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/IMG_5629.jpg\" border=\"0\" alt=\"IMG_5629.jpg\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a></span></span></p>\r\nAdresas:   <br />\r\n<ul>\r\n<li>Vaiguva, Kelmės r.</li>\r\n<li>Tel.:  +370 427 48 222, Mob.: +370 612 34 819</li>\r\n<li>El. paštas: nėra</li>\r\n<li>Internetinė svetainė: nėra</li>\r\n</ul>\r\n</div>\r\n<div><span style=\"font-family: tahoma,arial,helvetica,sans-serif;\"><span style=\"font-size: x-small;\"> </span></span><br /><span style=\"font-family: tahoma,arial,helvetica,sans-serif;\"><span style=\"font-size: x-small;\"><strong>\r\n<hr title=\"Puslapis 16\" class=\"system-pagebreak\" />\r\n</strong></span></span></div>\r\n<div><span style=\"font-family: tahoma,arial,helvetica,sans-serif;\"><span style=\"font-size: x-small;\"><strong><br /></strong></span></span></div>\r\n<div><strong>„Prienų vienkiemis“</strong><br /><br />Sodyba neįprastu pavadinimu suintriguoja daugelį poilsiautojų. Čia gali ilsėtis visi norintieji pasimėgauti ramybe, nuostabia gamta. Pokylių salė puošta etnokultūros elementais. Sodybai teikia šilumą jos stilius, malonūs šeimininkai ir aplinką supantys medžiai.</div>\r\n<div><span style=\"font-family: tahoma,arial,helvetica,sans-serif;\"><span style=\"font-size: x-small;\"><a href=\"files/UserImages/IMG_5847.jpg\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/IMG_5847.jpg\" border=\"0\" alt=\"IMG_5847.jpg\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a></span></span> <a href=\"files/UserImages/IMG_5848_1.jpg\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/IMG_5848_1.jpg\" border=\"0\" alt=\"IMG_5848_1.jpg\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a> <a href=\"files/UserImages/IMG_5854.jpg\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/IMG_5854.jpg\" border=\"0\" alt=\"IMG_5854.jpg\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a></div>\r\n<div><span style=\"font-family: tahoma,arial,helvetica,sans-serif; font-size: x-small;\"><br /></span></div>\r\n<p>Adresas:</p>\r\n<ul>\r\n<li>Laugalio k., Kelmės r.</li>\r\n<li>Mob.:  +370 612 51 459</li>\r\n<li>El. paštas: nėra</li>\r\n<li>Internetinė svetainė: nėra</li>\r\n</ul>\r\n<p> </p>\r\n<div>\r\n<div>\r\n<p><span style=\"font-family: tahoma,arial,helvetica,sans-serif;\"><span style=\"font-size: x-small;\"><strong></strong></span></span>\r\n<p> </p>\r\n</p>\r\n<hr title=\"Puslapis 17\" class=\"system-pagebreak\" />\r\n</div>\r\n<p>Motelis „Agrotech“<br /><br />Automobilių plovykla, degalinė, skalbykla, kavinė, parduotuvė. Dirba visą parą.</p>\r\n<p><span style=\"font-family: tahoma,arial,helvetica,sans-serif;\"><span style=\"font-size: x-small;\"><a href=\"files/UserImages/IMG_1406.jpg\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/IMG_1406.jpg\" border=\"0\" alt=\"IMG_1406.jpg\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a></span></span> <span style=\"font-family: tahoma,arial,helvetica,sans-serif;\"><span style=\"font-size: x-small;\"><a href=\"files/UserImages/IMG_1404.jpg\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/IMG_1404.jpg\" border=\"0\" alt=\"IMG_1404.jpg\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a></span></span></p>\r\n</div>\r\n<div>Adresas: <br />\r\n<ul>\r\n<li>Pūtvio-Putvinskio g. 12, Kelmė</li>\r\n<li>Tel.: 8 427 61094, faks.: 8 427 61093</li>\r\n<li>El. paštas: nėra</li>\r\n<li>Internetinė svetainė: nėra</li>\r\n</ul>\r\n</div>\r\n<div>\r\n<div><span style=\"font-family: tahoma,arial,helvetica,sans-serif;\"><span style=\"font-size: x-small;\"><strong>\r\n<hr title=\"Puslapis 18\" class=\"system-pagebreak\" />\r\n</strong></span></span></div>\r\n<p><strong>Motelis „Abromika“</strong><br /><br />Degalinė, 2 garažai, žvejyba, kavinė, parduotuvė. Dirba visą parą.</p>\r\n<p><span style=\"font-family: tahoma,arial,helvetica,sans-serif;\"><span style=\"font-size: x-small;\"><a href=\"files/UserImages/IMG_1394.jpg\" target=\"_blank\" rel=\"lytebox[1]\"><img src=\"images/tytuvenai/IMG_1394.jpg\" border=\"0\" alt=\"IMG_1394.jpg\" width=\"176\" height=\"132\" style=\"border: 0;\" /></a></span></span></p>\r\n</div>\r\n<div>Adresas:<br /><br />\r\n<ul>\r\n<li>Kuršukų k., Kelmės raj.</li>\r\n<li>Tel.:  8 427 54070 , faks. 8 427 54070</li>\r\n<li>El. paštas: nėra</li>\r\n<li>Internetinė svetainė: nėra</li>\r\n</ul>\r\n</div>\r\n</p>\r\n<hr title=\"Puslapis 14\" class=\"system-pagebreak\" />\r\n</p>\r\n<hr title=\"Puslapis 12\" class=\"system-pagebreak\" />\r\n</p>\r\n<hr title=\"Puslapis 11\" class=\"system-pagebreak\" />\r\n</p>\r\n<hr title=\"Puslapis 6\" class=\"system-pagebreak\" />','',1,9,0,32,'2011-04-14 10:48:58',62,'','2011-10-31 19:00:18',62,0,'0000-00-00 00:00:00','2011-04-14 10:48:58','0000-00-00 00:00:00','','','show_title=1\nlink_titles=0\nshow_intro=0\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=0\nshow_author=0\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=lt-LT\nkeyref=\nreadmore=',9,0,6,'','',0,519,'robots=\nauthor='),(26,'Extensions','extensions','','<p>Out of the box, Joomla! does a great job of managing the content needed to make your Web site sing. But for many people, the true power of Joomla! lies in the application framework that makes it possible for developers all around the world to create powerful add-ons that are called <strong>Extensions</strong>. An Extension is used to add capabilities to Joomla! that do not exist in the base core code. Here are just some examples of the hundreds of available Extensions:</p>\r\n<ul>\r\n<li>Dynamic form builders</li>\r\n<li>Business or organisational directories</li>\r\n<li>Document management</li>\r\n<li>Image and multimedia galleries</li>\r\n<li>E-commerce and shopping cart engines</li>\r\n<li>Forums and chat software</li>\r\n<li>Calendars</li>\r\n<li>E-mail newsletters</li>\r\n<li>Data collection and reporting tools</li>\r\n<li>Banner advertising systems</li>\r\n<li>Paid subscription services</li>\r\n<li>and many, many, more</li>\r\n</ul>\r\n<p>You can find more examples over at our ever growing <a href=\"http://extensions.joomla.org\" target=\"_blank\" title=\"Joomla! Extensions Directory\">Joomla! Extensions Directory</a>. Prepare to be amazed at the amount of exciting work produced by our active developer community!</p>\r\n<p>A useful guide to the Extension site can be found at:<br /><a href=\"http://extensions.joomla.org/content/view/15/63/\" target=\"_blank\" title=\"Guide to the Joomla! Extension site\">http://extensions.joomla.org/content/view/15/63/</a></p>\r\n<h3>Types of Extensions</h3>\r\n<p>There are five types of extensions:</p>\r\n<ul>\r\n<li>Components</li>\r\n<li>Modules</li>\r\n<li>Templates</li>\r\n<li>Plugins</li>\r\n<li>Languages</li>\r\n</ul>\r\n<p>You can read more about the specifics of these using the links in the Article Index - a Table of Contents (yet another useful feature of Joomla!) - at the top right or by clicking on the <strong>Next </strong>link below.</p>\r\n<hr title=\"Components\" class=\"system-pagebreak\" />\r\n<h3><img src=\"images/stories/ext_com.png\" border=\"0\" alt=\"Component - Joomla! Extension Directory\" title=\"Component - Joomla! Extension Directory\" width=\"17\" height=\"17\" /> Components</h3>\r\n<p>A Component is the largest and most complex of the Extension types. Components are like mini-applications that render the main body of the page. An analogy that might make the relationship easier to understand would be that Joomla! is a book and all the Components are chapters in the book. The core Article Component (<span style=\"font-family: courier new,courier;\">com_content</span>), for example, is the mini-application that handles all core Article rendering just as the core registration Component (<span style=\"font-family: courier new,courier;\">com_user</span>) is the mini-application that handles User registration.</p>\r\n<p>Many of Joomla!\'s core features are provided by the use of default Components such as:</p>\r\n<ul>\r\n<li>Contacts</li>\r\n<li>Front Page</li>\r\n<li>News Feeds</li>\r\n<li>Banners</li>\r\n<li>Mass Mail</li>\r\n<li>Polls</li>\r\n</ul>\r\n<p>A Component will manage data, set displays, provide functions, and in general can perform any operation that does not fall under the general functions of the core code.</p>\r\n<p>Components work hand in hand with Modules and Plugins to provide a rich variety of content display and functionality aside from the standard Article and content display. They make it possible to completely transform Joomla! and greatly expand its capabilities.</p>\r\n<hr title=\"Modules\" class=\"system-pagebreak\" />\r\n<h3><img src=\"images/stories/ext_mod.png\" border=\"0\" alt=\"Module - Joomla! Extension Directory\" title=\"Module - Joomla! Extension Directory\" width=\"17\" height=\"17\" /> Modules</h3>\r\n<p>A more lightweight and flexible Extension used for page rendering is a Module. Modules are used for small bits of the page that are generally less complex and able to be seen across different Components. To continue in our book analogy, a Module can be looked at as a footnote or header block, or perhaps an image/caption block that can be rendered on a particular page. Obviously you can have a footnote on any page but not all pages will have them. Footnotes also might appear regardless of which chapter you are reading. Simlarly Modules can be rendered regardless of which Component you have loaded.</p>\r\n<p>Modules are like little mini-applets that can be placed anywhere on your site. They work in conjunction with Components in some cases and in others are complete stand alone snippets of code used to display some data from the database such as Articles (Newsflash) Modules are usually used to output data but they can also be interactive form items to input data for example the Login Module or Polls.</p>\r\n<p>Modules can be assigned to Module positions which are defined in your Template and in the back-end using the Module Manager and editing the Module Position settings. For example, \"left\" and \"right\" are common for a 3 column layout.</p>\r\n<h4>Displaying Modules</h4>\r\n<p>Each Module is assigned to a Module position on your site. If you wish it to display in two different locations you must copy the Module and assign the copy to display at the new location. You can also set which Menu Items (and thus pages) a Module will display on, you can select all Menu Items or you can pick and choose by holding down the control key and selecting multiple locations one by one in the Modules [Edit] screen</p>\r\n<p>Note: Your Main Menu is a Module! When you create a new Menu in the Menu Manager you are actually copying the Main Menu Module (<span style=\"font-family: courier new,courier;\">mod_mainmenu</span>) code and giving it the name of your new Menu. When you copy a Module you do not copy all of its parameters, you simply allow Joomla! to use the same code with two separate settings.</p>\r\n<h4>Newsflash Example</h4>\r\n<p>Newsflash is a Module which will display Articles from your site in an assignable Module position. It can be used and configured to display one Category, all Categories, or to randomly choose Articles to highlight to Users. It will display as much of an Article as you set, and will show a <em>Read more...</em> link to take the User to the full Article.</p>\r\n<p>The Newsflash Component is particularly useful for things like Site News or to show the latest Article added to your Web site.</p>\r\n<hr title=\"Plugins\" class=\"system-pagebreak\" />\r\n<h3><img src=\"images/stories/ext_plugin.png\" border=\"0\" alt=\"Plugin - Joomla! Extension Directory\" title=\"Plugin - Joomla! Extension Directory\" width=\"17\" height=\"17\" /> Plugins</h3>\r\n<p>One of the more advanced Extensions for Joomla! is the Plugin. In previous versions of Joomla! Plugins were known as Mambots. Aside from changing their name their functionality has been expanded. A Plugin is a section of code that runs when a pre-defined event happens within Joomla!. Editors are Plugins, for example, that execute when the Joomla! event <span style=\"font-family: courier new,courier;\">onGetEditorArea</span> occurs. Using a Plugin allows a developer to change the way their code behaves depending upon which Plugins are installed to react to an event.</p>\r\n<hr title=\"Languages\" class=\"system-pagebreak\" />\r\n<h3><img src=\"images/stories/ext_lang.png\" border=\"0\" alt=\"Language - Joomla! Extensions Directory\" title=\"Language - Joomla! Extensions Directory\" width=\"17\" height=\"17\" /> Languages</h3>\r\n<p>New to Joomla! 1.5 and perhaps the most basic and critical Extension is a Language. Joomla! is released with multiple Installation Languages but the base Site and Administrator are packaged in just the one Language <strong>en-GB</strong> - being English with GB spelling for example. To include all the translations currently available would bloat the core package and make it unmanageable for uploading purposes. The Language files enable all the User interfaces both Front-end and Back-end to be presented in the local preferred language. Note these packs do not have any impact on the actual content such as Articles.</p>\r\n<p>More information on languages is available from the <br /><a href=\"http://community.joomla.org/translations.html\" target=\"_blank\" title=\"Joomla! Translation Teams\">http://community.joomla.org/translations.html</a></p>','',0,4,0,29,'2008-08-11 06:00:00',62,'','2011-11-30 17:14:37',62,0,'0000-00-00 00:00:00','2006-10-10 22:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',26,0,2,'About Joomla!, General, Extensions','',0,0,'robots=\nauthor='),(27,'The Joomla! Community','the-joomla-community','','<p><strong>Got a question? </strong>With more than 210,000 members, the Joomla! Discussion Forums at <a href=\"http://forum.joomla.org/\" target=\"_blank\" title=\"Forums\">forum.joomla.org</a> are a great resource for both new and experienced users. Ask your toughest questions the community is waiting to see what you\'ll do with your Joomla! site.</p><p><strong>Do you want to show off your new Joomla! Web site?</strong> Visit the <a href=\"http://forum.joomla.org/viewforum.php?f=514\" target=\"_blank\" title=\"Site Showcase\">Site Showcase</a> section of our forum.</p><p><strong>Do you want to contribute?</strong></p><p>If you think working with Joomla is fun, wait until you start working on it. We\'re passionate about helping Joomla users become contributors. There are many ways you can help Joomla\'s development:</p><ul>	<li>Submit news about Joomla. We syndicate Joomla-related news on <a href=\"http://news.joomla.org\" target=\"_blank\" title=\"JoomlaConnect\">JoomlaConnect<sup>TM</sup></a>. If you have Joomla news that you would like to share with the community, find out how to get connected <a href=\"http://community.joomla.org/connect.html\" target=\"_blank\" title=\"JoomlaConnect\">here</a>.</li>	<li>Report bugs and request features in our <a href=\"http://joomlacode.org/gf/project/joomla/tracker/\" target=\"_blank\" title=\"Joomla! developement trackers\">trackers</a>. Please read <a href=\"http://docs.joomla.org/Filing_bugs_and_issues\" target=\"_blank\" title=\"Reporting Bugs\">Reporting Bugs</a>, for details on how we like our bug reports served up</li><li>Submit patches for new and/or fixed behaviour. Please read <a href=\"http://docs.joomla.org/Patch_submission_guidelines\" target=\"_blank\" title=\"Submitting Patches\">Submitting Patches</a>, for details on how to submit a patch.</li><li>Join the <a href=\"http://forum.joomla.org/viewforum.php?f=509\" target=\"_blank\" title=\"Joomla! development forums\">developer forums</a> and share your ideas for how to improve Joomla. We\'re always open to suggestions, although we\'re likely to be sceptical of large-scale suggestions without some code to back it up.</li><li>Join any of the <a href=\"http://www.joomla.org/about-joomla/the-project/working-groups.html\" target=\"_blank\" title=\"Joomla! working groups\">Joomla Working Groups</a> and bring your personal expertise to the Joomla community. </li></ul><p>These are just a few ways you can contribute. See <a href=\"http://www.joomla.org/about-joomla/contribute-to-joomla.html\" target=\"_blank\" title=\"Contribute\">Contribute to Joomla</a> for many more ways.</p>','',0,5,0,30,'2008-08-12 16:50:48',62,'','2008-08-12 16:50:48',62,0,'0000-00-00 00:00:00','2006-10-11 02:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',12,0,3,'','',0,52,'robots=\nauthor='),(28,'Tytuvėnų istorijos fragmentai','tytuvenu-istorija','','<p><strong>Senasis geležies amžius.</strong> Šiose vietose jau gyventa baltų genčių. Tytuvėnų apylinkes tyrinėjo   profesorius Mykolas Michelbertas. Kuršių  pilkapyne jo surasti archeologiniai radiniai Kelmės krašto muziejaus ekspozicijos puošmena.<br /><strong>XIII a.</strong> Teodoras Narbutas — lietuvių istorikas romantikas, savo raštuose užsimena apie Tytuvėnuose stovėjusią Žemaičių medinę pilį.<br /><strong>XV a.</strong> Tytuvėnai pažymėti Nikolajaus Kuziečio sudarytame Vidurio Europos žemėlapyje, kuriame pateiktas Lietuvos kartografinis vaizdas.<br /><strong>XVI a.</strong> Tytuvėnų žemes,  Lietuvos didysis  kunigaikštis Aleksandras  dovanoja  Aleknos Sudimantaičio dukrai.<br /><br /><strong>1500 m.</strong> Tytuvėnų dvaras minimas rašytiniuose šaltiniuose nutolęs  apie 3 km nuo miestelio.<br /><strong>1555 m.</strong> Tytuvėnuose pastatyta medinė bažnytėlė ant Šv. Jurgio kalno, aplink ją ir pradėjo formuotis miestelis.<br /><strong>1589 m.</strong> Tytuvėnus valdė LDK kancleris etmonas Leonas Sapiega, vėliau atiteko Brastos vaivadai Kristupui  Zienavičiui.<br /><strong>1609 m.</strong> Tytuvėnus nusipirko  LDK vėliavininkas, Žemaičių žemės teisėjas Andrius Valavičius.<br /><strong>1614 m.</strong> Andrius Valavičius ,Tryškiuose pasirašo  aktą skirtą bernardinų vienuoliams apie ketinimus funduoti bažnyčios ir vienuolyno statybą.<br />Apie <strong>1616 m.</strong> Tytuvėnuose atidaryta pirmoji parapijinė mokykla.<br /><strong>1618 m.</strong> padėtas kertinis bažnyčios akmuo.<br /><strong>1635 m.</strong> Žemaitijos vyskupas Jurgis Tiškevičius ją pašventino ir titulavo Švč. Mergelės Marijos Angelų  Karalienės vardu.<br /><strong>1724 m.</strong> Tytuvėnams suteikiama prekymečių privilegija.<br /><strong>1736 m.</strong> Tytuvėnų bernardinų vienuolyne įkurtas noviciatas.<br /><strong>1772-1780 m.</strong> Tytuvėnų bažnyčios šventorius aptvertas arkadine galerija, kurioje įrengtos kryžiaus kelio stotys.<br /><strong>1831 m.</strong> Tytuvėnus buvo užėmusi sukilėlių kariuomenė vedama generolo Juozo Šimanovskio, vienuolyno pastatas buvo pritaikytas gynybai.<br /><strong>1863 m.</strong> Tytuvėnų miškuose sukilėliai susikovė su caro kariuomene, čia žuvo Zigmantas Citavičius, sukilimo Raseinių apskrities karinis viršininkas<br /><strong>1864 m.</strong> Tytuvėnų bernardinai apkaltinami dalyvavus sukilime - vienuolynas uždaromas, bažnyčią įsakoma atiduoti čia atkeltiems gyventi stačiatikiams.<br /><strong>1868 m.</strong> aktyviai pasipriešinus parapijiečiams, padedant vyskupui Motiejui Valančiui bažnyčią pavyksta apginti ir išsaugoti.<br /><strong>1875 m.</strong> Tytuvėnuose pastatoma Dievo Motinos ikonos „Kazanskaja“ cerkvė.<br /><strong>1911 m.</strong> paskutinis Tytuvėnų dvaro savininkas Eugenijus Romeris vedė dailinkę Sofiją Dembovskytę.<br /><strong>1915 m.</strong> Pirmojo pasaulinio karo metu per Tytuvėnus ėjo fronto linija, nukentėjo bažnyčia.<br /><strong>1917 m.</strong> Tytuvėnuose veikė lietuviška parapijos mokykla.<br /><strong>1941m.</strong> birželio 16 d., sovietams okupavus Lietuvą, prasideda trėmimai į Sibirą. Išvežami Eugenijus ir Sofija Romeriai.<br /><strong>1941 m.</strong> rugpjūčio 12 d.,jau prasidėjus karui, sušaudyti 125 Tytuvėnuose gyvenę žydai.<br /><strong>1945-1948 m.</strong> Tytuvėnų apylinkėse veikė Prisikėlimo ir Kęstučio apygardos partizanai.<br /><strong>1945 m.</strong> Tytuvėnuose pradėjo veikti biblioteka<br /><strong>1946 m.</strong> Atidaryta suaugusių mokykla.<br /><strong>1949 m.</strong> Pradėjo veikti vidurinė mokykla.<br /><strong>1956 m.</strong> Tytuvėnams suteiktas miesto statusas.<br /><strong>2002 m.</strong> Lietuvos Respublikos prezidentas patvirtino Tytuvėnų miestelio herbą.<br /><strong>2004 m.</strong> Tytuvėnuose pradėti rengti tarptautiniai vasaros festivaliai.<br /><strong>2006 m.</strong> Tytuvėnų vidurinė mokykla tapo gimnazija.<br /><strong>2008 m.</strong> kovo 28 d. pradėjo veikti viešoji įstaiga „Tytuvėnų  piligrimų centras“.<br /><strong>2010 m.</strong> Šiaulių vyskupas Eugenijus Bartulis pasirašė dekretą dėl Šiaulių vyskupijos bažnytinio paveldo muziejaus įsteigimo Tytuvėnų bernardinų vienuolyno ansamblyje.</p>','',1,3,0,27,'2011-04-03 10:13:58',62,'','2011-10-31 21:48:02',62,0,'0000-00-00 00:00:00','2011-04-03 10:15:00','0000-00-00 00:00:00','','','show_title=1\nlink_titles=0\nshow_intro=0\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=0\nshow_author=0\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=lt-LT\nkeyref=\nreadmore=',8,0,2,'','',0,33,'robots=\nauthor='),(29,'What is the purpose of the collation selection in the installation screen?','what-is-the-purpose-of-the-collation-selection-in-the-installation-screen','','The collation option determines the way ordering in the database is done. In languages that use special characters, for instance the German umlaut, the database collation determines the sorting order. If you don\'t know which collation you need, select the \"utf8_general_ci\" as most languages use this. The other collations listed are exceptions in regards to the general collation. If your language is not listed in the list of collations it most likely means that \"utf8_general_ci is suitable.','',0,9,0,32,'2008-08-11 03:11:38',62,'','2008-08-11 03:11:38',62,0,'0000-00-00 00:00:00','2006-10-10 08:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=',4,0,7,'','',0,6,'robots=\nauthor='),(30,'What languages are supported by Joomla! 1.5?','what-languages-are-supported-by-joomla-15','','Within the Installer you will find a wide collection of languages. The installer currently supports the following languages: Arabic, Bulgarian, Bengali, Czech, Danish, German, Greek, English, Spanish, Finnish, French, Hebrew, Devanagari(India), Croatian(Croatia), Magyar (Hungary), Italian, Malay, Norwegian bokmal, Dutch, Portuguese(Brasil), Portugues(Portugal), Romanian, Russian, Serbian, Svenska, Thai and more are being added all the time.<br />By default the English language is installed for the Back and Front-ends. You can download additional language files from the <a href=\"http://extensions.joomla.org\" target=\"_blank\" title=\"Joomla! Extensions Directory\">Joomla!Extensions Directory</a>. ','',0,9,0,32,'2008-08-11 01:12:18',62,'','2008-08-11 01:12:18',62,0,'0000-00-00 00:00:00','2006-10-10 06:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',5,0,3,'','',0,8,'robots=\nauthor='),(31,'Is it useful to install the sample data?','is-it-useful-to-install-the-sample-data','','Well you are reading it right now! This depends on what you want to achieve. If you are new to Joomla! and have no clue how it all fits together, just install the sample data. If you don\'t like the English sample data because you - for instance - speak Chinese, then leave it out.','',-1,3,0,27,'2008-08-11 09:12:55',62,'','2008-08-11 09:12:55',62,0,'0000-00-00 00:00:00','2006-10-10 10:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',6,0,4,'','',0,3,'robots=\nauthor='),(32,'Tytuvėnų bernardinų vienuolynas','bernardinuvienuolynas','','<p><br />Pirmieji vienuolynai Žemaitijoje įsikūrė vėlai, tik 17 amžiaus pirmoje pusėje. Pirmoji didelė fundacija buvo žemaičių seniūno, LDK etmono, grafo Jono Karolio Chodkevičiaus. 1602 m. į Kretingą jis pasikvietė Šv. Pranciškaus Mažesniųjų brolių observantų, dar vadinamų bernardinais, vienuolius.</p>\r\n<p><br /><strong>BERNARDINAI ĮSIKURIA TYTUVĖNUOSE</strong><br /><br />1614m. LDK vėliavininkas, Žemaičių žemės teisėjas Andrius Valavičius pasirašo fundacijos aktą, pakviesdamas bernardinų vienuolius į Tytuvėnus. Pirmieji atgailautojų ir elgetautojų ordino vienuoliai atvyko iš Vilniaus, Kauno, Krokuvos vienuolynų. Deja, fundatoriui mirus, bažnyčios ir vienuolyno namų statyba pradedama tik 1618m. Broliai bernardinai, laikinai prisiglaudę Tytuvėnų dvare, o mišias aukodami mažytėje, medinėje Šv. Jurgio bažnytėlėje, jau pirmaisiais metais pradeda misijinį, evangelizacinį darbą, kovoja su Reformacija, stengiasi atitraukti gyventojus nuo dar gyvavusios pagonybės. Bernardinai moko žmones tikėjimo tiesų, teikia sakramentus, sako pamokslus netik lenkų bet ir lietuvių kalba. Pradedamos kaupti pirmosios knygos, davusios pradžią vienai iš didžiausių Žemaitijos bibliotekų. O kunigas Simonas Očko, vienuolyno vikaras, atvykęs į Tytuvėnus iš Krokuvos, ir kronikoje apsakomas kaip „buklus daržininkas“, užveisia didžiulį vaismedžių sodą prie bažnyčios ir vienuolyno sienų.<br /><br />Vienuolyno gyvenamasis namas, tikriausiai, buvo baigtas statyti 1633m. Tai vėlyvojo renesanso architektūros statinys. Pastatas pasagos formos, jungiasi su bažnyčios pietine siena. Tarp pastatų susidaro jaukumu ir ramybe dvelkiantis vidinis kiemelis. Vienuolynas dviaukštis. Pirmame aukšte patalpos erdvios, aukštos, čia gyveno vienuolyno vyresnysis, buvo įrengtas reflektorius (valgomasis), didelė virtuvė, o po ja, rūsiai maistui laikyti. Antrajame vienuolyno namo aukšte-kuklios, cilindriniais skliautais, dengtos vienuolių celės, bibliotekos patalpa, dvi svetainės.<br /><br />1635m. baigta Tytuvėnų bernardinų vienuolyno bažnyčia buvo konsekruota Angelų Švč. Mergelės Marijos titulu. Dievo Motina yra pranciškonų ordino globėja ir jie per amžius skleidė Švč. Mergelės Marijos nekalto prasidėjimo kultą. Kadangi vienuolyno bažnyčia, komplekse užima tokią vietą, kad būtų lengvai pasiekiama netik pasauliečiams lankytojams, maldininkams, bet ir vienuoliams, vienuolyno pastate įrengtas ir iki šių dienų iš likęs vienpusis koridorius. Juo greitai ir patogiai galima pasiekti bet kurią patalpą. Iš antrojo aukšto, vienuoliai, ilgu, šviesiu koridoriumi, patekdavo į vienuolių chorą-tai bažnyčios erdvė už didžiojo altoriaus. Vienuolių chore, bendruomenė rinkdavosi maldai. Istoriniai šaltiniai liudija, kad bernardinai bene ilgiausiai puoselėjo senąsias observantų ordino tradicijas, bendrai kalbėdami ir giedodami įvairias maldas, Liturgines valandas(Aušrinę - vidurnaktį, prima - 6 val. ryto, tertia - po konventualinių Mišių, vidurdienį - sextą, vakare - kompletą, švenčių dienomis-vakarais giedami mišparai) .Nuolatinė malda ir giedamos psalmės, skambančios bažnyčios erdvėje, kiekvieną čia įėjusį pasitikdavo ramybė ir Dievo artumas.<br /><br />17 amž. pabaigoje per Žemaitiją persirito viena po kitos nelaimės: maras, karas su Rusija, prasidėjęs karas su Švedija.</p>\r\n<p><br /><strong>ANTRASIS ŠIMTMETIS</strong><br /><br />18 amž. pradžioje jau kita Šv. Pranciškaus pasekėjų karta. kėlė iš griuvėsių ir vargų konventą, vėl puošė savo šventovę, skelbė Dievo žodį ir kvietė žmones arčiau. Jo. Išlikusioje vienuolyno kronikoje įrašas byloja: „1735 Viešpaties metais. Tais metais laimingai, nors ir su dideliais vargais, bažnyčios stogą ir bokštus pabaigėme[...]. Taip pat storlentėmis išklotą visą priebažnytį ir pradedant nuo didžiųjų bažnyčios durų iki vienuolyno vartų liepiau įvairiais atvaizdais ištapyti, kad pavergtų žmonių širdis...“ Tai liudija apie sieninę tapybą, kurią tarytum miražą regime ir šiandien.. Patalpų sienos buvo ištapytos biblijinėmis scenomis, Kristaus, Marijos, pranciškonų vienuolijos monogramomis, gėlių šakelių ornamentais, tai nuteikdavo maldai ir kontempliacijai.<br /><br />1736 m. Tytyvėnų vienuolyne įsteigiama mokymo institucija-noviciatas. Jaunų žmonių apsigyvenimas suteikė vienuolynui šurmulio ir gyvumo. Tikėtina, kad kaip ir kitose bernardinų bažnyčiose evangelinius įvykius pamaldų metu, iliustruodavo vaidybiniai intarpai. Tikinčiuosius sutraukdavo puošnios bernardinų mišios, spalvingos procesijos, kuriose dalyvaudavo ir bažnytinės brolijos. Iš brolijų seniausia buvo Šv. Onos įkurta dar 1617 m. Vėliau buvo įsteigtos Šv. Barboros, Švč. Mergelės Marijos Nekalto Prasidėjimo, Šv. Pranciškaus Serafiniškojo ir Šv. Antano Paduviečio draugijos. Vienuoliai kartu su brolijų nariais savo gyvenimo pagal evangeliją pavyzdžiu siekė palaikyti visuomenėje tikėjimą ir ugdyti katalikiškas vertybes.<br /><br />XVII a. amžiaus viduryje bernardinai rekonstruoja bažnyčios interjerą. Nors griežta Pranciškonų ordino regula skelbia neturtą, tačiau bernardinai niekada neslėpė, kad moka mylėti ir puoselėti grožį, kuris stebina, džiugina maldininką ir šiandien pravėrusį Dievo namų duris. Mergelės Marijos angelų karalienės bažnyčioje sukuriamas devynių altorių, krikštyklos ir sakyklos itin puošnus vėlyvojo baroko ansamblis. O amžiaus pabaigoje, gvardijono Jeronimo Franickio rūpesčiu už suaukotas lėšas .pastatomi nauji vargonai, kurių puikaus gaudesio galime klausyti ir šiandien. Tai seniausi autentiški, veikiantys vargonai Žemaitijoje.<br /><br />Kadangi mažesniųjų Pranciškaus brolių charizma yra ir rūpestis ligoniais ir atstumtaisiais, prie vienuolyno įkuriama špitolė, kur vienuolių išlaikomi gyveno pavargėliai. Tikėtina, kad prie špitolės glaudės ir pradžios mokykla.<br /><br />1771-1780 m. prieš bažnyčią pastatomos arkadinės galerijos, kuriose įrengiamos Kryžiaus kelio stotys. Vienuolis Antanas Burnickis iš Jeruzalės į Tytuvėnus parvežė žemės - tai relikvija, kurią kažkada lietė Išganytojo kojos, jam nešant kryžių į Golgotos kalną. Ši žemė buvo išdėstyta tikliniuose gaubteliuose po Kryžiaus kelio stočių atvaizdais. Tuo pačiu laikotarpiu, tarytum nuostabus relikvijorius, arkadinių galerijų kiemo centre, iškyla Šventųjų laiptų koplyčia, kur kiekvienos akmeninės pakopos viduryje įdedamos relikvijos - suteikiančios koplyčiai Viešpaties kančios paliudijimą. Bernardinų vienuolių rūpesčiu, šios relikvijos, jau du šimtmečius simboliškai jungia tolimą Šventąją Žemę ir mažą Žemaitijos miestelį. Su Tytuvėnų vienuolyno Kalvarija siejasi piligrimystės reiškinys išlikęs iki šių dienų. Kaip simbolinė Naujoji Jeruzalė- Tytuvėvų Kryžiaus kelias suformavo šiai vietovei būdingą kančios kelio stočių pamaldumo formą, kurią nūdien bandoma prisiminti ir atgaivinti.</p>\r\n<p><br /><strong>PASKUTINIS PENKIASDEŠIMTMETIS</strong><br /><br />Istorijos ratui sukantis Tytuvėnų bernardinų vienuolynui artėjo dar sunkesni laikai.<br /><br />Po 1795m. trečiojo Lietuvos Lenkijos respublikos padalijimo, Lietuva patenka Rusijos carų valdžion. Rusija siekdama greičiau asimiliuoti prisijungtas žemes pradeda varžyti Katalikų Bažnyčios teises ir veiklos laisvę. Valdžia įvairiomis instrukcijomis kišosi į vienuolynų vidaus gyvenimą.<br /><br />1829 m. įsigalioja naujos stojimo į vienuolyną taisyklės, pagal kurias leidimo reikėjo prašyti administracinės valdžios, o galutinį sprendimą priimdavo Peterburge veikusi dvasinių reikalų valdyba. Tuoj po to uždaromas noviciatas Tytuvėnuose.<br /><br />1831m. Tytuvėnų apylinkėse veikė sukilėliai turėję šovinių ir patrankų sviedinių dirbtuvę, o vienuolyne įsirengę ligoninę. Vienuolynas ir kiti mūriniai pastatai buvo įtvirtinti gynybai, įrengtos šaudymo angos. Numalšinus sukilimą, caro valdžia apkaltinusi parama sukilėliams uždarė daugelį Lietuvos vienuolynų, tačiau Tytuvėnų bernardinų nelietė, priskirdama etatinių kategorijai.<br /><br />1841 m. įsaku Rusijos vyriausybė konfiskuoja vienuolynų žemės nuosavybę (fundatoriaus valia Tytuvėnų vienuolynui buvo užrašyta 17 valakų, 22 margai, 196 rykštės - apie 350 ha žemės), už ją pradėta mokėti algas pinigais. Vienuolynai neteko savivaldos – buvo panaikinta provincijolo pareigybė. 1850 m. Motiejus Valančius įšventinamas vyskupu. Jo veikla padarė didelę įtaką dvasininkijai ir visai žemaičių visuomenei. Jis sugebėjo legaliomis priemonėmis, spirtis rusintojų užmačioms. Vyskupo laiškai, kviečiantys žmones atsisakyti degtinės, steigti blaivybės brolijas, ir dar karščiau visiems susitelkti maldoje, yra išlikę vienuolyno archyve.<br /><br />Socialinio ir tautinio nepasitenkinimo banga pradeda 1863 m. sukilimą. Jame dalyvavo daug Lietuvos kunigų ir vienuolių Netoli Tytuvėnų vyko net keletas mūšių su rusų kariuomene. Zigmantas Citavičius, Raseinių apskrities karinis viršininkas buvo įsirengęs sukilėlių stovyklą. Caro valdžia apkaltino vienuolius dalyvavus mūšiuose ir teikus paramą sukilėliams Generalgubernatoriaus M.Muravjovo įsakymu vienuolynas uždaromas, gvardijonas Andriejus Petravičius areštuojamas.ir ištremiamas į Sibirą. 250 metų Tytuvėnuose savo namus turėję vienuoliai, priverčiami išsikelti į vienintelį likusį Kretingos vienuolyną.<br /><br />Visų praėjusių sunkmečių laikais apiplėštas, naikintas ir niokotas Tytuvėnų bernardinų vienuolynas laukia restauravimo ir atnaujino, nes tai bernardiniškos vienuolynų dvasinės, istorinės ir meninės kultūros paveldas. Laukia atgimimo ir naujo šviesesnio istorijos puslapio.</p>','',1,8,0,28,'2011-04-14 05:54:15',62,'','2011-10-31 11:43:49',62,0,'0000-00-00 00:00:00','2011-04-14 05:54:15','0000-00-00 00:00:00','','','show_title=1\nlink_titles=0\nshow_intro=0\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=0\nshow_author=0\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=lt-LT\nkeyref=\nreadmore=',8,0,7,'','',0,12,'robots=\nauthor='),(33,'Apie centrą','apiecentra','','<p> </p>\r\n<p>Viešoji įstaiga „Tytuvėnų piligrimų centras“ įsteigta 2008 m. kovo 28 dieną.<br />Įstaigos steigėjai dalininkai: Kelmės rajono savivaldybės taryba, Šiaulių vyskupijos kurija, Tytuvėnų Švč. M. Marijos Angelų Karalienės parapija.<br /><br />Tytuvėnų piligrimų centro tikslai:<br />Įgyvendinti Tytuvėnų Bernardinų vienuolyno rekonstrukciją bei pritaikyti vienuolyno pastatą turizmo veiklai, piligrimų, tikinčiųjų poreikiams ir dvasinėms reikmėms tenkinti.<br /><br /></p>\r\n<p> </p>\r\n<p>Tytuvėnų piligrimų centro uždaviniai:</p>\r\n<ul>\r\n<li>rengti ir įgyvendinti kultūros, švietimo, meno plėtojimo, turizmo vystymo programas;</li>\r\n<li>plėtoti Tytuvėnų architektūrinio ansamblio išsaugojimo ir turizmo institucijų ryšius;</li>\r\n<li>skatinti visuomenės kultūrinę veiklą, turizmą ir piligrimystę.</li>\r\n</ul>\r\n<p> </p>\r\n<p>VšĮ „Tytuvėnų piligrimų centras“ siūlomos paslaugos:<br /><br /></p>\r\n<ul>\r\n<li>ekskursijos po Tytuvėnų miestelį,</li>\r\n<li>ekskursijos po Tytuvėnų bernardinų vienuolyną,</li>\r\n<li>ekskursijos po Kelmės rajono lankomus objektus,</li>\r\n<li>indinvidualių maršrutų sudarymas,</li>\r\n<li>konsultacijos (apgyvendinimo, maitinimo),</li>\r\n<li>bažnyčios puošimas vestuvių proga.</li>\r\n</ul>\r\n<p><br />Mes siūlome maloniai praleisti laiką Tytuvėnų miestelyje, kur galima pasimėgauti miškų ošimu, ežerų gaiva ir nuostabia aplinka. O norintiems kultūrinių žinių, kviečiame į Tytuvėnų bernardinų vienuolyno ansamblį.<br />Vienuolyno komplekse praleisti laiką gali įvairaus amžiaus nuotykių ištroškę keliautojai, turistai. Suaugusius sudomins išsami Tytuvėnų bernardinų vienuolyno istorija ir didingų vargonų koncertas, o Vaikai žaisdami ir spręsdami kryžiažodžius  galės susipažinti su Tytuvėnų bernardinų vienuolyno istorija ir geriausieji gaus vertinimą už įgautas žinias.</p>\r\n<p><strong>Kviečiame atvykti su savo grupe susikaupimo dienoms, rekolekcijoms, seminarams.<br /></strong><br />Plačiau apie ekskursijas skaitykite skyrelyje <a href=\"index.php?option=com_content&amp;view=article&amp;id=23&amp;Itemid=41\" target=\"_self\">\"Ekskursijos\"</a>.</p>\r\n<p> </p>','',1,4,0,31,'2006-08-11 15:14:11',62,'','2011-11-25 15:15:47',62,0,'0000-00-00 00:00:00','2006-10-10 12:00:00','0000-00-00 00:00:00','','','show_title=1\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=0\nshow_author=0\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nlanguage=lt-LT\nkeyref=\nreadmore=',14,0,2,'','',0,350,'robots=\nauthor='),(34,'Does the PDF icon render pictures and special characters?','does-the-pdf-icon-render-pictures-and-special-characters','','Yes! Prior to Joomla! 1.5, only the text values of an Article and only for ISO-8859-1 encoding was allowed in the PDF rendition. With the new PDF library in place, the complete Article including images is rendered and applied to the PDF. The PDF generator also handles the UTF-8 texts and can handle any character sets from any language. The appropriate fonts must be installed but this is done automatically during a language pack installation.','',0,9,0,32,'2008-08-11 17:14:57',62,'','2008-08-11 17:14:57',62,0,'0000-00-00 00:00:00','2006-10-10 14:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',7,0,5,'','',0,6,'robots=\nauthor='),(35,'Kontaktai','kontaktai','','<p style=\"text-align: left;\"> </p>\r\n<p style=\"text-align: left;\">Viešoji įstaiga \"Tytuvėnų piligrimų centras\"<br />L.e.p. Direktorius Pranas Jurkaitis,<br />Gidė-vadybininkė   Rūta Krencienė, <br />Finansininkė    Irena Mykolaitienė.</p>\r\n<p> </p>\r\n<p>REKVIZITAI:</p>\r\n<p>Viešoji įstaiga \"Tytuvėnų piligrimų centras\"<br />Įmonės kodas: 301639534<br /><br />Adresas: Maironio g. 1, LT-86486, Tytuvėnai, Kelmės r.<br />Tel.: (8-674) 97392, (8-427) 56016, faks. (8-427) 56017</p>\r\n<p>Interneto svetainė: www.tytuvenai.eu<br />El.p.:  info@tytuvenai.eu<br /><br />A.s. LT737300010107221378,<br />„Swedbank“, AB <br />Banko kodas 73000</p>','',1,4,0,31,'2011-04-08 13:22:44',62,'','2011-10-31 20:26:59',62,0,'0000-00-00 00:00:00','2011-04-08 13:22:44','0000-00-00 00:00:00','','','show_title=0\nlink_titles=0\nshow_intro=0\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=0\nshow_author=0\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nlanguage=lt-LT\nkeyref=\nreadmore=',10,0,1,'kontaktai, telefonas, įmonės kodas, adresas','',0,237,'robots=\nauthor='),(36,'Where did the Installers go?','where-did-the-installer-go','','The improved Installer can be found under the Extensions Menu. With versions prior to Joomla! 1.5 you needed to select a specific Extension type when you wanted to install it and use the Installer associated with it, with Joomla! 1.5 you just select the Extension you want to upload, and click on install. The Installer will do all the hard work for you.','',-1,8,0,28,'2008-08-10 23:16:20',62,'','2008-08-10 23:16:20',62,0,'0000-00-00 00:00:00','2006-10-10 04:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',6,0,2,'','',0,4,'robots=\nauthor='),(37,'Where did the Mambots go?','where-did-the-mambots-go','','<p>Mambots have been renamed as Plugins. </p><p>Mambots were introduced in Mambo and offered possibilities to add plug-in logic to your site mainly for the purpose of manipulating content. In Joomla! 1.5, Plugins will now have much broader capabilities than Mambots. Plugins are able to extend functionality at the framework layer as well.</p>','',-1,8,0,28,'2008-08-11 09:17:00',62,'','2008-08-11 09:17:00',62,0,'0000-00-00 00:00:00','2006-10-10 10:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',6,0,6,'','',0,4,'robots=\nauthor='),(38,'I installed with my own language, but the Back-end is still in English','i-installed-with-my-own-language-but-the-back-end-is-still-in-english','','<p>A lot of different languages are available for the Back-end, but by default this language may not be installed. If you want a translated Back-end, get your language pack and install it using the Extension Installer. After this, go to the Extensions Menu, select Language Manager and make your language the default one. Your Back-end will be translated immediately.</p><p>Users who have access rights to the Back-end may choose the language they prefer in their Personal Details parameters. This is of also true for the Front-end language.</p><p> A good place to find where to download your languages and localised versions of Joomla! is <a href=\"http://extensions.joomla.org/index.php?option=com_mtree&task=listcats&cat_id=1837&Itemid=35\" target=\"_blank\" title=\"Translations for Joomla!\">Translations for Joomla!</a> on JED.</p>','',-2,9,0,32,'2008-08-11 17:18:14',62,'','2008-08-11 17:18:14',62,0,'0000-00-00 00:00:00','2006-10-10 14:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',7,0,0,'','',0,7,'robots=\nauthor='),(39,'How do I remove an Article?','how-do-i-remove-an-article','','<p>To completely remove an Article, select the Articles that you want to delete and move them to the Trash. Next, open the Article Trash in the Content Menu and select the Articles you want to delete. After deleting an Article, it is no longer available as it has been deleted from the database and it is not possible to undo this operation.  </p>','',-1,3,0,27,'2008-08-11 09:19:01',62,'','2008-08-11 09:19:01',62,0,'0000-00-00 00:00:00','2006-10-10 10:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',6,0,3,'','',0,4,'robots=\nauthor='),(40,'What is the difference between Archiving and Trashing an Article? ','what-is-the-difference-between-archiving-and-trashing-an-article','','<p>When you <em>Archive </em>an Article, the content is put into a state which removes it from your site as published content. The Article is still available from within the Control Panel and can be <em>retrieved </em>for editing or republishing purposes. Trashed Articles are just one step from being permanently deleted but are still available until you Remove them from the Trash Manager. You should use Archive if you consider an Article important, but not current. Trash should be used when you want to delete the content entirely from your site and from future search results.  </p>','',-1,3,0,27,'2008-08-11 05:19:43',62,'','2008-08-11 05:19:43',62,0,'0000-00-00 00:00:00','2006-10-10 06:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',8,0,1,'','',0,5,'robots=\nauthor='),(41,'Newsflash 5','newsflash-5','','Joomla! 1.5 - \'Experience the Freedom\'!. It has never been easier to create your own dynamic Web site. Manage all your content from the best CMS admin interface and in virtually any language you speak.','',0,1,0,3,'2008-08-12 00:17:31',62,'','2008-08-12 00:17:31',62,0,'0000-00-00 00:00:00','2006-10-11 06:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',5,0,2,'','',0,4,'robots=\nauthor='),(42,'Newsflash 4','newsflash-4','','Yesterday all servers in the U.S. went out on strike in a bid to get more RAM and better CPUs. A spokes person said that the need for better RAM was due to some fool increasing the front-side bus speed. In future, buses will be told to slow down in residential motherboards.','',0,1,0,3,'2008-08-12 00:25:50',62,'','2008-08-12 00:25:50',62,0,'0000-00-00 00:00:00','2006-10-11 06:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',5,0,1,'','',0,7,'robots=\nauthor='),(43,'Example Pages and Menu Links','example-pages-and-menu-links','','<p>This page is an example of content that is <em>Uncategorized</em>; that is, it does not belong to any Section or Category. You will see there is a new Menu in the left column. It shows links to the same content presented in 4 different page layouts.</p><ul><li>Section Blog</li><li>Section Table</li><li> Blog Category</li><li>Category Table</li></ul><p>Follow the links in the <strong>Example Pages</strong> Menu to see some of the options available to you to present all the different types of content included within the default installation of Joomla!.</p><p>This includes Components and individual Articles. These links or Menu Item Types (to give them their proper name) are all controlled from within the <strong><font face=\"courier new,courier\">Menu Manager-&gt;[menuname]-&gt;Menu Items Manager</font></strong>. </p>','',-2,0,0,0,'2008-08-12 09:26:52',62,'','2008-08-12 09:26:52',62,0,'0000-00-00 00:00:00','2006-10-11 10:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',7,0,0,'Uncategorized, Uncategorized, Example Pages and Menu Links','',0,44,'robots=\nauthor='),(44,'Joomla! Security Strike Team','joomla-security-strike-team','','<p>The Joomla! Project has assembled a top-notch team of experts to form the new Joomla! Security Strike Team. This new team will solely focus on investigating and resolving security issues. Instead of working in relative secrecy, the JSST will have a strong public-facing presence at the <a href=\"http://developer.joomla.org/security.html\" target=\"_blank\" title=\"Joomla! Security Center\">Joomla! Security Center</a>.</p>','<p>The new JSST will call the new <a href=\"http://developer.joomla.org/security.html\" target=\"_blank\" title=\"Joomla! Security Center\">Joomla! Security Center</a> their home base. The Security Center provides a public presence for <a href=\"http://developer.joomla.org/security/news.html\" target=\"_blank\" title=\"Joomla! Security News\">security issues</a> and a platform for the JSST to <a href=\"http://developer.joomla.org/security/articles-tutorials.html\" target=\"_blank\" title=\"Joomla! Security Articles\">help the general public better understand security</a> and how it relates to Joomla!. The Security Center also offers users a clearer understanding of how security issues are handled. There\'s also a <a href=\"http://feeds.joomla.org/JoomlaSecurityNews\" target=\"_blank\" title=\"Joomla! Security News Feed\">news feed</a>, which provides subscribers an up-to-the-minute notification of security issues as they arise.</p>',-1,1,0,1,'2007-07-07 09:54:06',62,'','2007-07-07 09:54:06',62,0,'0000-00-00 00:00:00','2004-07-06 22:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,3,'','',0,0,'robots=\nauthor='),(45,'Laukiame naujienų','laukiame-naujienu','','<p> </p>\r\n<p>Naujienų laukiame...</p>\r\n<p> </p>','',0,1,0,1,'2010-07-07 09:54:06',62,'','2011-10-31 20:49:51',62,0,'0000-00-00 00:00:00','2010-07-06 22:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',4,0,4,'','',0,5,'robots=\nauthor='),(50,'Edukacinė programa “Kalėdų gėlė“','kaledu-gele','','<p>   </p>\r\n<p>Adventas – tai metas prieš  vienas didžiausias  metines šventes.<br />Tai laikas, kuris skiriamas laukti Jėzaus Kristaus gimimo – Kalėdų. Kaip laukimas, tai laikas, kai turėtume gyventi viltimi, nes ir gyvybės stebuklas, ir apskritai visų kalėdinių pažadų išsipildymas yra tai, ko mes laukiame. Tamsusis prieškalėdinis laikotarpis – tai ir žmonių fizinio bei dvasinio apsivalymo, stebuklingos ramybės ir taikos metas.<br />Ši edukacinė programa skiriama visiems – vaikams ir suaugusiems. Supažindinsime su advento ir kalėdų tradicijomis, kurių buvo laikomasi  vienuolynuose, ir tradicijomis bei papročiais, kurių laikėsi mūsų senoliai. Jūsų meilė, susikaupimas, kantrybė pražydins kalėdų gėlę ir kiekvieno gėlė bus kitokia – sugėrusi Jūsų rankų šilumą, papuošta jūsų išradingumo.<br />Edukacija vyksTytuvėnų bernardinų vienuolyno refektorinėje salėje visą adventą iki Trijų karalių šventės.</p>\r\n<p>Vadovė Rūta Krencienė (8-67877676)</p>','',1,9,0,32,'2011-11-30 16:50:38',62,'','2011-11-30 17:06:16',62,0,'0000-00-00 00:00:00','2011-11-30 16:50:38','0000-00-00 00:00:00','','','show_title=1\nlink_titles=0\nshow_intro=0\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=0\nshow_author=0\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nlanguage=lt-LT\nkeyref=\nreadmore=',6,0,1,'','Edukacinė programa “Kalėdų gėlė“',0,250,'robots=\nauthor='),(46,'Pasirašyta bendradarbiavimo sutartis','pasirasyta-sutartis','','<p>Kelmės rajono Tytuvėnų gimnazija, atstovaujama direktorės Irmos Stankuvienės  ir VšĮ „Tytuvėnų piligrimų centras“, atstovaujamas l.e.p. direktoriaus Prano Jurkaičio, 2011 m.  birželio 7 dieną  pasirašė bendradarbiavimo sutartį. <br /><br />Restauruotas duris atversiantis vienuolynas turėtų tapti ne tik dvasiniu, bet ir kultūriniu židiniu Kelmės rajone. Tačiau, kad meninės, istorinės vertybės išliktų amžinomis turime skatinti jaunimą domėtis dvasiniu pasauliu.  <br /><br />Šios sutarties uždaviniai -  sudaryti palankias sąlygas  gerosios  darbo patirties sklaidai, organizuoti bendrą veiklą  ir projektų vykdymą.<br /><br />Abi sutarties šalys tikisi, kad iniacityvus jaunimas prisidės prie organizuojamų renginių, projektinės veiklos ne tik savo idėjomis, bet ir kruopščiu darbu.</p>\r\n<table style=\"text-align: center; width: 500px; height: 40px;\" border=\"0\" align=\"center\">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<p style=\"TEXT-ALIGN: center\"><img src=\"images/stories/veikla/sut_su_tytvm_1.jpg\" border=\"0\" alt=\"alt src=http://www.tytuvenai.eu/images/stories/veikla/sut_su_tytvm_1.jpg\" width=\"300\" /></p>\r\n</td>\r\n<td>\r\n<p style=\"TEXT-ALIGN: center\"><img src=\"images/stories/veikla/sut_su_tytvm3.jpg\" border=\"0\" width=\"300\" /></p>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p style=\"TEXT-ALIGN: right\">VšĮ „Tytuvėnų piligrimų centro“ informacija</p>','',1,4,0,34,'2011-06-10 21:44:19',62,'','2011-11-04 18:27:58',62,0,'0000-00-00 00:00:00','2011-06-10 22:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',2,0,1,'','',0,245,'robots=\nauthor='),(47,'Poezijos skaitymai Tytuvėnų kapinėse','skaitymai-kapinese','','<p> </p>\r\n<p>Lapkričio 1-ąją dieną, mirusiųjų pagerbimo dieną, vyko poezijos skaitymai Tytuvėnų kapinėse. Buvo skaitoma E.Mieželaičio, Salomėjos Nėries, Bernardo Brazdžionio, Maironio, Vytauto Mačernio ir kt.autorių  poezija, lietuvių liaudies folkloro raudos ir vyrkavimai bei Kelmės rajono literatų kūryba – Teresės Rimulaitytės, Reginos Biržinytės bei Vlado Kalvaičio.<br />Buvo giedamos giesmės.<br />Skaitė ir giedojo Andrėja Gričiutė, Pranas Jurkaitis, Gytis Švilpa.<br />Talkino Tytuvėnų  kultūros centro vadovas Regimantas Zenauskas. Tikimės, kad šie poezijos skaitymai taps kasmetine tradicija.</p>\r\n<p>VšĮ „Tytuvėnų piligrimų centras“ informacija</p>','',1,1,0,1,'2011-11-04 18:01:19',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2011-11-04 18:01: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=',1,0,3,'','',0,271,'robots=\nauthor='),(48,'Senjorų vakaronė „Jaunystei prisiminti“','jaunystei-prisiminti','','<p> </p>\r\n<p>Paskutinį spalio šeštadienį Tytuvėnų bernardinų vienuolyno refektorinėje salėje vyko senjorų vakaronė „Jaunystei prisiminti“, kurioje dalyvavo Tytuvėnų gimnazistai (vadovė Andrėja Gričiutė).<br />Jie pristatė meninę kompoziciją „Kur seselė mūsų sėdėjo“ lietuvių liaudies smulkiosios tautosakos motyvais, mokytojų senjorų klubas „Raskila“ (vadovė Teresė Rimulaitytė). Joms talkino Tytuvėnų bibliotekininkė Dalia Galbuogienė. D. Molotokienė pasakojo jumoreskų. <br />Vyko parodos atidarymas. Atidaryta  Aldonos Traškinienės  piešinių paroda „Sibiro Alma Mater“.<br />Ilona Bumblauskienė iš Kražių ir Kelmės rajono literatų klubo prezidentas Viktoras Gulbinas atliko kompoziciją apie amžinąją vyro ir moters problemą – nesusikalbėjimą.<br />Seserys iš Junkilų Valerija Adomaitienė ir Ona Stankienė su savo mažaisiais padėjėjais pelnė žiūrovų simpatijas ypač už savo nostalgiškas dainas apie rudenį, lietų ir meilę.<br />Renginį vedė Tytuvėnų regioninio parko menotyrininkė N.Saimininkienė, kuri kalbėjo J.Marcinkevičiaus eilėmis.<br />Visi dalyviai buvo apdovanoti mažais suvenyrais iš akmenukų, kuriuos  pagamino Virginija ir Jurgita  Balčiūnaitės Inetos Gričiūtės rankomis.</p>\r\n<p>VšĮ „Tytuvėnų piligrimų centras“ informacija</p>','',1,1,0,1,'2011-11-04 18:20:10',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2011-11-04 18:20:10','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,2,'','',0,364,'robots=\nauthor='),(49,'Kelmės regiono turizmo traukos objektas','turizmo-traukos-objektas','','<p style=\"TEXT-ALIGN: left\"> <br />Tytuvėnų bažnyčios ir bernardinų vienuolyno ansamblis – tai pagrindinis Kelmės regiono turizmo traukos objektas, kuris turi didžiulę istorinę, meninę, kultūrinę, religinę/sakralinę išliekamąją vertę. Bažnyčios ir bernardinų vienuolyno ansamblį sudaro net 11 į kultūros vertybių registrą įrašytų atskirų objektų.<br /><br />2008 metų spalio 27 dienos ūkio ministro įsakymu projektas „Tytuvėnų bernardinų vienuolyno ansamblio pritaikymas turizmo reikmėms“ buvo įtrauktas į Valstybės planuojamų turizmo projektų, finansuojamų iš 2007 m. - 2013 m. Europos Sąjungos paramos lėšų, sąrašą. Pagrindinis projekto tikslas buvo kompleksiškai pritaikyti Tytuvėnų Švenčiausiosios Mergelės Marijos bažnyčios ir bernardinų vienuolyno ansamblį turizmui, išlaikant objekto unikalumą ir autentiškumą, sukurti sąlygas privačioms investicijoms, piligrimystę ir turizmą skatinančioms, palaikančioms bei aptarnaujančioms paslaugoms ir veikloms vykdyti. Pradėjus eksplotuoti objektą bus sumažintas turizmo sezoniškumas, kadangi kultūros paveldo objektas vertingas ne tik savo išore, bet ir vidaus ekspozicija. Vienuolyne įkurtas Šiaulų vyskupijos bažnytinio paveldo muziejus. Pagrindinė muziejaus ekspozicijų salė įsikurs buvusioje vienuolyno bibliotekoje, joje bus eksponuojami liturginiai reikmenys iš Šiaulių vyskupijos bažnyčių, kitose celėse galėsime parodyti paveikslus, skulptūras iš Tytuvėnų bažnyčios.</p>\r\n<p style=\"TEXT-ALIGN: left\"> </p>\r\n<p style=\"TEXT-ALIGN: right\">VšĮ „Tytuvėnų piligrimų centro“ informacija</p>','',1,9,0,32,'2011-11-18 14:47:51',62,'','2011-12-09 06:24:40',62,0,'0000-00-00 00:00:00','2011-11-18 14:47:51','0000-00-00 00:00:00','','','show_title=1\nlink_titles=0\nshow_intro=0\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=0\nshow_author=0\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=lt-LT\nkeyref=\nreadmore=',2,0,2,'','',0,185,'robots=\nauthor='),(51,'Projektas „Tytuvėnų Bernardinų vienuolyno ansamblio pritaikymas turizmo reikmėms“ įgyvendintas','projektas-baigtas','','<p>Spalio 1 d. baigtas įgyvendinti projektas „Tytuvėnų Bernardinų vienuolyno ansamblio pritaikymas turizmo reikmėms“. Projektui įgyvendinti devynių milijonų litų finansinę paramą suteikė 2007-2013 m. Europos Sąjungos struktūriniai fondai, 140 tūkst. litų skyrė Kelmės rajono savivaldybė, o vienas milijonas litų skirtas iš valstybės biudžeto.</p>\r\n<p>Pasak laikinai pareigas einančio VšĮ „Tytuvėnų piligrimų centras“ direktoriaus Prano Jurkaičio, pagrindinis projekto tikslas buvo kompleksiškai pritaikyti Tyttuvėnų švenčiausiosios Mergelės Marijos bažnyčios ir Bernardinų vienuolyno ansamblį turizmui, išlaikant objekto unikalumą ir autentiškumą, sukurti sąlygas privačioms investicijoms, skatinančioms piligrimystę ir turizmą, palaikančioms bei aptarnaujančioms paslaugoms ir veikloms vykdyti.</p>\r\n<p>– Pradėjus eksploatuoti objektą bus sumažintas turizmo sezoniškumas, kadangi kultūros paveldo objektas vertingas ne tik savo išore, bet ir vidaus ekspozicija. Vienuolyne įkurtas Šiaulių vyskupijos bažnytinio paveldo muziejus, kurio ekspozicijoje: monstrancijos, komuninės taurės, relikvijorai, šventųjų paveikslai. Restauruodami vienuolyną, po dažais slėptas freskas atkūrė 20 restauratorių. Jos senovėje tapytos vienu stiliumi, todėl manoma, kad vienuolynas turėjo savo dailininką, – sakė P. Jurkaitis.</p>\r\n<p>Restauruotose vienuolyno patalpose įkurtas ne tik Sakralinio meno muziejus, bet ir Tytuvėnų piligrimų centro patalpos ir konferencijų salė. Visa tai leis kompleksiškai tenkinti turistų, atvykusių aplankyti Tytuvėnų Švenčiausiosios Mergelės Marijos bažnyčios ir Bernardinų vienuolyno ansamblį, poreikius.</p>\r\n<p><img src=\"images/stories/veikla/kuriame-lietuvos-ateiti_2.jpg\" border=\"0\" width=\"343\" height=\"60\" /></p>','',1,4,0,25,'2011-12-03 13:30:21',62,'','2011-12-03 14:01:40',62,0,'0000-00-00 00:00:00','2011-12-03 13:30:21','0000-00-00 00:00:00','','','show_title=1\nlink_titles=0\nshow_intro=0\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=0\nshow_author=0\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=lt-LT\nkeyref=\nreadmore=',5,0,2,'','',0,177,'robots=\nauthor='),(52,'Advento sekmadieniai Tytuvėnuose','advento-sekmadieniai','','<h6>  </h6>\r\n<h6><img src=\"images/stories/veikla/adv_sekm_337.jpg\" border=\"0\" width=\"256\" height=\"341\" style=\"border: 0; float: left; margin-left: 15px; margin-right: 15px; margin-top: 0px; margin-bottom: 0px;\" />Adventas — ramybės, rimties ir susikaupimo metas. Tai laikas, kai žmonės, laukdami saulės sugrįžimo, tvarkosi namus, susitaiko su kaimynais, grąžina visas skolas (bent taip jau reikėtų padaryti), apvalo savo būstą ir sielą.</h6>\r\n<h6>Advento pradžioje pinamas advento vainikas. Toks adventinis vainikas ir buvo nupintas  pirmąjį advento sekmadienį Tytuvėnų Bernardinų vienuolyne, Tytuvėnų piligrimų centro darbuotojų. Tytuvėniškiai buvo pakviesti po Šventųjų mišių — Sumos į pirmąją popietę. Popietę vedė ir adventines giesmes giedojo Tytuvėniškė režisierė Andrėja Gričiūutė. Uždegta pirmoji adventinio vainiko žvakė. Per renginio pertraukėlę žiūrovai ir klausytojai buvo pakviest apžiūrėti Bernardinų vienuolyno antrame aukšte veikiančią Angelų parodą ir Kalėdines puokštes.</h6>\r\n<h6>          <img src=\"images/stories/veikla/adv_sekm_448.jpg\" border=\"0\" width=\"341\" height=\"256\" style=\"border: 0; float: right; margin-top: 0px; margin-bottom: 0px; margin-left: 15px; margin-right: 15px;\" /></h6>\r\n<h6>Kiekvieną advento sekmadienį rinkosi vis daugiau tytuvėniškių. Trečiąjį advento sekmadienį vedė Tytuvėnų gimnazijos mokytoja ir gimnazijos mokiniai. Svečiai iš Raseinių rajono Ariogalos miestelio literatų klubas pristatė savo adventinę programą. Paskutinįjį — ketvirtąjį sekmadienį  tytuvėniškių susirinko gausiausiai. Popietę vedė Tytuvėnų parapijos „Gyvojo Rožinio“ dalyviai. Uždegtos visos keturios Advento vainike esančios žvakės. Kiekvienas popietės dalyvis skaitė po nedidelę ištrauką iš Šventojo rašto,  uždegė po simbolinę Kristaus gimimo laukimo žvakelę, kad namuose ir širdyse būtų šviesiau ir šilčiau. Popietėje dalyvavo  Parapijos klebonas R. Žaromskis teatro, kino ir televizijos aktorė Virginija Kochanskytė.</h6>\r\n<p style=\"text-align: center;\"><img src=\"images/stories/veikla/adv_sekm_476.jpg\" border=\"0\" width=\"256\" height=\"341\" style=\"margin: 10px 15px; border: 0px;\" /></p>\r\n<h6><img src=\"images/stories/veikla/adv_sekm_298.jpg\" border=\"0\" width=\"341\" height=\"256\" style=\"border: 0; float: left; margin-top: 0px; margin-bottom: 0px; margin-left: 15px; margin-right: 15px;\" />Atrestauruotą Tytuvėnų Bernardinų vienuolyno ansamblį yra pamilę ir nuolatos lanko ne tik tytuvėniškiai, bet ir gausus būrys svečių. Šiaulių regiono „Omnitel“ firmos darbuotojai čia lankydamiesi atsisveikino su besibaigiančiais metais, apmąstydami nuveiktus darbus. Tytuvėnų Švč. Mergelės Marijos bažnyčioje išklausė Šventąsias mišias, aplankė Bernardinų vienuolyno ansamblyje veikiantį Šiaulių Vyskupijos sakralinio meno muziejų. Advento laikotarpyje čia buvo susirinkę, savo nuveiktus darbus aptarė keturios bendruomenės. Savo patirtimi dalijosi svečiai iš Raseinių rajono — Požečių bendruomenė. Mūsų rajono Mokaičių, Šedbarų ir šeimininkai — Tytuvėnų bendruomenė. Popietė buvo labai rami ir šilta. Šilumą skleidė Tytuvėnų gimnazijos moksleiviai, vadovaujami mokytojos Nijolės Astašauskienės. Dalyviai skirstėsi į namus veždamiesi kalėdaičius, kuriuos ramybės namuose ir Šv. Kūčių vakare linkėdamas, bendruomenių atstovams įteikė parapijos klebonas. Tytuvėnų piligrimų centro administracija dovanojo po maišelį kūčiukų, linkėdama ramaus Kūčių vakaro kiekvieniems namams.</h6>\r\n<h6>Tytuvėnų piligrimų centro administratorė</h6>','',1,1,0,1,'2012-01-04 06:14:44',62,'','2012-01-07 12:01:05',62,0,'0000-00-00 00:00:00','2012-01-04 06:14:44','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',12,0,1,'','',0,64,'robots=\nauthor=');
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_content` ENABLE KEYS */;

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

DROP TABLE IF EXISTS `jos_content_frontpage`;
CREATE TABLE `jos_content_frontpage` (
  `content_id` int(11) NOT NULL default '0',
  `ordering` int(11) NOT NULL default '0',
  PRIMARY KEY  (`content_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

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


/*!40000 ALTER TABLE `jos_content_frontpage` DISABLE KEYS */;
LOCK TABLES `jos_content_frontpage` WRITE;
INSERT INTO `jos_content_frontpage` VALUES (33,1);
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_content_frontpage` ENABLE KEYS */;

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

DROP TABLE IF EXISTS `jos_content_rating`;
CREATE TABLE `jos_content_rating` (
  `content_id` int(11) NOT NULL default '0',
  `rating_sum` int(11) unsigned NOT NULL default '0',
  `rating_count` int(11) unsigned NOT NULL default '0',
  `lastip` varchar(50) NOT NULL default '',
  PRIMARY KEY  (`content_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

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


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

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

DROP TABLE IF EXISTS `jos_core_acl_aro`;
CREATE TABLE `jos_core_acl_aro` (
  `id` int(11) NOT NULL auto_increment,
  `section_value` varchar(240) NOT NULL default '0',
  `value` varchar(240) NOT NULL default '',
  `order_value` int(11) NOT NULL default '0',
  `name` varchar(255) NOT NULL default '',
  `hidden` int(11) NOT NULL default '0',
  PRIMARY KEY  (`id`),
  UNIQUE KEY `jos_section_value_value_aro` (`section_value`(100),`value`(100)),
  KEY `jos_gacl_hidden_aro` (`hidden`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

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


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

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

DROP TABLE IF EXISTS `jos_core_acl_aro_groups`;
CREATE TABLE `jos_core_acl_aro_groups` (
  `id` int(11) NOT NULL auto_increment,
  `parent_id` int(11) NOT NULL default '0',
  `name` varchar(255) NOT NULL default '',
  `lft` int(11) NOT NULL default '0',
  `rgt` int(11) NOT NULL default '0',
  `value` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`id`),
  KEY `jos_gacl_parent_id_aro_groups` (`parent_id`),
  KEY `jos_gacl_lft_rgt_aro_groups` (`lft`,`rgt`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

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


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

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

DROP TABLE IF EXISTS `jos_core_acl_aro_map`;
CREATE TABLE `jos_core_acl_aro_map` (
  `acl_id` int(11) NOT NULL default '0',
  `section_value` varchar(230) NOT NULL default '0',
  `value` varchar(100) NOT NULL,
  PRIMARY KEY  (`acl_id`,`section_value`,`value`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

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


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

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

DROP TABLE IF EXISTS `jos_core_acl_aro_sections`;
CREATE TABLE `jos_core_acl_aro_sections` (
  `id` int(11) NOT NULL auto_increment,
  `value` varchar(230) NOT NULL default '',
  `order_value` int(11) NOT NULL default '0',
  `name` varchar(230) NOT NULL default '',
  `hidden` int(11) NOT NULL default '0',
  PRIMARY KEY  (`id`),
  UNIQUE KEY `jos_gacl_value_aro_sections` (`value`),
  KEY `jos_gacl_hidden_aro_sections` (`hidden`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

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


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

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

DROP TABLE IF EXISTS `jos_core_acl_groups_aro_map`;
CREATE TABLE `jos_core_acl_groups_aro_map` (
  `group_id` int(11) NOT NULL default '0',
  `section_value` varchar(240) NOT NULL default '',
  `aro_id` int(11) NOT NULL default '0',
  UNIQUE KEY `group_id_aro_id_groups_aro_map` (`group_id`,`section_value`,`aro_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

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


/*!40000 ALTER TABLE `jos_core_acl_groups_aro_map` DISABLE KEYS */;
LOCK TABLES `jos_core_acl_groups_aro_map` WRITE;
INSERT INTO `jos_core_acl_groups_aro_map` VALUES (25,'',10);
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_core_acl_groups_aro_map` ENABLE KEYS */;

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

DROP TABLE IF EXISTS `jos_core_log_items`;
CREATE TABLE `jos_core_log_items` (
  `time_stamp` date NOT NULL default '0000-00-00',
  `item_table` varchar(50) NOT NULL default '',
  `item_id` int(11) unsigned NOT NULL default '0',
  `hits` int(11) unsigned NOT NULL default '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

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


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

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

DROP TABLE IF EXISTS `jos_core_log_searches`;
CREATE TABLE `jos_core_log_searches` (
  `search_term` varchar(128) NOT NULL default '',
  `hits` int(11) unsigned NOT NULL default '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

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


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

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

DROP TABLE IF EXISTS `jos_groups`;
CREATE TABLE `jos_groups` (
  `id` tinyint(3) unsigned NOT NULL default '0',
  `name` varchar(50) NOT NULL default '',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

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


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

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

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

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


/*!40000 ALTER TABLE `jos_menu` DISABLE KEYS */;
LOCK TABLES `jos_menu` WRITE;
INSERT INTO `jos_menu` VALUES (1,'mainmenu','Pradžia','home','index.php?option=com_content&view=frontpage','component',1,0,20,0,1,0,'0000-00-00 00:00:00',0,0,0,3,'num_leading_articles=1\nnum_intro_articles=4\nnum_columns=2\nnum_links=4\norderby_pri=\norderby_sec=front\nmulti_column_order=1\nshow_pagination=2\nshow_pagination_results=1\nshow_feed_link=1\nshow_noauth=0\nshow_title=1\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=0\nshow_create_date=0\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\nfeed_summary=\npage_title=Sveiki atvykę!\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,1),(2,'mainmenu','Vienuolynas','vienuolynas','index.php?option=com_content&view=category&layout=blog&id=28','component',1,0,20,0,3,0,'0000-00-00 00:00:00',0,0,0,0,'show_description=0\nshow_description_image=0\nnum_leading_articles=0\nnum_intro_articles=2\nnum_columns=2\nnum_links=4\norderby_pri=\norderby_sec=\nmulti_column_order=0\nshow_pagination=2\nshow_pagination_results=1\nshow_feed_link=0\nshow_noauth=0\nshow_title=\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=0\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=0\nfeed_summary=\npage_title=Vienuolynas\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(41,'mainmenu','Ekskursijos','ekskursijos','index.php?option=com_content&view=article&id=23','component',1,37,20,1,1,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=0\nshow_title=0\nlink_titles=0\nshow_intro=0\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=0\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=0\nfeed_summary=\npage_title=Ekskursijos\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(11,'othermenu','Joomla! Home','joomla-home','http://www.joomla.org','url',0,0,0,0,1,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\n\n',0,0,0),(12,'othermenu','Joomla! Forums','joomla-forums','http://forum.joomla.org','url',0,0,0,0,2,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\n\n',0,0,0),(13,'othermenu','Joomla! Documentation','joomla-documentation','http://docs.joomla.org','url',0,0,0,0,3,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\n\n',0,0,0),(14,'othermenu','Joomla! Community','joomla-community','http://community.joomla.org','url',0,0,0,0,4,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\n\n',0,0,0),(15,'othermenu','Joomla! Magazine','joomla-community-magazine','http://magazine.joomla.org/','url',0,0,0,0,5,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\n\n',0,0,0),(16,'othermenu','OSM Home','osm-home','http://www.opensourcematters.org','url',0,0,0,0,6,0,'0000-00-00 00:00:00',0,0,0,6,'menu_image=-1\n\n',0,0,0),(17,'othermenu','Administrator','administrator','administrator/','url',0,0,0,0,7,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\n\n',0,0,0),(18,'topmenu','News','news','index.php?option=com_newsfeeds&view=newsfeed&id=1&feedid=1','component',0,0,11,0,4,0,'0000-00-00 00:00:00',0,0,0,3,'show_page_title=1\npage_title=News\npageclass_sfx=\nmenu_image=-1\nsecure=0\nshow_headings=1\nshow_name=1\nshow_articles=1\nshow_link=1\nshow_other_cats=1\nshow_cat_description=1\nshow_cat_items=1\nshow_feed_image=1\nshow_feed_description=1\nshow_item_description=1\nfeed_word_count=0\n\n',0,0,0),(20,'usermenu','Apie save','your-details','index.php?option=com_user&view=user&task=edit','component',1,0,14,0,1,0,'0000-00-00 00:00:00',0,0,1,3,'welcome_desc=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(24,'usermenu','Atsijungti','logout','index.php?option=com_user&view=login','component',1,0,14,0,4,0,'0000-00-00 00:00:00',0,0,1,3,'show_login_title=1\nheader_login=\nlogin=\nlogin_message=0\ndescription_login=0\ndescription_login_text=\nimage_login=\nimage_login_align=right\nshow_logout_title=1\nheader_logout=\nlogout=\nlogout_message=1\ndescription_logout=1\ndescription_logout_text=\nimage_logout=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(38,'keyconcepts','Content Layouts','content-layouts','index.php?option=com_content&view=article&id=24','component',1,0,20,0,2,0,'0000-00-00 00:00:00',0,0,0,0,'pageclass_sfx=\nmenu_image=-1\nsecure=0\nshow_noauth=0\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\n\n',0,0,0),(27,'mainmenu','Apie centrą','apie-centra','index.php?option=com_content&view=article&id=33','component',1,0,20,0,2,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=0\nshow_title=\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(28,'topmenu','Muziejus','muziejus','index.php?option=com_content&view=category&layout=blog&id=37','component',1,0,20,0,2,0,'0000-00-00 00:00:00',0,0,0,0,'show_description=0\nshow_description_image=0\nnum_leading_articles=0\nnum_intro_articles=2\nnum_columns=2\nnum_links=4\norderby_pri=order\norderby_sec=alpha\nmulti_column_order=0\nshow_pagination=2\nshow_pagination_results=0\nshow_feed_link=0\nshow_noauth=0\nshow_title=\nlink_titles=0\nshow_intro=0\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=0\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=0\nfeed_summary=\npage_title=Muziejus\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(29,'topmenu','Piligrimai','piligrimai','index.php?option=com_content&view=article&id=22','component',1,0,20,0,3,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=0\nshow_title=\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(30,'topmenu','Kontaktai','kontaktai','index.php?option=com_content&view=article&id=35','component',1,0,20,0,6,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=0\nshow_title=0\nlink_titles=0\nshow_intro=0\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=0\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=0\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(34,'mainmenu','Naujienos','naujienos','index.php?option=com_content&view=category&layout=blog&id=34','component',1,27,20,1,1,0,'0000-00-00 00:00:00',0,0,0,0,'show_description=0\nshow_description_image=0\nnum_leading_articles=0\nnum_intro_articles=2\nnum_columns=2\nnum_links=4\norderby_pri=\norderby_sec=\nmulti_column_order=1\nshow_pagination=2\nshow_pagination_results=1\nshow_feed_link=1\nshow_noauth=0\nshow_title=1\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=0\nshow_create_date=0\nshow_modify_date=0\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=0\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(40,'keyconcepts','Extensions','extensions','index.php?option=com_content&view=article&id=26','component',1,0,20,0,1,0,'0000-00-00 00:00:00',0,0,0,0,'pageclass_sfx=\nmenu_image=-1\nsecure=0\nshow_noauth=0\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\n\n',0,0,0),(37,'mainmenu','Turizmo informacija','turizmo-informacija','index.php?option=com_content&view=category&layout=blog&id=32','component',1,0,20,0,4,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=1\nnum_columns=1\nnum_links=0\norderby_pri=\norderby_sec=\nmulti_column_order=0\nshow_pagination=0\nshow_pagination_results=0\nshow_feed_link=0\nshow_noauth=0\nshow_title=0\nlink_titles=0\nshow_intro=0\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=0\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=0\nfeed_summary=\npage_title=Turizmo informacija\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(43,'keyconcepts','Example Pages','example-pages','index.php?option=com_content&view=article&id=43','component',1,0,20,0,3,0,'0000-00-00 00:00:00',0,0,0,0,'pageclass_sfx=\nmenu_image=-1\nsecure=0\nshow_noauth=0\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\n\n',0,0,0),(44,'ExamplePages','Section Blog','section-blog','index.php?option=com_content&view=section&layout=blog&id=3','component',1,0,20,0,1,0,'0000-00-00 00:00:00',0,0,0,0,'show_page_title=1\npage_title=Example of Section Blog layout (FAQ section)\nshow_description=0\nshow_description_image=0\nnum_leading_articles=1\nnum_intro_articles=4\nnum_columns=2\nnum_links=4\nshow_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\norderby_pri=\norderby_sec=\nshow_pagination=2\nshow_pagination_results=1\nshow_noauth=0\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\n\n',0,0,0),(45,'ExamplePages','Section Table','section-table','index.php?option=com_content&view=section&id=3','component',1,0,20,0,2,0,'0000-00-00 00:00:00',0,0,0,0,'show_page_title=1\npage_title=Example of Table Blog layout (FAQ section)\nshow_description=0\nshow_description_image=0\nshow_categories=1\nshow_empty_categories=0\nshow_cat_num_articles=1\nshow_category_description=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\norderby=\nshow_noauth=0\nshow_title=1\nnlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\n\n',0,0,0),(46,'ExamplePages','Category Blog','categoryblog','index.php?option=com_content&view=category&layout=blog&id=31','component',1,0,20,0,3,0,'0000-00-00 00:00:00',0,0,0,0,'show_page_title=1\npage_title=Example of Category Blog layout (FAQs/General category)\nshow_description=0\nshow_description_image=0\nnum_leading_articles=1\nnum_intro_articles=4\nnum_columns=2\nnum_links=4\nshow_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\norderby_pri=\norderby_sec=\nshow_pagination=2\nshow_pagination_results=1\nshow_noauth=0\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\n\n',0,0,0),(47,'ExamplePages','Category Table','category-table','index.php?option=com_content&view=category&id=32','component',1,0,20,0,4,0,'0000-00-00 00:00:00',0,0,0,0,'show_page_title=1\npage_title=Example of Category Table layout (FAQs/Languages category)\nshow_headings=1\nshow_date=0\ndate_format=\nfilter=1\nfilter_type=title\npageclass_sfx=\nmenu_image=-1\nsecure=0\norderby_sec=\nshow_pagination=1\nshow_pagination_limit=1\nshow_noauth=0\nshow_title=1\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\n\n',0,0,0),(48,'mainmenu','Kur apsistoti','kur-apsistoti','index.php?option=com_content&view=article&id=25','component',1,37,20,1,2,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=0\nshow_title=0\nlink_titles=0\nshow_intro=0\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=0\nshow_vote=0\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=0\nfeed_summary=\npage_title=Nuorodos\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(49,'mainmenu','Galerija','galerija','index.php?option=com_content&view=section&id=6','component',1,0,20,0,5,0,'0000-00-00 00:00:00',0,0,0,0,'show_description=0\nshow_description_image=0\nshow_categories=1\nshow_empty_categories=0\nshow_cat_num_articles=1\nshow_category_description=1\norderby=\norderby_sec=\nshow_feed_link=1\nshow_noauth=\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=Muziejuje ir vienuolyne\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(50,'mainmenu','Projektai','projektai','index.php?option=com_content&view=category&layout=blog&id=25','component',1,27,20,1,2,0,'0000-00-00 00:00:00',0,0,0,0,'show_description=0\nshow_description_image=0\nnum_leading_articles=0\nnum_intro_articles=4\nnum_columns=2\nnum_links=4\norderby_pri=\norderby_sec=\nmulti_column_order=1\nshow_pagination=2\nshow_pagination_results=1\nshow_feed_link=0\nshow_noauth=0\nshow_title=1\nlink_titles=0\nshow_intro=0\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=0\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=1\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=0\nfeed_summary=\npage_title=Projektai\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(51,'usermenu','Rašyti naują straipsnį','submit-an-article','index.php?option=com_content&view=article&layout=form','component',1,0,20,0,2,0,'0000-00-00 00:00:00',0,0,2,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),(52,'usermenu','Pateikti interneto nuorodą','submit-a-web-link','index.php?option=com_weblinks&view=weblink&layout=form','component',1,0,4,0,3,0,'0000-00-00 00:00:00',0,0,2,0,'show_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),(53,'topmenu','Naujienos','naujienos','index.php?option=com_content&view=category&layout=blog&id=1','component',1,0,20,0,1,0,'0000-00-00 00:00:00',0,0,0,0,'show_description=0\nshow_description_image=0\nnum_leading_articles=0\nnum_intro_articles=2\nnum_columns=2\nnum_links=4\norderby_pri=\norderby_sec=\nmulti_column_order=0\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),(54,'topmenu','Tytuvėnų istorija','tytuvenu-istorija','index.php?option=com_content&view=category&layout=blog&id=27','component',1,0,20,0,5,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=\nmulti_column_order=0\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),(55,'othermenu','Apie vienuolyną ir muziejų','yoytube-apie-muzieju','http://www.youtube.com/watch?v=MmGH52wofsw&feature=related','url',1,0,0,0,8,0,'0000-00-00 00:00:00',0,1,0,0,'menu_image=-1\n\n',0,0,0),(56,'othermenu','Mes Facebook\'e','mes-facebooke','http://www.facebook.com/pages/V%C5%A1%C4%AE-TYTUV%C4%96N%C5%B2-PILIGRIM%C5%B2-CENTRAS/228948920450405','url',1,0,0,0,9,0,'0000-00-00 00:00:00',0,1,0,0,'menu_image=-1\n\n',0,0,0);
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_menu` ENABLE KEYS */;

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

DROP TABLE IF EXISTS `jos_menu_types`;
CREATE TABLE `jos_menu_types` (
  `id` int(10) unsigned NOT NULL auto_increment,
  `menutype` varchar(75) NOT NULL default '',
  `title` varchar(255) NOT NULL default '',
  `description` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`id`),
  UNIQUE KEY `menutype` (`menutype`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

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


/*!40000 ALTER TABLE `jos_menu_types` DISABLE KEYS */;
LOCK TABLES `jos_menu_types` WRITE;
INSERT INTO `jos_menu_types` VALUES (1,'mainmenu','Main Menu','The main menu for the site'),(2,'usermenu','Kliento Meniu','Meniu registruotiems klientams'),(3,'topmenu','Top Menu','Top level navigation'),(4,'othermenu','Nuorodu Meniu','Additional links'),(5,'ExamplePages','Example Pages','Example Pages'),(6,'keyconcepts','Key Concepts','This describes some critical information for new Users.');
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_menu_types` ENABLE KEYS */;

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

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

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


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

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

DROP TABLE IF EXISTS `jos_messages_cfg`;
CREATE TABLE `jos_messages_cfg` (
  `user_id` int(10) unsigned NOT NULL default '0',
  `cfg_name` varchar(100) NOT NULL default '',
  `cfg_value` varchar(255) NOT NULL default '',
  UNIQUE KEY `idx_user_var_name` (`user_id`,`cfg_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

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


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

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

DROP TABLE IF EXISTS `jos_migration_backlinks`;
CREATE TABLE `jos_migration_backlinks` (
  `itemid` int(11) NOT NULL,
  `name` varchar(100) NOT NULL,
  `url` text NOT NULL,
  `sefurl` text NOT NULL,
  `newurl` text NOT NULL,
  PRIMARY KEY  (`itemid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

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


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

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

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

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


/*!40000 ALTER TABLE `jos_modules` DISABLE KEYS */;
LOCK TABLES `jos_modules` WRITE;
INSERT INTO `jos_modules` VALUES (1,'Pagrindinis Meniu','',0,'left',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,1,'menutype=mainmenu\nmenu_style=list\nstartLevel=0\nendLevel=0\nshowAllChildren=0\nwindow_open=\nshow_whitespace=0\ncache=1\ntag_id=\nclass_sfx=\nmoduleclass_sfx=_menu\nmaxdepth=10\nmenu_images=0\nmenu_images_align=0\nmenu_images_link=0\nexpand_menu=0\nactivate_parent=0\nfull_active_id=0\nindent_image=0\nindent_image1=\nindent_image2=\nindent_image3=\nindent_image4=\nindent_image5=\nindent_image6=\nspacer=\nend_spacer=\n\n',1,0,''),(2,'Login','',1,'login',0,'0000-00-00 00:00:00',1,'mod_login',0,0,1,'',1,1,''),(3,'Popular','',3,'cpanel',0,'0000-00-00 00:00:00',1,'mod_popular',0,2,1,'',0,1,''),(4,'Recent added Articles','',4,'cpanel',0,'0000-00-00 00:00:00',1,'mod_latest',0,2,1,'ordering=c_dsc\nuser_id=0\ncache=0\n\n',0,1,''),(5,'Menu Stats','',5,'cpanel',0,'0000-00-00 00:00:00',1,'mod_stats',0,2,1,'',0,1,''),(6,'Unread Messages','',1,'header',0,'0000-00-00 00:00:00',1,'mod_unread',0,2,1,'',1,1,''),(7,'Online Users','',2,'header',0,'0000-00-00 00:00:00',1,'mod_online',0,2,1,'',1,1,''),(8,'Toolbar','',1,'toolbar',0,'0000-00-00 00:00:00',1,'mod_toolbar',0,2,1,'',1,1,''),(9,'Quick Icons','',1,'icon',0,'0000-00-00 00:00:00',1,'mod_quickicon',0,2,1,'',1,1,''),(10,'Logged in Users','',2,'cpanel',0,'0000-00-00 00:00:00',1,'mod_logged',0,2,1,'',0,1,''),(11,'Footer','',0,'footer',0,'0000-00-00 00:00:00',1,'mod_footer',0,0,1,'',1,1,''),(12,'Admin Menu','',1,'menu',0,'0000-00-00 00:00:00',1,'mod_menu',0,2,1,'',0,1,''),(13,'Admin SubMenu','',1,'submenu',0,'0000-00-00 00:00:00',1,'mod_submenu',0,2,1,'',0,1,''),(14,'User Status','',1,'status',0,'0000-00-00 00:00:00',1,'mod_status',0,2,1,'',0,1,''),(15,'Title','',1,'title',0,'0000-00-00 00:00:00',1,'mod_title',0,2,1,'',0,1,''),(16,'Apklausa','',0,'right',0,'0000-00-00 00:00:00',1,'mod_poll',0,0,1,'id=15\nmoduleclass_sfx=\ncache=1\ncache_time=900\n\n',0,0,''),(17,'Kliento Meniu','',4,'left',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,1,1,'menutype=usermenu\nmenu_style=list\nstartLevel=0\nendLevel=0\nshowAllChildren=0\nwindow_open=\nshow_whitespace=0\ncache=1\ntag_id=\nclass_sfx=\nmoduleclass_sfx=_menu\nmaxdepth=10\nmenu_images=0\nmenu_images_align=0\nmenu_images_link=0\nexpand_menu=0\nactivate_parent=0\nfull_active_id=0\nindent_image=0\nindent_image1=\nindent_image2=\nindent_image3=\nindent_image4=\nindent_image5=\nindent_image6=\nspacer=\nend_spacer=\n\n',1,0,''),(18,'Kliento Meniu','',8,'left',0,'0000-00-00 00:00:00',0,'mod_login',0,0,1,'cache=0\nmoduleclass_sfx=\npretext=\nposttext=\nlogin=\nlogout=\ngreeting=1\nname=0\nusesecure=0\n\n',1,0,''),(19,'Paskutinės naujienos','',0,'user1',0,'0000-00-00 00:00:00',1,'mod_latestnews',0,0,1,'count=5\nordering=c_dsc\nuser_id=0\nshow_front=1\nsecid=\ncatid=\nmoduleclass_sfx=\ncache=1\ncache_time=900\n\n',1,0,''),(20,'Statistics','',6,'left',0,'0000-00-00 00:00:00',0,'mod_stats',0,0,1,'serverinfo=1\nsiteinfo=1\ncounter=1\nincrease=0\nmoduleclass_sfx=',0,0,''),(21,'Kas prisijungė?','',3,'right',0,'0000-00-00 00:00:00',1,'mod_whosonline',0,0,1,'cache=0\nshowmode=0\nmoduleclass_sfx=\n\n',0,0,''),(22,'Popular','',6,'user2',0,'0000-00-00 00:00:00',0,'mod_mostread',0,0,1,'cache=1',0,0,''),(23,'Archive','',9,'left',0,'0000-00-00 00:00:00',0,'mod_archive',0,0,1,'cache=1',1,0,''),(24,'Sections','',10,'left',0,'0000-00-00 00:00:00',0,'mod_sections',0,0,1,'cache=1',1,0,''),(25,'Newsflash','',1,'top',0,'0000-00-00 00:00:00',0,'mod_newsflash',0,0,1,'catid=3\r\nstyle=random\r\nitems=\r\nmoduleclass_sfx=',0,0,''),(26,'Related Items','',11,'left',0,'0000-00-00 00:00:00',0,'mod_related_items',0,0,1,'',0,0,''),(27,'Reikia kažką rasti?','',3,'left',0,'0000-00-00 00:00:00',1,'mod_search',0,0,1,'moduleclass_sfx=\nwidth=15\ntext=rašykite...\nbutton=1\nbutton_pos=right\nimagebutton=\nbutton_text=Ieškoti\nset_itemid=\ncache=1\ncache_time=900\n\n',0,0,''),(28,'Žvilgsnis į ...','',3,'left',0,'0000-00-00 00:00:00',1,'mod_random_image',0,0,1,'type=jpg\nfolder=images/tytuvenai\nlink=\nwidth=160\nheight=\nmoduleclass_sfx=\ncache=0\ncache_time=900\n\n',0,0,''),(29,'Top Menu','',1,'user3',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,0,'cache=1\nmenutype=topmenu\nmenu_style=list_flat\nmenu_images=n\nmenu_images_align=left\nexpand_menu=n\nclass_sfx=-nav\nmoduleclass_sfx=\nindent_image1=0\nindent_image2=0\nindent_image3=0\nindent_image4=0\nindent_image5=0\nindent_image6=0',1,0,''),(30,'Banners','',1,'footer',0,'0000-00-00 00:00:00',1,'mod_banners',0,0,0,'target=1\ncount=1\ncid=1\ncatid=33\ntag_search=0\nordering=random\nheader_text=\nfooter_text=\nmoduleclass_sfx=\ncache=1\ncache_time=15\n\n',1,0,''),(31,'Nuorodos','',0,'left',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,1,'menutype=othermenu\nmenu_style=list\nstartLevel=0\nendLevel=0\nshowAllChildren=0\nwindow_open=\nshow_whitespace=0\ncache=1\ntag_id=\nclass_sfx=\nmoduleclass_sfx=_menu\nmaxdepth=10\nmenu_images=0\nmenu_images_align=0\nmenu_images_link=0\nexpand_menu=0\nactivate_parent=0\nfull_active_id=0\nindent_image=0\nindent_image1=\nindent_image2=\nindent_image3=\nindent_image4=\nindent_image5=\nindent_image6=\nspacer=\nend_spacer=\n\n',0,0,''),(32,'Wrapper','',12,'left',0,'0000-00-00 00:00:00',0,'mod_wrapper',0,0,1,'',0,0,''),(33,'Footer','',2,'footer',0,'0000-00-00 00:00:00',1,'mod_footer',0,0,0,'cache=1\n\n',1,0,''),(34,'Feed Display','',13,'left',0,'0000-00-00 00:00:00',0,'mod_feed',0,0,1,'',1,0,''),(35,'Breadcrumbs','',0,'breadcrumb',0,'0000-00-00 00:00:00',1,'mod_breadcrumbs',0,0,1,'showHome=1\nhomeText=Pradžia\nshowLast=1\nseparator=\nmoduleclass_sfx=\ncache=0\n\n',1,0,''),(36,'Syndication','',3,'syndicate',0,'0000-00-00 00:00:00',0,'mod_syndicate',0,0,0,'',1,0,''),(38,'Nuorodos','',0,'left',0,'0000-00-00 00:00:00',0,'mod_banners',0,0,1,'target=0\ncount=4\ncid=4\ncatid=39\ntag_search=0\nordering=0\nheader_text=Pažiūrėkite ir čia:\nfooter_text=<a href=\"http://www.youtube.com/watch?v=MmGH52wofsw&feature=related\">Apie vienuolyną ir muziejų</a><BR>\\n<a href=\"http://www.facebook.com/pages/V%C5%A1%C4%AE-TYTUV%C4%96N%C5%B2-PILIGRIM%C5%B2-CENTRAS/228948920450405\">Mes Facebook\'e</a>\nmoduleclass_sfx=_text\ncache=0\ncache_time=900\n\n',0,0,''),(39,'Example Pages','',5,'left',0,'0000-00-00 00:00:00',0,'mod_mainmenu',0,0,1,'cache=1\nclass_sfx=\nmoduleclass_sfx=_menu\nmenutype=ExamplePages\nmenu_style=list_flat\nstartLevel=0\nendLevel=0\nshowAllChildren=0\nfull_active_id=0\nmenu_images=0\nmenu_images_align=0\nexpand_menu=0\nactivate_parent=0\nindent_image=0\nindent_image1=\nindent_image2=\nindent_image3=\nindent_image4=\nindent_image5=\nindent_image6=\nspacer=\nend_spacer=\nwindow_open=\n\n',0,0,''),(40,'Key Concepts','',3,'left',0,'0000-00-00 00:00:00',0,'mod_mainmenu',0,0,1,'cache=1\nclass_sfx=\nmoduleclass_sfx=_menu\nmenutype=keyconcepts\nmenu_style=list\nstartLevel=0\nendLevel=0\nshowAllChildren=0\nfull_active_id=0\nmenu_images=0\nmenu_images_align=0\nexpand_menu=0\nactivate_parent=0\nindent_image=0\nindent_image1=\nindent_image2=\nindent_image3=\nindent_image4=\nindent_image5=\nindent_image6=\nspacer=\nend_spacer=\nwindow_open=\n\n',0,0,''),(41,'Welcome to Joomla!','<div style=\"padding: 5px\">  <p>   Congratulations on choosing Joomla! as your content management system. To   help you get started, check out these excellent resources for securing your   server and pointers to documentation and other helpful resources. </p> <p>   <strong>Security</strong><br /> </p> <p>   On the Internet, security is always a concern. For that reason, you are   encouraged to subscribe to the   <a href=\"http://feedburner.google.com/fb/a/mailverify?uri=JoomlaSecurityNews\" target=\"_blank\">Joomla!   Security Announcements</a> for the latest information on new Joomla! releases,   emailed to you automatically. </p> <p>   If this is one of your first Web sites, security considerations may   seem complicated and intimidating. There are three simple steps that go a long   way towards securing a Web site: (1) regular backups; (2) prompt updates to the   <a href=\"http://www.joomla.org/download.html\" target=\"_blank\">latest Joomla! release;</a> and (3) a <a href=\"http://docs.joomla.org/Security_Checklist_2_-_Hosting_and_Server_Setup\" target=\"_blank\" title=\"good Web host\">good Web host</a>. There are many other important security considerations that you can learn about by reading the <a href=\"http://docs.joomla.org/Category:Security_Checklist\" target=\"_blank\" title=\"Joomla! Security Checklist\">Joomla! Security Checklist</a>. </p> <p>If you believe your Web site was attacked, or you think you have discovered a security issue in Joomla!, please do not post it in the Joomla! forums. Publishing this information could put other Web sites at risk. Instead, report possible security vulnerabilities to the <a href=\"http://developer.joomla.org/security/contact-the-team.html\" target=\"_blank\" title=\"Joomla! Security Task Force\">Joomla! Security Task Force</a>.</p><p><strong>Learning Joomla!</strong> </p> <p>   A good place to start learning Joomla! is the   \"<a href=\"http://docs.joomla.org/beginners\" target=\"_blank\">Absolute Beginner\'s   Guide to Joomla!.</a>\" There, you will find a Quick Start to Joomla!   <a href=\"http://help.joomla.org/ghop/feb2008/task048/joomla_15_quickstart.pdf\" target=\"_blank\">guide</a>   and <a href=\"http://help.joomla.org/ghop/feb2008/task167/index.html\" target=\"_blank\">video</a>,   amongst many other tutorials. The   <a href=\"http://community.joomla.org/magazine/view-all-issues.html\" target=\"_blank\">Joomla!   Community Magazine</a> also has   <a href=\"http://community.joomla.org/magazine/article/522-introductory-learning-joomla-using-sample-data.html\" target=\"_blank\">articles   for new learners</a> and experienced users, alike. A great place to look for   answers is the   <a href=\"http://docs.joomla.org/Category:FAQ\" target=\"_blank\">Frequently Asked   Questions (FAQ)</a>. If you are stuck on a particular screen in the   Administrator (which is where you are now), try clicking the Help toolbar   button to get assistance specific to that page. </p> <p>   If you still have questions, please feel free to use the   <a href=\"http://forum.joomla.org/\" target=\"_blank\">Joomla! Forums.</a> The forums   are an incredibly valuable resource for all levels of Joomla! users. Before   you post a question, though, use the forum search (located at the top of each   forum page) to see if the question has been asked and answered. </p> <p>   <strong>Getting Involved</strong> </p> <p>   <a name=\"twjs\" title=\"twjs\"></a> If you want to help make Joomla! better, consider getting   involved. There are   <a href=\"http://www.joomla.org/about-joomla/contribute-to-joomla.html\" target=\"_blank\">many ways   you can make a positive difference.</a> Have fun using Joomla!.</p></div>',0,'cpanel',0,'0000-00-00 00:00:00',1,'mod_custom',0,2,1,'moduleclass_sfx=\n\n',1,1,''),(42,'Joomla! Security Newsfeed','',6,'cpanel',62,'2008-10-25 20:15:17',1,'mod_feed',0,0,1,'cache=1\ncache_time=15\nmoduleclass_sfx=\nrssurl=http://feeds.joomla.org/JoomlaSecurityNews\nrssrtl=0\nrsstitle=1\nrssdesc=0\nrssimage=1\nrssitems=1\nrssitemdesc=1\nword_count=0\n\n',0,1,''),(43,'Simple Image Rotator','',2,'breadcrumb',0,'0000-00-00 00:00:00',1,'mod_jw_sir',0,0,0,'moduleclass_sfx=\nimagefolder=images/stories/muziejus\ndisplay=random\ntransition=20\ndelay=5000\nwidth=450\nheight=650\nforceresize=1\nenablelink=0\nlink=http://www.joomlaworks.gr\ntarget=1\nlinktitle=Bažnyčioje ir Vienuolyne\ndarkbg=0\nuseforbanners=0\nbannerfolder=images/banners/\n\n',0,0,''),(44,'Bėganti eilutė','',1,'banner1',0,'0000-00-00 00:00:00',1,'mod_banners',0,0,0,'target=1\ncount=1\ncid=2\ncatid=39\ntag_search=0\nordering=0\nheader_text=\nfooter_text=\nmoduleclass_sfx=_text\ncache=1\ncache_time=900\n\n',0,0,''),(45,'Mūsų partneriai','',0,'right',0,'0000-00-00 00:00:00',1,'mod_banners',0,0,1,'target=1\ncount=3\ncid=0\ncatid=38\ntag_search=0\nordering=random\nheader_text=\nfooter_text=\nmoduleclass_sfx=\ncache=1\ncache_time=900\n\n',0,0,''),(48,'Lankytojų skaitiklis','',4,'right',0,'0000-00-00 00:00:00',1,'mod_vcnt',0,0,1,'s_today=1\ntoday=\ns_yesterday=1\nyesterday=\ns_week=1\nweek=\ns_month=1\nmonth=\ns_all=1\nall=\nlocktime=1440\npreset=0\ns_clean=1\nhorizontal=0\nhor_text=\nseparator=\nnobots=1\nbotslist=bot,spider,crawler,libwww,search,archive,slurp,teoma\nnoip=0\nipslist=\ncounterwinner=0\ncwnumber=\ncwcode=\ncwemail=\ncwtext=\ncwpopup=0\ncwsession=0\nsqueeze_url=\nsqueeze_relativetoroot=0\nsqueeze_width=200\nsqueeze_height=200\nsqueeze_time=10\nsqueeze_opacity=70\ncache=0\ncache_time=900\nmoduleclass_sfx=\nsql=1\ncopy=1\n\n',0,0,'');
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_modules` ENABLE KEYS */;

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

DROP TABLE IF EXISTS `jos_modules_menu`;
CREATE TABLE `jos_modules_menu` (
  `moduleid` int(11) NOT NULL default '0',
  `menuid` int(11) NOT NULL default '0',
  PRIMARY KEY  (`moduleid`,`menuid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

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


/*!40000 ALTER TABLE `jos_modules_menu` DISABLE KEYS */;
LOCK TABLES `jos_modules_menu` WRITE;
INSERT INTO `jos_modules_menu` VALUES (1,0),(16,1),(17,0),(18,1),(19,1),(19,53),(21,1),(22,1),(22,2),(22,4),(22,27),(22,36),(25,0),(27,0),(28,0),(29,0),(30,0),(31,0),(32,0),(33,0),(34,0),(35,0),(36,0),(38,0),(39,43),(39,44),(39,45),(39,46),(39,47),(40,0),(43,49),(44,0),(45,1),(48,1);
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_modules_menu` ENABLE KEYS */;

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

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

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


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

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

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

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


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

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

DROP TABLE IF EXISTS `jos_poll_data`;
CREATE TABLE `jos_poll_data` (
  `id` int(11) NOT NULL auto_increment,
  `pollid` int(11) NOT NULL default '0',
  `text` text NOT NULL,
  `hits` int(11) NOT NULL default '0',
  PRIMARY KEY  (`id`),
  KEY `pollid` (`pollid`,`text`(1))
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

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


/*!40000 ALTER TABLE `jos_poll_data` DISABLE KEYS */;
LOCK TABLES `jos_poll_data` WRITE;
INSERT INTO `jos_poll_data` VALUES (1,14,'Community Sites',2),(2,14,'Public Brand Sites',3),(3,14,'eCommerce',1),(4,14,'Blogs',0),(5,14,'Intranets',0),(6,14,'Photo and Media Sites',2),(7,14,'All of the Above!',3),(8,14,'',0),(9,14,'',0),(10,14,'',0),(11,14,'',0),(12,14,'',0),(13,15,'Apie centro veiklą',2),(14,15,'Apie muziejų',2),(15,15,'Apie vienuolyną',1),(16,15,'Apie ekskursijas',0),(17,15,'Apie apgyvendinimą, maitinimą',1),(18,15,'Apie turistines keliones',1),(19,15,'Apie renginius',0),(20,15,'',0),(21,15,'',0),(22,15,'',0),(23,15,'',0),(24,15,'',0);
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_poll_data` ENABLE KEYS */;

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

DROP TABLE IF EXISTS `jos_poll_date`;
CREATE TABLE `jos_poll_date` (
  `id` bigint(20) NOT NULL auto_increment,
  `date` datetime NOT NULL default '0000-00-00 00:00:00',
  `vote_id` int(11) NOT NULL default '0',
  `poll_id` int(11) NOT NULL default '0',
  PRIMARY KEY  (`id`),
  KEY `poll_id` (`poll_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

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


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

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

DROP TABLE IF EXISTS `jos_poll_menu`;
CREATE TABLE `jos_poll_menu` (
  `pollid` int(11) NOT NULL default '0',
  `menuid` int(11) NOT NULL default '0',
  PRIMARY KEY  (`pollid`,`menuid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

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


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

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

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

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


/*!40000 ALTER TABLE `jos_polls` DISABLE KEYS */;
LOCK TABLES `jos_polls` WRITE;
INSERT INTO `jos_polls` VALUES (14,'Joomla! is used for?','joomla-is-used-for',11,0,'0000-00-00 00:00:00',0,0,86400),(15,'Kokios informacijos ieškote?','kokios-informacijos-iekote',7,0,'0000-00-00 00:00:00',1,0,86400);
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_polls` ENABLE KEYS */;

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

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

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


/*!40000 ALTER TABLE `jos_sections` DISABLE KEYS */;
LOCK TABLES `jos_sections` WRITE;
INSERT INTO `jos_sections` VALUES (1,'Naujienos','','naujienos','','content','left','',1,0,'0000-00-00 00:00:00',3,0,3,''),(6,'Muziejus','','muziejus','','content','left','',1,0,'0000-00-00 00:00:00',7,0,1,''),(3,'Tytuvėnai','','tytuvenai','','content','left','',1,0,'0000-00-00 00:00:00',5,0,25,''),(7,'Galerija','','galerija','','content','left','',1,0,'0000-00-00 00:00:00',8,0,2,''),(8,'Vienuolynas','','vienuolynas','','content','left','',1,0,'0000-00-00 00:00:00',9,0,1,''),(4,'Apie centrą','','apie-centra','','content','left','',1,0,'0000-00-00 00:00:00',2,0,19,''),(5,'Piligrimai','','piligrimai','','content','left','',1,0,'0000-00-00 00:00:00',6,0,1,''),(9,'Turizmas','','turizmas','','content','left','',1,0,'0000-00-00 00:00:00',10,0,1,'');
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_sections` ENABLE KEYS */;

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

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

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


/*!40000 ALTER TABLE `jos_session` DISABLE KEYS */;
LOCK TABLES `jos_session` WRITE;
INSERT INTO `jos_session` VALUES ('','1327854150','3fc998deaf2727ed3dc871cf14772532',1,0,'',0,0,'__default|a:9:{s:15:\"session.counter\";i:1;s:19:\"session.timer.start\";i:1327854150;s:18:\"session.timer.last\";i:1327854150;s:17:\"session.timer.now\";i:1327854150;s:22:\"session.client.browser\";s:25:\"eZ Publish Link Validator\";s:8:\"registry\";O:9:\"JRegistry\":3:{s:17:\"_defaultNameSpace\";s:7:\"session\";s:9:\"_registry\";a:1:{s:7:\"session\";a:1:{s:4:\"data\";O:8:\"stdClass\":0:{}}}s:7:\"_errors\";a:0:{}}s:4:\"user\";O:5:\"JUser\":19:{s:2:\"id\";i:0;s:4:\"name\";N;s:8:\"username\";N;s:5:\"email\";N;s:8:\"password\";N;s:14:\"password_clear\";s:0:\"\";s:8:\"usertype\";N;s:5:\"block\";N;s:9:\"sendEmail\";i:0;s:3:\"gid\";i:0;s:12:\"registerDate\";N;s:13:\"lastvisitDate\";N;s:10:\"activation\";N;s:6:\"params\";N;s:3:\"aid\";i:0;s:5:\"guest\";i:1;s:7:\"_params\";O:10:\"JParameter\":7:{s:4:\"_raw\";s:0:\"\";s:4:\"_xml\";N;s:9:\"_elements\";a:0:{}s:12:\"_elementPath\";a:1:{i:0;s:80:\"/home/mindaugas/adsprojects/tytuvenai.eu/libraries/joomla/html/parameter/element\";}s:17:\"_defaultNameSpace\";s:8:\"_default\";s:9:\"_registry\";a:1:{s:8:\"_default\";a:1:{s:4:\"data\";O:8:\"stdClass\":0:{}}}s:7:\"_errors\";a:0:{}}s:9:\"_errorMsg\";N;s:7:\"_errors\";a:0:{}}s:16:\"com_mailto.links\";a:1:{s:40:\"a1ef965bed9cdb8c5d218e894d8c5b22733f2d8e\";O:8:\"stdClass\":2:{s:4:\"link\";s:109:\"http://www.tytuvenai.eu/index.php?option=com_content&view=article&id=33:apiecentra&catid=31:general&Itemid=27\";s:6:\"expiry\";i:1327854150;}}s:13:\"session.token\";s:32:\"1ff0183e2fbd3dce4f438ceb5eb17edf\";}'),('','1327854366','ad5360af85a27a49523b48f663c2b0db',1,0,'',0,0,'__default|a:9:{s:15:\"session.counter\";i:1;s:19:\"session.timer.start\";i:1327854366;s:18:\"session.timer.last\";i:1327854366;s:17:\"session.timer.now\";i:1327854366;s:22:\"session.client.browser\";s:25:\"eZ Publish Link Validator\";s:8:\"registry\";O:9:\"JRegistry\":3:{s:17:\"_defaultNameSpace\";s:7:\"session\";s:9:\"_registry\";a:1:{s:7:\"session\";a:1:{s:4:\"data\";O:8:\"stdClass\":0:{}}}s:7:\"_errors\";a:0:{}}s:4:\"user\";O:5:\"JUser\":19:{s:2:\"id\";i:0;s:4:\"name\";N;s:8:\"username\";N;s:5:\"email\";N;s:8:\"password\";N;s:14:\"password_clear\";s:0:\"\";s:8:\"usertype\";N;s:5:\"block\";N;s:9:\"sendEmail\";i:0;s:3:\"gid\";i:0;s:12:\"registerDate\";N;s:13:\"lastvisitDate\";N;s:10:\"activation\";N;s:6:\"params\";N;s:3:\"aid\";i:0;s:5:\"guest\";i:1;s:7:\"_params\";O:10:\"JParameter\":7:{s:4:\"_raw\";s:0:\"\";s:4:\"_xml\";N;s:9:\"_elements\";a:0:{}s:12:\"_elementPath\";a:1:{i:0;s:80:\"/home/mindaugas/adsprojects/tytuvenai.eu/libraries/joomla/html/parameter/element\";}s:17:\"_defaultNameSpace\";s:8:\"_default\";s:9:\"_registry\";a:1:{s:8:\"_default\";a:1:{s:4:\"data\";O:8:\"stdClass\":0:{}}}s:7:\"_errors\";a:0:{}}s:9:\"_errorMsg\";N;s:7:\"_errors\";a:0:{}}s:16:\"com_mailto.links\";a:1:{s:40:\"a1ef965bed9cdb8c5d218e894d8c5b22733f2d8e\";O:8:\"stdClass\":2:{s:4:\"link\";s:109:\"http://www.tytuvenai.eu/index.php?option=com_content&view=article&id=33:apiecentra&catid=31:general&Itemid=27\";s:6:\"expiry\";i:1327854366;}}s:13:\"session.token\";s:32:\"da26dda89367dc1a8bd95f0cdaa77e79\";}');
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_session` ENABLE KEYS */;

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

DROP TABLE IF EXISTS `jos_stats_agents`;
CREATE TABLE `jos_stats_agents` (
  `agent` varchar(255) NOT NULL default '',
  `type` tinyint(1) unsigned NOT NULL default '0',
  `hits` int(11) unsigned NOT NULL default '1'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

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


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

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

DROP TABLE IF EXISTS `jos_templates_menu`;
CREATE TABLE `jos_templates_menu` (
  `template` varchar(255) NOT NULL default '',
  `menuid` int(11) NOT NULL default '0',
  `client_id` tinyint(4) NOT NULL default '0',
  PRIMARY KEY  (`menuid`,`client_id`,`template`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

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


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

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

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

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


/*!40000 ALTER TABLE `jos_users` DISABLE KEYS */;
LOCK TABLES `jos_users` WRITE;
INSERT INTO `jos_users` VALUES (62,'Administrator','admin','darijus.j@zebra.lt','2333d7751f1cc4b9f5e06ad250898107:3ciEZjSKdYpNJAmG0b2roI0CAEUPUMFl','Super Administrator',0,1,25,'2011-10-30 12:05:11','2012-01-07 12:04:52','','page_title=Edit Your Details\nshow_page_title=1\nadmin_language=\nlanguage=\neditor=\nhelpsite=\ntimezone=2\n\n');
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_users` ENABLE KEYS */;

--
-- Table structure for table `jos_vcnt`
--

DROP TABLE IF EXISTS `jos_vcnt`;
CREATE TABLE `jos_vcnt` (
  `tm` int(11) NOT NULL,
  `ip` varchar(16) NOT NULL default '0.0.0.0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_vcnt`
--


/*!40000 ALTER TABLE `jos_vcnt` DISABLE KEYS */;
LOCK TABLES `jos_vcnt` WRITE;
INSERT INTO `jos_vcnt` VALUES (1327587998,'78.60.179.243'),(1327587785,'85.206.6.249'),(1327587584,'81.7.89.149'),(1327586583,'193.219.167.72'),(1327586100,'78.58.36.210'),(1327585921,'82.135.139.29'),(1327584318,'82.135.234.158'),(1327584301,'84.32.64.160'),(1327583987,'80.243.27.84'),(1327583926,'78.58.249.126'),(1327582418,'84.238.53.223'),(1327581956,'82.135.245.20'),(1327581854,'193.219.191.142'),(1327581730,'89.117.106.138'),(1327581111,'78.157.76.107'),(1327580105,'84.32.244.68'),(1327580017,'213.252.196.62'),(1327579370,'212.12.198.230'),(1327579167,'81.7.103.71'),(1327579111,'86.38.190.222'),(1327578166,'85.89.243.230'),(1327578052,'78.58.117.32'),(1327577372,'195.182.79.50'),(1327577271,'213.197.165.18'),(1327577256,'84.46.242.134'),(1327576951,'87.247.88.169'),(1327576858,'88.119.187.161'),(1327576605,'195.182.70.130'),(1327576598,'193.219.139.121'),(1327576298,'217.69.133.31'),(1327576173,'78.61.31.95'),(1327575022,'78.58.59.83'),(1327574186,'78.61.72.114'),(1327573071,'88.216.17.193'),(1327573033,'81.7.97.109'),(1327572588,'78.62.224.231'),(1327572554,'193.219.187.121'),(1327572002,'78.58.57.9'),(1327571932,'78.57.175.233'),(1327570154,'83.171.6.121'),(1327569644,'193.219.180.251'),(1327569345,'90.130.144.37'),(1327569008,'85.206.54.16'),(1327568705,'193.41.197.160'),(1327568148,'78.57.131.183'),(1327567830,'193.41.197.129'),(1327567799,'193.219.12.68'),(1327567724,'78.63.98.81'),(1327566896,'78.63.254.204'),(1327566774,'195.182.85.129'),(1327566741,'78.62.52.198'),(1327566234,'82.135.130.62'),(1327565944,'81.7.86.127'),(1327565920,'62.24.252.133'),(1327565888,'92.20.232.153'),(1327565295,'193.219.87.30'),(1327565293,'84.240.59.50'),(1327565219,'78.60.179.162'),(1327564893,'88.119.156.34'),(1327564421,'85.255.62.177'),(1327563950,'98.228.209.164'),(1327563629,'78.62.243.63'),(1327563346,'81.7.78.162'),(1327563319,'195.182.67.225'),(1327562211,'193.219.167.66'),(1327561616,'81.7.66.203'),(1327561450,'88.119.23.178'),(1327561413,'193.219.74.132'),(1327560957,'84.15.180.95'),(1327560956,'81.7.68.137'),(1327560678,'195.182.94.235'),(1327559629,'195.182.64.13'),(1327559614,'84.15.171.45'),(1327558686,'88.119.11.65'),(1327558486,'77.221.91.130'),(1327558472,'195.182.91.245'),(1327558039,'87.247.115.227'),(1327557872,'84.15.203.74'),(1327557728,'82.135.205.124'),(1327557501,'213.226.170.218'),(1327526934,'46.33.96.5'),(1327526735,'195.182.81.98'),(1327510567,'78.57.155.35'),(1327509962,'82.135.226.200'),(1327509839,'69.171.242.248'),(1327509796,'77.221.86.110'),(1327507918,'78.58.116.226'),(1327507830,'78.61.61.214'),(1327473108,'83.171.2.136'),(1327440189,'195.182.81.98'),(1327422685,'78.60.194.248'),(1327418827,'78.58.73.20'),(1327406942,'78.56.177.128'),(1327401485,'88.119.187.183'),(1327396370,'82.135.199.111'),(1327392750,'193.219.11.245'),(1327391127,'193.219.180.251'),(1327368048,'108.89.98.13'),(1327353789,'195.182.81.98'),(1327332843,'78.58.17.153'),(1327326346,'78.60.130.132'),(1327323960,'78.58.124.84'),(1327316309,'193.219.139.121'),(1327308591,'82.135.139.69'),(1327306769,'62.80.225.114'),(1327306769,'199.19.249.196'),(1327300125,'195.182.91.245'),(1327264094,'195.182.81.98'),(1327224078,'87.247.75.180'),(1327205413,'173.212.195.178'),(1327189795,'46.4.120.2'),(1327177634,'195.182.81.98'),(1327177540,'96.9.173.24'),(1327165708,'84.45.53.2'),(1327161479,'78.58.199.52'),(1327155770,'88.119.157.172'),(1327142565,'80.239.243.95'),(1327104318,'178.73.63.132'),(1327091000,'195.182.81.98'),(1327083612,'78.58.84.226'),(1327065916,'82.135.206.2'),(1327051660,'147.67.18.5'),(1327042043,'77.79.35.61'),(1327005141,'84.169.65.27'),(1327001273,'195.182.81.98'),(1326987983,'85.206.7.66'),(1326983157,'78.61.130.100'),(1326981960,'178.250.37.124'),(1326977619,'82.135.215.250'),(1326975318,'195.182.91.245'),(1326961156,'89.249.85.101'),(1326959309,'88.119.157.172'),(1326955928,'81.7.66.203'),(1326949420,'111.77.194.219'),(1326914853,'195.182.81.98'),(1326908610,'74.125.78.85'),(1326906335,'91.187.179.75'),(1326897235,'78.60.16.108'),(1326895706,'78.58.16.191'),(1326892863,'78.60.171.253'),(1326835687,'46.36.67.41'),(1326828389,'195.182.81.98'),(1326810112,'88.119.157.180'),(1326802906,'213.197.132.122'),(1326799138,'193.219.167.72'),(1326798003,'78.61.90.148'),(1326790187,'158.129.128.56'),(1326786300,'74.125.17.146'),(1326786286,'209.85.226.81'),(1326741793,'195.182.81.98'),(1326724074,'86.38.185.220'),(1326717618,'84.15.185.217'),(1326716461,'82.135.200.225'),(1326715559,'88.119.187.34'),(1326652019,'195.182.81.98'),(1326650498,'82.135.226.200'),(1326565399,'195.182.81.98'),(1326565206,'84.172.2.223'),(1326562258,'78.60.243.233'),(1326560043,'78.58.198.25'),(1326558080,'188.40.84.81'),(1326547274,'82.135.226.200'),(1326540836,'212.52.41.93'),(1326475625,'195.182.81.98'),(1326468585,'176.9.87.106'),(1326459048,'81.7.97.160'),(1326440650,'150.70.75.36'),(1326439451,'81.7.97.171'),(1326391764,'87.247.98.43'),(1326389222,'195.182.81.98'),(1326374586,'82.135.226.200'),(1326372340,'193.219.94.133'),(1326357567,'203.168.166.186'),(1326303791,'78.58.141.76'),(1326302792,'195.182.81.98'),(1326296478,'78.58.73.20'),(1326276551,'195.254.168.252'),(1326268010,'77.241.193.88'),(1326227330,'78.58.125.43'),(1326216229,'195.182.81.98'),(1326208360,'62.212.203.185'),(1326202528,'82.135.214.147'),(1326176726,'82.135.226.200'),(1326144963,'46.249.171.42'),(1326144721,'78.60.37.18'),(1326140073,'78.58.125.43'),(1326139401,'78.60.253.245'),(1326126449,'195.182.81.98'),(1326126126,'173.212.209.212'),(1326109667,'195.182.91.245'),(1326107870,'78.56.43.129'),(1326101897,'88.223.25.195'),(1326098314,'81.7.97.224'),(1326063658,'173.212.209.206'),(1326040033,'195.182.81.98'),(1326035600,'78.62.80.16'),(1325959393,'46.249.171.42'),(1325956034,'78.58.56.221'),(1325955033,'78.61.7.225'),(1325953429,'195.182.81.98'),(1325936157,'78.58.105.86'),(1325908276,'78.60.94.9'),(1325884207,'88.223.35.77'),(1325863652,'195.182.81.98'),(1325853465,'41.82.147.167'),(1325837418,'82.135.226.200'),(1325820227,'198.145.116.13'),(1325795560,'78.61.7.225'),(1325777241,'195.182.81.98'),(1325775296,'217.117.24.253'),(1325772701,'78.56.43.129'),(1325767594,'195.182.91.245'),(1325764477,'178.19.26.39'),(1325762947,'82.135.241.136'),(1325748034,'82.135.226.200'),(1325742971,'82.135.196.249'),(1325725737,'212.52.54.77'),(1325716298,'62.75.181.210'),(1325714273,'78.58.95.105'),(1325713065,'188.40.84.81'),(1325704290,'84.15.184.243'),(1325690655,'195.182.81.98'),(1325684639,'78.56.43.129'),(1325683417,'88.119.151.9'),(1325682345,'178.250.37.124'),(1325680563,'217.117.24.253'),(1325680022,'198.145.116.13'),(1325679871,'83.171.0.181'),(1325670522,'188.40.124.205'),(1325664635,'84.15.187.35'),(1325657588,'195.182.91.245'),(1325620278,'78.58.105.86'),(1325603092,'78.60.3.85'),(1325600866,'195.182.81.98'),(1325592832,'188.69.226.243'),(1325534489,'213.164.114.183'),(1325514269,'195.182.81.98'),(1325513105,'88.119.23.178'),(1325510989,'78.58.78.203'),(1325503687,'195.182.91.245'),(1325501451,'213.226.172.248'),(1325498676,'193.219.10.130'),(1325443128,'84.45.53.2'),(1325441898,'86.38.183.221'),(1325426504,'78.46.73.230'),(1325424479,'195.182.81.98'),(1325420738,'78.140.138.39'),(1324689395,'178.117.42.244'),(1324726163,'195.182.81.98'),(1324730118,'216.38.216.220'),(1324733091,'82.135.226.200'),(1324752663,'178.174.182.224'),(1324772665,'184.73.9.68'),(1324815885,'195.182.81.98'),(1324820495,'78.157.74.209'),(1324821814,'78.58.27.39'),(1324822828,'78.58.105.86'),(1324848195,'93.114.47.254'),(1324892384,'79.142.113.90'),(1324902290,'195.182.81.98'),(1324910406,'150.70.64.197'),(1324914088,'78.58.109.27'),(1324924940,'178.68.38.64'),(1324967113,'82.135.198.145'),(1324976467,'82.135.139.69'),(1324988906,'195.182.81.98'),(1325018303,'107.22.18.221'),(1325042037,'84.46.222.97'),(1325065542,'82.135.139.69'),(1325065769,'82.135.242.251'),(1325075313,'195.182.81.98'),(1325151247,'82.135.226.200'),(1325161714,'195.182.81.98'),(1325164365,'188.40.124.205'),(1325190950,'78.60.21.44'),(1325194947,'213.133.123.53'),(1325196470,'84.169.81.13'),(1325230444,'50.16.128.241'),(1325251507,'195.182.81.98'),(1325259514,'188.40.124.153'),(1325259635,'80.240.5.93'),(1325261973,'78.56.43.129'),(1325280361,'212.122.68.139'),(1325281269,'90.237.172.132'),(1325308840,'69.28.58.19'),(1325331754,'78.157.76.44'),(1325338064,'195.182.81.98'),(1327588414,'88.223.41.53'),(1327589542,'78.58.193.242'),(1327590779,'193.41.197.188'),(1327593691,'109.58.107.239'),(1327594307,'78.61.89.237'),(1327594451,'78.58.125.43'),(1327594484,'78.58.127.15'),(1327595039,'78.58.61.235'),(1327595195,'88.118.92.24'),(1327595325,'78.62.117.62'),(1327595727,'78.60.49.249'),(1327596100,'62.80.225.113'),(1327596354,'88.216.40.216'),(1327596641,'78.61.42.121'),(1327596974,'188.180.189.43'),(1327597305,'78.58.234.6'),(1327600590,'78.63.255.92'),(1327600696,'77.221.78.206'),(1327600855,'82.135.226.200'),(1327602453,'78.63.102.48'),(1327602610,'212.59.17.9'),(1327603467,'62.212.207.252'),(1327604224,'62.80.249.13'),(1327604636,'194.176.32.66'),(1327604844,'84.15.191.234'),(1327606120,'86.100.84.100'),(1327606179,'78.60.235.59'),(1327606342,'212.122.93.74'),(1327607230,'78.58.78.3'),(1327609404,'62.212.201.28'),(1327609489,'78.58.18.103'),(1327609953,'78.62.231.17'),(1327610338,'78.60.115.171'),(1327610983,'92.225.126.71'),(1327613140,'195.182.81.98'),(1327616410,'95.173.38.138'),(1327616905,'88.118.33.194'),(1327641591,'193.219.10.130'),(1327641607,'213.226.135.86'),(1327643833,'89.204.154.125'),(1327644621,'81.7.103.203'),(1327645175,'81.7.97.158'),(1327645509,'81.7.98.136'),(1327646829,'88.119.253.102'),(1327646851,'195.182.67.8'),(1327647058,'83.171.7.66'),(1327647282,'195.182.69.120'),(1327649792,'210.22.13.104'),(1327649792,'184.154.101.222'),(1327649820,'107.10.46.7'),(1327649949,'82.140.152.129'),(1327650472,'84.15.179.73'),(1327651493,'212.59.5.243'),(1327652421,'195.182.68.155'),(1327653261,'78.62.13.233'),(1327654312,'81.7.97.182'),(1327654534,'148.188.1.60'),(1327657680,'195.182.91.245'),(1327657865,'212.52.38.47'),(1327658641,'81.7.78.166'),(1327660312,'88.119.23.178'),(1327660464,'77.90.99.206'),(1327660717,'78.63.113.143'),(1327662604,'78.60.88.42'),(1327662709,'46.7.245.58'),(1327664146,'213.190.63.65'),(1327665064,'82.135.222.161'),(1327665102,'77.90.99.205'),(1327665749,'84.55.46.84'),(1327665839,'88.119.152.235'),(1327665967,'78.63.104.199'),(1327666126,'193.219.12.68'),(1327667507,'193.219.74.132'),(1327670743,'78.58.36.212'),(1327671854,'78.58.81.141'),(1327673143,'78.157.75.196'),(1327674951,'82.135.254.218'),(1327678407,'86.100.42.150'),(1327678717,'78.57.52.176'),(1327682155,'178.19.20.15'),(1327683826,'78.58.30.60'),(1327685071,'109.193.63.134'),(1327687516,'78.57.240.87'),(1327687799,'46.115.18.162'),(1327689790,'78.58.23.236'),(1327691958,'92.229.112.13'),(1327692465,'78.62.247.205'),(1327699571,'195.182.81.98'),(1327701967,'77.221.86.110'),(1327729339,'213.226.170.218'),(1327737162,'78.56.139.93'),(1327740208,'78.58.73.20'),(1327741175,'81.7.97.182'),(1327741328,'82.135.226.200'),(1327747352,'88.222.234.218'),(1327760527,'81.208.94.13'),(1327768490,'77.221.78.206'),(1327773026,'78.63.255.27'),(1327773442,'78.58.16.74'),(1327774141,'212.12.212.29'),(1327789332,'195.182.81.98'),(1327809494,'80.86.81.6'),(1327811791,'82.135.199.118'),(1327818469,'82.135.241.164'),(1327829433,'80.240.7.209'),(1327837474,'82.135.226.200'),(1327842388,'88.119.157.172');
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_vcnt` ENABLE KEYS */;

--
-- Table structure for table `jos_vcnt_pc`
--

DROP TABLE IF EXISTS `jos_vcnt_pc`;
CREATE TABLE `jos_vcnt_pc` (
  `cnt` int(11) NOT NULL default '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_vcnt_pc`
--


/*!40000 ALTER TABLE `jos_vcnt_pc` DISABLE KEYS */;
LOCK TABLES `jos_vcnt_pc` WRITE;
INSERT INTO `jos_vcnt_pc` VALUES (432);
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_vcnt_pc` ENABLE KEYS */;

--
-- Table structure for table `jos_vvcounter_logs`
--

DROP TABLE IF EXISTS `jos_vvcounter_logs`;
CREATE TABLE `jos_vvcounter_logs` (
  `time` int(10) unsigned NOT NULL,
  `visits` mediumint(8) unsigned NOT NULL default '0',
  `guests` mediumint(8) unsigned NOT NULL default '0',
  `members` mediumint(8) unsigned NOT NULL default '0',
  `bots` mediumint(8) unsigned NOT NULL default '0',
  UNIQUE KEY `time` (`time`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `jos_vvcounter_logs`
--


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

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

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

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


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

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

