-- MySQL dump 10.10
--
-- Host: localhost    Database: torrent_test_lt
-- ------------------------------------------------------
-- 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 `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',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,363,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,363,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,358,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,358,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,977,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,987,1,'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 `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);
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,'Latest','','labai-svarbu','taking_notes.jpg','1','right','<p>The latest news from the Joomla! Team</p>',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','<p>General facts about Joomla!</p>',1,0,'0000-00-00 00:00:00',NULL,1,0,0,''),(27,0,'New to Joomla!','','new-to-joomla','','3','left','Questions for new users of Joomla!',1,0,'0000-00-00 00:00:00',NULL,3,0,0,''),(30,0,'The Community','','the-community','','4','left','About the millions of Joomla! users and Web sites<br />',1,0,'0000-00-00 00:00:00',NULL,3,0,0,''),(31,0,'General','','general','','3','left','General questions about the Joomla! CMS',1,0,'0000-00-00 00:00:00',NULL,1,0,0,''),(38,0,'16 hz','','16-hz','','13','left','',0,0,'0000-00-00 00:00:00',NULL,1,0,0,''),(39,0,'aitvaras','','aitvaras','','13','left','',0,0,'0000-00-00 00:00:00',NULL,2,0,0,''),(33,0,'Joomla! Promo','','joomla-promo','','com_banner','left','',1,0,'0000-00-00 00:00:00',NULL,1,0,0,''),(34,0,'mokslai','','mokslai','','5','left','',1,0,'0000-00-00 00:00:00',NULL,1,0,0,''),(36,0,'sekcija','','sekcija','','12','left','',1,0,'0000-00-00 00:00:00',NULL,4,0,0,''),(37,0,'sekcija','','sekcija','','11','left','',1,0,'0000-00-00 00:00:00',NULL,1,0,0,''),(40,0,'aliukai','','aliukai','','13','left','',0,0,'0000-00-00 00:00:00',NULL,3,0,0,''),(41,0,'angelas','','angelas','','13','left','',0,0,'0000-00-00 00:00:00',NULL,4,0,0,''),(42,0,'antis','','antis','','13','left','',0,0,'0000-00-00 00:00:00',NULL,2,0,0,''),(44,0,'naujienos','','naujienos','','14','left','',1,0,'0000-00-00 00:00:00',NULL,0,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\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',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,'site=lt-LT\nadministrator=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);
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,'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 `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,'Welcome to Joomla!','welcome-to-joomla','','<div align=\"left\"><strong>Joomla! is a free open source framework and content publishing system designed for quickly creating highly interactive multi-language Web sites, online communities, media portals, blogs and eCommerce applications. <br /></strong></div><p><strong><br /></strong><img src=\"images/stories/powered_by.png\" border=\"0\" alt=\"Joomla! Logo\" title=\"Example Caption\" hspace=\"6\" vspace=\"0\" width=\"165\" height=\"68\" align=\"left\" />Joomla! provides an easy-to-use graphical user interface that simplifies the management and publishing of large volumes of content including HTML, documents, and rich media.  Joomla! is used by organisations of all sizes for intranets and extranets and is supported by a community of tens of thousands of users. </p>','With a fully documented library of developer resources, Joomla! allows the customisation of every aspect of a Web site including presentation, layout, administration, and the rapid integration with third-party applications.<p>Joomla! now provides more developer power while making the user experience all the more friendly. For those who always wanted increased extensibility, Joomla! 1.5 can make this happen.</p><p>A new framework, ground-up refactoring, and a highly-active development team brings the excitement of \'the next generation CMS\' to your fingertips.  Whether you are a systems architect or a complete \'noob\' Joomla! can take you to the next level of content delivery. \'More than a CMS\' is something we have been playing with as a catchcry because the new Joomla! API has such incredible power and flexibility, you are free to take whatever direction your creative mind takes you and Joomla! can help you get there so much more easily than ever before.</p><p>Thinking Web publishing? Think Joomla!</p>',-2,1,0,1,'2008-08-12 10:00:00',62,'','2008-08-12 10:00:00',62,0,'0000-00-00 00:00:00','2006-01-03 01:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',29,0,0,'','',0,92,'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>','',-2,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,0,'','',0,1,'robots=\nauthor='),(5,'Joomla! License Guidelines','joomla-license-guidelines','joomla-license-guidelines','<p>This Web site is powered by <a href=\"http://joomla.org/\" target=\"_blank\" title=\"Joomla!\">Joomla!</a> The software and default templates on which it runs are Copyright 2005-2008 <a href=\"http://www.opensourcematters.org/\" target=\"_blank\" title=\"Open Source Matters\">Open Source Matters</a>. The sample content distributed with Joomla! is licensed under the <a href=\"http://docs.joomla.org/JEDL\" target=\"_blank\" title=\"Joomla! Electronic Document License\">Joomla! Electronic Documentation License.</a> All data entered into this Web site and templates added after installation, are copyrighted by their respective copyright owners.</p> <p>If you want to distribute, copy, or modify Joomla!, you are welcome to do so under the terms of the <a href=\"http://www.gnu.org/licenses/old-licenses/gpl-2.0.html#SEC1\" target=\"_blank\" title=\"GNU General Public License\"> GNU General Public License</a>. If you are unfamiliar with this license, you might want to read <a href=\"http://www.gnu.org/licenses/old-licenses/gpl-2.0.html#SEC4\" target=\"_blank\" title=\"How To Apply These Terms To Your Program\">\'How To Apply These Terms To Your Program\'</a> and the <a href=\"http://www.gnu.org/licenses/old-licenses/gpl-2.0-faq.html\" target=\"_blank\" title=\"GNU General Public License FAQ\">\'GNU General Public License FAQ\'</a>.</p> <p>The Joomla! licence has always been GPL.</p>','',-2,4,0,25,'2008-08-20 10:11:07',62,'','2008-08-20 10:11:07',62,0,'0000-00-00 00:00:00','2004-08-19 06:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',7,0,0,'','',0,104,'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>','',-2,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,0,'','',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>','',-2,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,0,'','',0,23,'robots=\nauthor='),(49,'algebra','algebra','','<p>123</p>','',0,11,0,37,'2010-03-16 11:49:34',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-03-16 11:49:34','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,3,'','',0,15,'robots=\nauthor='),(50,'geometrija','geometrija','','<p>456</p>','',0,11,0,37,'2010-03-16 11:50:11',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-03-16 11:50:11','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,2,'','',0,11,'robots=\nauthor='),(51,'aritmetika','aritmetika','','<p>789</p>','',0,11,0,37,'2010-03-16 11:50:48',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-03-16 11:50:48','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,1,'','',0,11,'robots=\nauthor='),(52,'kirciavimas','kirciavimas','','<p>10 11 12</p>','',0,12,0,36,'2010-03-16 11:51:16',62,'','0000-00-00 00:00:00',0,62,'2010-03-21 09:57:28','2010-03-16 11:51:16','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,2,'','',0,5,'robots=\nauthor='),(53,'gramatika','gramatika','','<address>sdadddddddwwecdewdweddweqd</address>\r\n<p> </p>\r\n','\r\n<p>kkkijinhbnhbgcvrfdxsdxfggghgyhuhuygtgvlllkknmnnmkknnjjjmmkkmkkkmm</p>\r\n<p>nhbuhgbvyctdfxcdgfctgyhujhijuhythgfgjhguiyfyktftf</p>\r\n<hr />\r\n<hr />\r\n<hr />\r\n<hr />\r\n<hr />\r\n<p> </p>\r\n<p> </p>\r\n<p> </p>\r\n<p> </p>\r\n<p> </p>\r\n<p> </p>\r\n<p> </p>\r\n<p> </p>',0,12,0,36,'2010-03-16 11:51:50',62,'','2010-03-16 13:28:43',62,0,'0000-00-00 00:00:00','2010-03-16 11:51:50','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=1\nshow_section=\nlink_section=0\nshow_category=0\nlink_category=0\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=lt-LT\nkeyref=\nreadmore=ssas',13,0,1,'','',0,32,'robots=\nauthor='),(54,'16 Hz)  AŠ TAVĘS TAIP ILGAI NEMAČIAU ','16-hz-a-tavs-taip-ilgai-nemaiau-','','<p> </p>\r\n<!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:HyphenationZone>19</w:HyphenationZone> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> </w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" LatentStyleCount=\"156\"> </w:LatentStyles> </xml><![endif]--><!--  /* Font Definitions */  @font-face 	{font-family:Verdana; 	panose-1:2 11 6 4 3 5 4 4 2 4; 	mso-font-charset:186; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:536871559 0 0 0 415 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-parent:\"\"; 	margin:0cm; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:12.0pt; 	font-family:\"Times New Roman\"; 	mso-fareast-font-family:\"Times New Roman\"; 	mso-ansi-language:EN-GB; 	mso-fareast-language:EN-US;} span.postbody1 	{mso-style-name:postbody1; 	mso-ansi-font-size:10.0pt; 	mso-bidi-font-size:10.0pt; 	letter-spacing:15.05pt;} @page Section1 	{size:595.3pt 841.9pt; 	margin:72.0pt 90.0pt 72.0pt 90.0pt; 	mso-header-margin:35.4pt; 	mso-footer-margin:35.4pt; 	mso-paper-source:0;} div.Section1 	{page:Section1;} --><!--[if gte mso 10]> <mce:style><!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:\"Įprastoji lentelė\"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-parent:\"\"; 	mso-padding-alt:0cm 5.4pt 0cm 5.4pt; 	mso-para-margin:0cm; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:\"Times New Roman\"; 	mso-ansi-language:#0400; 	mso-fareast-language:#0400; 	mso-bidi-language:#0400;} --> <!--[endif]-->\r\n<p class=\"MsoNormal\"><span class=\"postbody1\"><span style=\"font-size: 10pt; font-family: Verdana; letter-spacing: 0pt;\" lang=\"EN-GB\">Aš tavęs taip ilgai nemačiau </span></span><span style=\"font-size: 10pt; font-family: Verdana;\" lang=\"EN-GB\"><br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Tik menu šalta vakaro gruodą </span></span><br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Švietė akys nei žvaigždės skaisčiau </span></span><br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Šildė širdį ir gatvę vėjuotą. </span></span><br /> <br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Mes tą vakarą ėjom vieni </span></span><br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Neieškojom tylos nei paguodos </span></span><br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Tik kažkur atminties praeitį </span></span><br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Supo lizdą dvejonės speiguotos </span></span><br /> <br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">PRIEDAINIS:Tik širdis ima plakti skardžiau </span></span><br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Ir nešalta man naktį vėjuota </span></span><br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Aš tavęs taip ilgai nemačiau </span></span><br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Abejonės ramybės neduoda. </span></span><br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Tik širdis ima plakti skardžiau </span></span><br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Ir nešalta man naktį vėjuota </span></span><br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Aš tavęs taip ilgai nemačiau </span></span><br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Abejonės ramybės neduoda. </span></span><br /> <br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">PRAGROJIMAS: </span></span><br /> <br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Ar sueis dar kada tie keliai </span></span><br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Mus atvedę į mėlyną viltį </span></span><br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Ar nuslūgs tarsi dumblas giliai </span></span><br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Tai kas tąkart turėjo iškilti </span></span><br /> <br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Ar ir liksim vieni atskirai </span></span><br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Kaip tie medžiai prie kelio subėgę </span></span><br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Kaip tie slyvų sausi stagarai </span></span><br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Prie to kelio pasvirę bejėgiai. </span></span><br /> <br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">PRIEDAINIS:</span></span></span></p>','',1,13,0,38,'2010-03-17 20:28:32',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-03-17 20:28:32','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,5,'','',0,2,'robots=\nauthor='),(11,'How do I upgrade to Joomla! 1.5 ?','how-do-i-upgrade-to-joomla-15','','<p>Joomla! 1.5 does not provide an upgrade path from earlier versions. Converting an older site to a Joomla! 1.5 site requires creation of a new empty site using Joomla! 1.5 and then populating the new site with the content from the old site. This migration of content is not a one-to-one process and involves conversions and modifications to the content dump.</p> <p>There are two ways to perform the migration:</p>',' <div id=\"post_content-107\"><li>An automated method of migration has been provided which uses a migrator Component to create the migration dump out of the old site (Mambo 4.5.x up to Joomla! 1.0.x) and a smart import facility in the Joomla! 1.5 Installation that performs required conversions and modifications during the installation process.</li> <li>Migration can be performed manually. This involves exporting the required tables, manually performing required conversions and modifications and then importing the content to the new site after it is installed.</li>  <p><!--more--></p> <h2><strong> Automated migration</strong></h2>  <p>This is a two phased process using two tools. The first tool is a migration Component named <font face=\"courier new,courier\">com_migrator</font>. This Component has been contributed by Harald Baer and is based on his <strong>eBackup </strong>Component. The migrator needs to be installed on the old site and when activated it prepares the required export dump of the old site\'s data. The second tool is built into the Joomla! 1.5 installation process. The exported content dump is loaded to the new site and all conversions and modification are performed on-the-fly.</p> <h3><u> Step 1 - Using com_migrator to export data from old site:</u></h3> <li>Install the <font face=\"courier new,courier\">com_migrator</font> Component on the <u><strong>old</strong></u> site. It can be found at the <a href=\"http://joomlacode.org/gf/project/pasamioprojects/frs/\" target=\"_blank\" title=\"JoomlaCode\">JoomlaCode developers forge</a>.</li> <li>Select the Component in the Component Menu of the Control Panel.</li> <li>Click on the <strong>Dump it</strong> icon. Three exported <em>gzipped </em>export scripts will be created. The first is a complete backup of the old site. The second is the migration content of all core elements which will be imported to the new site. The third is a backup of all 3PD Component tables.</li> <li>Click on the download icon of the particular exports files needed and store locally.</li> <li>Multiple export sets can be created.</li> <li>The exported data is not modified in anyway and the original encoding is preserved. This makes the <font face=\"courier new,courier\">com_migrator</font> tool a recommended tool to use for manual migration as well.</li> <h3><u> Step 2 - Using the migration facility to import and convert data during Joomla! 1.5 installation:</u></h3><p>Note: This function requires the use of the <em><font face=\"courier new,courier\">iconv </font></em>function in PHP to convert encodings. If <em><font face=\"courier new,courier\">iconv </font></em>is not found a warning will be provided.</p> <li>In step 6 - Configuration select the \'Load Migration Script\' option in the \'Load Sample Data, Restore or Migrate Backed Up Content\' section of the page.</li> <li>Enter the table prefix used in the content dump. For example: \'jos_\' or \'site2_\' are acceptable values.</li> <li>Select the encoding of the dumped content in the dropdown list. This should be the encoding used on the pages of the old site. (As defined in the _ISO variable in the language file or as seen in the browser page info/encoding/source)</li> <li>Browse the local host and select the migration export and click on <strong>Upload and Execute</strong></li> <li>A success message should appear or alternately a listing of database errors</li> <li>Complete the other required fields in the Configuration step such as Site Name and Admin details and advance to the final step of installation. (Admin details will be ignored as the imported data will take priority. Please remember admin name and password from the old site)</li> <p><u><br /></u></p></div>',-2,3,0,28,'2008-07-30 20:27:52',62,'','2008-07-30 20:27:52',62,0,'0000-00-00 00:00:00','2006-09-29 12:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',10,0,0,'','',0,14,'robots=\nauthor='),(13,'What happened to the locale setting?','what-happened-to-the-locale-setting','','This is now defined in the Language [<em>lang</em>].xml file in the Language metadata settings. If you are having locale problems such as dates do not appear in your language for example, you might want to check/edit the entries in the locale tag. Note that multiple locale strings can be set and the host will usually accept the first one recognised.','',-2,3,0,28,'2008-08-06 16:47:35',62,'','2008-08-06 16:47:35',62,0,'0000-00-00 00:00:00','2006-10-05 14:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',7,0,0,'','',0,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>','',-2,3,0,31,'2008-08-06 21:27:49',62,'','2008-08-06 21:27:49',62,0,'0000-00-00 00:00:00','2006-10-05 16:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=',6,0,0,'','',0,23,'robots=\nauthor='),(16,'Only one edit window! How do I create \"Read more...\"?','only-one-edit-window-how-do-i-create-read-more','','<p>This is now implemented by inserting a <strong>Read more...</strong> tag (the button is located below the editor area) a dotted line appears in the edited text showing the split location for the <em>Read more....</em> A new Plugin takes care of the rest.</p><p>It is worth mentioning that this does not have a negative effect on migrated data from older sites. The new implementation is fully backward compatible.</p>','',-2,3,0,28,'2008-08-06 19:29:28',62,'','2008-08-06 19:29:28',62,0,'0000-00-00 00:00:00','2006-10-05 14:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',7,0,0,'','',0,28,'robots=\nauthor='),(18,'bandymas','daa','','<p> </p>\r\n<!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:HyphenationZone>19</w:HyphenationZone> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> </w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" LatentStyleCount=\"156\"> </w:LatentStyles> </xml><![endif]--><!--  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-parent:\"\"; 	margin:0cm; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:12.0pt; 	mso-bidi-font-size:10.0pt; 	font-family:\"Times New Roman\"; 	mso-fareast-font-family:\"Times New Roman\"; 	mso-ansi-language:EN-GB;} @page Section1 	{size:612.0pt 792.0pt; 	margin:3.0cm 1.0cm 2.0cm 3.0cm; 	mso-header-margin:1.0cm; 	mso-footer-margin:1.0cm; 	mso-paper-source:0;} div.Section1 	{page:Section1;} --><!--[if gte mso 10]> <mce:style><!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:\"Įprastoji lentelė\"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-parent:\"\"; 	mso-padding-alt:0cm 5.4pt 0cm 5.4pt; 	mso-para-margin:0cm; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:\"Times New Roman\"; 	mso-ansi-language:#0400; 	mso-fareast-language:#0400; 	mso-bidi-language:#0400;} --> <!--[endif]--> \r\n<ul>\r\n<li>\r\n<h4 class=\"MsoNormal\" style=\"margin-right: -4.05pt; text-align: center;\"><span style=\"text-decoration: underline;\"><strong><span style=\"font-size: 16pt;\">Mokinių adaptacijos mokykloje ir klaseje tyrimas</span></strong></span></h4>\r\n</li>\r\n<li>\r\n<h4 class=\"MsoNormal\" style=\"margin-right: -4.05pt; text-align: center;\"><span style=\"text-decoration: underline;\"><strong><span><span style=\"text-decoration: none;\"> </span></span></strong></span></h4>\r\n</li>\r\n<li>\r\n<h4 class=\"MsoNormal\" style=\"margin-right: -36pt; text-align: justify; line-height: 150%;\"><strong><span style=\"line-height: 150%;\"><span style=\"text-decoration: underline;\">Tyrimas buvo atliktas 2005 metais, Lapkričio mėnesio pabaigoje. Tyrime dalyvavo Tytuvėnų vidurinės mokyklos 1 a klasės mokinių tėveliai. Greitam duomenų surinkimui ir rezultatų objektyvumui gauti, buvo naudojama anketinė apklausa. </span></span><span style=\"line-height: 150%;\">Siekiant atsakyti į tyrimo klausimus, buvo sudarytos kiekybinio tipo anketos, kurias pildė 1 a klasės 15 tėvelių (nes jie nuolat bendrauja su savo vaiku ir gali objektyviai atsakyti į klausimus). Anketavimas vyko sklandžiai. Anketas pildę tėveliai didelių sunkumų nepatyrė. Visi savo darbą atliko beveik iki galo, taigi, anketų grįžtamumas buvo 100 procentinis.</span></strong></h4>\r\n</li>\r\n</ul>\r\n<h4 class=\"MsoNormal\" style=\"margin-right: -36pt; text-align: justify; line-height: 150%;\"><span style=\"line-height: 150%;\"><strong>Tyrimo metu buvo siekiama nustatyti pirmokėlių adaptaciją mokykloje ir klasėje.</strong></span></h4>','',-2,4,0,25,'2010-03-15 00:00:00',62,'','2010-03-16 10:26:09',62,0,'0000-00-00 00:00:00','2010-03-07 00:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=1\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',16,0,0,'','',0,0,'robots=\nauthor='),(19,'antras','joomla-overview','','<p> </p>\r\n<!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:HyphenationZone>19</w:HyphenationZone> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> </w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" LatentStyleCount=\"156\"> </w:LatentStyles> </xml><![endif]-->\r\n<p>&lt;!--  /* Font Definitions */  @font-face 	{font-family:Verdana; 	panose-1:2 11 6 4 3 5 4 4 2 4; 	mso-font-charset:186; 	mso-generic-font-family:swiss; 	mso-font-pitch:variable; 	mso-font-signature:536871559 0 0 0 415 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-parent:\"\"; 	margin:0cm; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:12.0pt; 	font-family:\"Times New Roman\"; 	mso-fareast-font-family:\"Times New Roman\"; 	mso-ansi-language:EN-GB; 	mso-fareast-language:EN-US;} span.postbody1 	{mso-style-name:postbody1; 	mso-ansi-font-size:10.0pt; 	mso-bidi-font-size:10.0pt; 	letter-spacing:15.05pt;} @page Section1 	{size:595.3pt 841.9pt; 	margin:72.0pt 90.0pt 72.0pt 90.0pt; 	mso-header-margin:35.4pt; 	mso-footer-margin:35.4pt; 	mso-paper-source:0;} div.Section1 	{page:Section1;} --&gt;</p>\r\n<!--[if gte mso 10]> <mce:style><!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:\"Įprastoji lentelė\"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-parent:\"\"; 	mso-padding-alt:0cm 5.4pt 0cm 5.4pt; 	mso-para-margin:0cm; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:\"Times New Roman\"; 	mso-ansi-language:#0400; 	mso-fareast-language:#0400; 	mso-bidi-language:#0400;} --> <!--[endif]--><!--[if gte mso 9]><xml> <o:shapedefaults v:ext=\"edit\" spidmax=\"1026\" /> </xml><![endif]--><!--[if gte mso 9]><xml> <o:shapelayout v:ext=\"edit\"> <o:idmap v:ext=\"edit\" data=\"1\" /> </o:shapelayout></xml><![endif]-->\r\n<p class=\"MsoNormal\"><span class=\"postbody1\"><span style=\"font-size: 10pt; font-family: Verdana; letter-spacing: 0pt;\" lang=\"EN-GB\">16 Hz) </span></span><span style=\"font-size: 10pt; font-family: Verdana;\" lang=\"EN-GB\"><br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">AŠ TAVĘS TAIP ILGAI NEMAČIAU </span></span><br /> <br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Aš tavęs taip ilgai nemačiau </span></span><br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Tik menu šalta vakaro gruodą </span></span><br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Švietė akys nei žvaigždės skaisčiau </span></span><br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Šildė širdį ir gatvę vėjuotą. </span></span><br /> <br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Mes tą vakarą ėjom vieni </span></span><br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Neieškojom tylos nei paguodos </span></span><br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Tik kažkur atminties praeitį </span></span><br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Supo lizdą dvejonės speiguotos </span></span><br /> <br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">PRIEDAINIS:Tik širdis ima plakti skardžiau </span></span><br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Ir nešalta man naktį vėjuota </span></span><br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Aš tavęs taip ilgai nemačiau </span></span><br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Abejonės ramybės neduoda. </span></span><br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Tik širdis ima plakti skardžiau </span></span><br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Ir nešalta man naktį vėjuota </span></span><br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Aš tavęs taip ilgai nemačiau </span></span><br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Abejonės ramybės neduoda. </span></span><br /> <br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">PRAGROJIMAS: </span></span><br /> <br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Ar sueis dar kada tie keliai </span></span><br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Mus atvedę į mėlyną viltį </span></span><br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Ar nuslūgs tarsi dumblas giliai </span></span><br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Tai kas tąkart turėjo iškilti </span></span><br /> <br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Ar ir liksim vieni atskirai </span></span><br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Kaip tie medžiai prie kelio subėgę </span></span><br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Kaip tie slyvų sausi stagarai </span></span><br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">Prie to kelio pasvirę bejėgiai. </span></span><br /> <br /> <span class=\"postbody1\"><span style=\"letter-spacing: 0pt;\">PRIEDAINIS:</span></span></span></p>','',-2,4,0,29,'2008-08-01 00:00:00',62,'','2010-03-11 21:30:11',62,0,'0000-00-00 00:00:00','2010-03-01 00:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=0\nshow_create_date=\nshow_modify_date=1\nshow_pdf_icon=1\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',29,0,0,'','',0,220,'robots=\nauthor='),(20,'Support and Documentation','support-and-documentation','','<h1>Support </h1><p>Support for the Joomla! CMS can be found on several places. The best place to start would be the <a href=\"http://docs.joomla.org/\" target=\"_blank\" title=\"Joomla! Official Documentation Wiki\">Joomla! Official Documentation Wiki</a>. Here you can help yourself to the information that is regularly published and updated as Joomla! develops. There is much more to come too!</p> <p>Of course you should not forget the Help System of the CMS itself. On the <em>topmenu </em>in the Back-end Control panel you find the Help button which will provide you with lots of explanation on features.</p> <p>Another great place would of course be the <a href=\"http://forum.joomla.org/\" target=\"_blank\" title=\"Forum\">Forum</a> . On the Joomla! Forum you can find help and support from Community members as well as from Joomla! Core members and Working Group members. The forum contains a lot of information, FAQ\'s, just about anything you are looking for in terms of support.</p> <p>Two other resources for Support are the <a href=\"http://developer.joomla.org/\" target=\"_blank\" title=\"Joomla! Developer Site\">Joomla! Developer Site</a> and the <a href=\"http://extensions.joomla.org/\" target=\"_blank\" title=\"Joomla! Extensions Directory\">Joomla! Extensions Directory</a> (JED). The Joomla! Developer Site provides lots of technical information for the experienced Developer as well as those new to Joomla! and development work in general. The JED whilst not a support site in the strictest sense has many of the Extensions that you will need as you develop your own Web site.</p> <p>The Joomla! Developers and Bug Squad members are regularly posting their blog reports about several topics such as programming techniques and security issues.</p> <h1>Documentation</h1> <p>Joomla! Documentation can of course be found on the <a href=\"http://docs.joomla.org/\" target=\"_blank\" title=\"Joomla! Official Documentation Wiki\">Joomla! Official Documentation Wiki</a>. You can find information for beginners, installation, upgrade, Frequently Asked Questions, developer topics, and a lot more. The Documentation Team helps oversee the wiki but you are invited to contribute content, as well.</p> <p>There are also books written about Joomla! You can find a listing of these books in the <a href=\"http://shop.joomla.org/\" target=\"_blank\" title=\"Joomla! Shop\">Joomla! Shop</a>.</p>','',-2,4,0,25,'2008-08-09 08:33:57',62,'','2008-08-09 08:33:57',62,0,'0000-00-00 00:00:00','2006-10-07 10:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',13,0,0,'','',0,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>','',-2,4,0,30,'2008-08-09 16:46:37',62,'','2008-08-09 16:46:37',62,0,'0000-00-00 00:00:00','2006-10-07 14:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',13,0,0,'','',0,50,'robots=\nauthor='),(22,'What\'s New in 1.5?','whats-new-in-15','','<p>Stai yra pagrindinis tekstas.</p>\r\n<p> </p>\r\n<p>sudas:</p>\r\n<p> </p>\r\n','\r\n<p> </p>',-2,4,0,29,'2008-08-11 22:13:58',62,'','2010-03-09 19:37:10',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=1\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=1\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=skaityti daugiau',19,0,0,'','',0,148,'robots=\nauthor='),(23,'Platforms and Open Standards','platforms-and-open-standards','','<p class=\"MsoNormal\">Joomla! runs on any platform including Windows, most flavours of Linux, several Unix versions, and the Apple OS/X platform.  Joomla! depends on PHP and the MySQL database to deliver dynamic content.  </p>            <p class=\"MsoNormal\">The minimum requirements are:</p>      <ul><li>Apache 1.x, 2.x and higher</li><li>PHP 4.3 and higher</li><li>MySQL 3.23 and higher</li></ul>It will also run on alternative server platforms such as Windows IIS - provided they support PHP and MySQL - but these require additional configuration in order for the Joomla! core package to be successful installed and operated.','',-2,4,0,25,'2008-08-11 04:22:14',62,'','2008-08-11 04:22:14',62,0,'0000-00-00 00:00:00','2006-10-10 08:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',7,0,0,'','',0,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>','',-2,4,0,29,'2008-08-12 22:33:10',62,'','2008-08-12 22:33:10',62,0,'0000-00-00 00:00:00','2006-10-11 06:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',11,0,0,'','',0,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>.','',-2,3,0,31,'2008-08-11 00:42:31',62,'','2008-08-11 00:42:31',62,0,'0000-00-00 00:00:00','2006-10-10 06:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',6,0,0,'','',0,58,'robots=\nauthor='),(26,'Extensions','extensions','','<p>Out of the box, Joomla! does a great job of managing the content needed to make your Web site sing. But for many people, the true power of Joomla! lies in the application framework that makes it possible for developers all around the world to create powerful add-ons that are called <strong>Extensions</strong>. An Extension is used to add capabilities to Joomla! that do not exist in the base core code. Here are just some examples of the hundreds of available Extensions:</p> <ul>   <li>Dynamic form builders</li>   <li>Business or organisational directories</li>   <li>Document management</li>   <li>Image and multimedia galleries</li>   <li>E-commerce and shopping cart engines</li>   <li>Forums and chat software</li>   <li>Calendars</li>   <li>E-mail newsletters</li>   <li>Data collection and reporting tools</li>   <li>Banner advertising systems</li>   <li>Paid subscription services</li>   <li>and many, many, more</li> </ul> <p>You can find more examples over at our ever growing <a href=\"http://extensions.joomla.org\" target=\"_blank\" title=\"Joomla! Extensions Directory\">Joomla! Extensions Directory</a>. Prepare to be amazed at the amount of exciting work produced by our active developer community!</p><p>A useful guide to the Extension site can be found at:<br /><a href=\"http://extensions.joomla.org/content/view/15/63/\" target=\"_blank\" title=\"Guide to the Joomla! Extension site\">http://extensions.joomla.org/content/view/15/63/</a> </p> <h3>Types of Extensions </h3><p>There are five types of extensions:</p> <ul>   <li>Components</li>   <li>Modules</li>   <li>Templates</li>   <li>Plugins</li>   <li>Languages</li> </ul> <p>You can read more about the specifics of these using the links in the Article Index - a Table of Contents (yet another useful feature of Joomla!) - at the top right or by clicking on the <strong>Next </strong>link below.<br /> </p> <hr title=\"Components\" class=\"system-pagebreak\" /> <h3><img src=\"images/stories/ext_com.png\" border=\"0\" alt=\"Component - Joomla! Extension Directory\" title=\"Component - Joomla! Extension Directory\" width=\"17\" height=\"17\" /> Components</h3> <p>A Component is the largest and most complex of the Extension types.  Components are like mini-applications that render the main body of the  page. An analogy that might make the relationship easier to understand  would be that Joomla! is a book and all the Components are chapters in  the book. The core Article Component (<font face=\"courier new,courier\">com_content</font>), for example, is the  mini-application that handles all core Article rendering just as the  core registration Component (<font face=\"courier new,courier\">com_user</font>) is the mini-application  that handles User registration.</p> <p>Many of Joomla!\'s core features are provided by the use of default Components such as:</p> <ul>   <li>Contacts</li>   <li>Front Page</li>   <li>News Feeds</li>   <li>Banners</li>   <li>Mass Mail</li>   <li>Polls</li></ul><p>A Component will manage data, set displays, provide functions, and in general can perform any operation that does not fall under the general functions of the core code.</p> <p>Components work hand in hand with Modules and Plugins to provide a rich variety of content display and functionality aside from the standard Article and content display. They make it possible to completely transform Joomla! and greatly expand its capabilities.</p>  <hr title=\"Modules\" class=\"system-pagebreak\" /> <h3><img src=\"images/stories/ext_mod.png\" border=\"0\" alt=\"Module - Joomla! Extension Directory\" title=\"Module - Joomla! Extension Directory\" width=\"17\" height=\"17\" /> Modules</h3> <p>A more lightweight and flexible Extension used for page rendering is a Module. Modules are used for small bits of the page that are generally  less complex and able to be seen across different Components. To  continue in our book analogy, a Module can be looked at as a footnote  or header block, or perhaps an image/caption block that can be rendered  on a particular page. Obviously you can have a footnote on any page but  not all pages will have them. Footnotes also might appear regardless of  which chapter you are reading. Simlarly Modules can be rendered  regardless of which Component you have loaded.</p> <p>Modules are like little mini-applets that can be placed anywhere on your site. They work in conjunction with Components in some cases and in others are complete stand alone snippets of code used to display some data from the database such as Articles (Newsflash) Modules are usually used to output data but they can also be interactive form items to input data for example the Login Module or Polls.</p> <p>Modules can be assigned to Module positions which are defined in your Template and in the back-end using the Module Manager and editing the Module Position settings. For example, \"left\" and \"right\" are common for a 3 column layout. </p> <h4>Displaying Modules</h4> <p>Each Module is assigned to a Module position on your site. If you wish it to display in two different locations you must copy the Module and assign the copy to display at the new location. You can also set which Menu Items (and thus pages) a Module will display on, you can select all Menu Items or you can pick and choose by holding down the control key and selecting multiple locations one by one in the Modules [Edit] screen</p> <p>Note: Your Main Menu is a Module! When you create a new Menu in the Menu Manager you are actually copying the Main Menu Module (<font face=\"courier new,courier\">mod_mainmenu</font>) code and giving it the name of your new Menu. When you copy a Module you do not copy all of its parameters, you simply allow Joomla! to use the same code with two separate settings.</p> <h4>Newsflash Example</h4> <p>Newsflash is a Module which will display Articles from your site in an assignable Module position. It can be used and configured to display one Category, all Categories, or to randomly choose Articles to highlight to Users. It will display as much of an Article as you set, and will show a <em>Read more...</em> link to take the User to the full Article.</p> <p>The Newsflash Component is particularly useful for things like Site News or to show the latest Article added to your Web site.</p>  <hr title=\"Plugins\" class=\"system-pagebreak\" /> <h3><img src=\"images/stories/ext_plugin.png\" border=\"0\" alt=\"Plugin - Joomla! Extension Directory\" title=\"Plugin - Joomla! Extension Directory\" width=\"17\" height=\"17\" /> Plugins</h3> <p>One  of the more advanced Extensions for Joomla! is the Plugin. In previous  versions of Joomla! Plugins were known as Mambots. Aside from changing their name their  functionality has been expanded. A Plugin is a section of code that  runs when a pre-defined event happens within Joomla!. Editors are Plugins, for example, that execute when the Joomla! event <font face=\"courier new,courier\">onGetEditorArea</font> occurs. Using a Plugin allows a developer to change  the way their code behaves depending upon which Plugins are installed  to react to an event.</p>  <hr title=\"Languages\" class=\"system-pagebreak\" /> <h3><img src=\"images/stories/ext_lang.png\" border=\"0\" alt=\"Language - Joomla! Extensions Directory\" title=\"Language - Joomla! Extensions Directory\" width=\"17\" height=\"17\" /> Languages</h3> <p>New  to Joomla! 1.5 and perhaps the most basic and critical Extension is a Language. Joomla! is released with multiple Installation Languages but the base Site and Administrator are packaged in just the one Language <strong>en-GB</strong> - being English with GB spelling for example. To include all the translations currently available would bloat the core package and make it unmanageable for uploading purposes. The Language files enable all the User interfaces both Front-end and Back-end to be presented in the local preferred language. Note these packs do not have any impact on the actual content such as Articles. </p> <p>More information on languages is available from the <br />   <a href=\"http://community.joomla.org/translations.html\" target=\"_blank\" title=\"Joomla! Translation Teams\">http://community.joomla.org/translations.html</a></p>','',-2,4,0,29,'2008-08-11 06:00:00',62,'','2008-08-11 06:00:00',62,0,'0000-00-00 00:00:00','2006-10-10 22:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',24,0,0,'About Joomla!, General, Extensions','',0,111,'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>','',-2,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,0,'','',0,57,'robots=\nauthor='),(28,'How do I install Joomla! 1.5?','how-do-i-install-joomla-15','','<p>Installing of Joomla! 1.5 is pretty easy. We assume you have set-up your Web site, and it is accessible with your browser.<br /><br />Download Joomla! 1.5, unzip it and upload/copy the files into the directory you Web site points to, fire up your browser and enter your Web site address and the installation will start.  </p><p>For full details on the installation processes check out the <a href=\"http://help.joomla.org/content/category/48/268/302\" target=\"_blank\" title=\"Joomla! 1.5 Installation Manual\">Installation Manual</a> on the <a href=\"http://help.joomla.org\" target=\"_blank\" title=\"Joomla! Help Site\">Joomla! Help Site</a> where you will also find download instructions for a PDF version too. </p>','',-2,3,0,31,'2008-08-11 01:10:59',62,'','2008-08-11 01:10:59',62,0,'0000-00-00 00:00:00','2006-10-10 06:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',5,0,0,'','',0,5,'robots=\nauthor='),(32,'Where is the Static Content Item?','where-is-the-static-content','','<p>In Joomla! versions prior to 1.5 there were separate processes for creating a Static Content Item and normal Content Items. The processes have been combined now and whilst both content types are still around they are renamed as Articles for Content Items and Uncategorized Articles for Static Content Items. </p><p>If you want to create a static item, create a new Article in the same way as for standard content and rather than relating this to a particular Section and Category just select <span style=\"font-style: italic\">Uncategorized</span> as the option in the Section and Category drop down lists.</p>','',-2,3,0,28,'2008-08-10 23:13:33',62,'','2008-08-10 23:13:33',62,0,'0000-00-00 00:00:00','2006-10-10 04:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',6,0,0,'','',0,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.','',-2,3,0,31,'2008-08-11 15:14:11',62,'','2008-08-11 15:14:11',62,0,'0000-00-00 00:00:00','2006-10-10 12:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',8,0,0,'','',0,10,'robots=\nauthor='),(35,'Is it possible to change A Menu Item\'s Type?','is-it-possible-to-change-the-types-of-menu-entries','','<p>You indeed can change the Menu Item\'s Type to whatever you want, even after they have been created. </p><p>If, for instance, you want to change the Blog Section of a Menu link, go to the Control Panel-&gt;Menus Menu-&gt;[menuname]-&gt;Menu Item Manager and edit the Menu Item. Select the <strong>Change Type</strong> button and choose the new style of Menu Item Type from the available list. Thereafter, alter the Details and Parameters to reconfigure the display for the new selection  as you require it.</p>','',-2,3,0,31,'2008-08-10 23:15:36',62,'','2008-08-10 23:15:36',62,0,'0000-00-00 00:00:00','2006-10-10 04:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',6,0,0,'','',0,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.','',-2,3,0,28,'2008-08-10 23:16:20',62,'','2008-08-10 23:16:20',62,0,'0000-00-00 00:00:00','2006-10-10 04:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',6,0,0,'','',0,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>','',-2,3,0,28,'2008-08-11 09:17:00',62,'','2008-08-11 09:17:00',62,0,'0000-00-00 00:00:00','2006-10-10 10:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',6,0,0,'','',0,4,'robots=\nauthor='),(47,'bandymas','daa','','<p>bandymas....bandymas.......bandymas</p>','',-2,4,0,25,'2010-03-16 10:20:01',62,'','2010-03-16 10:46:17',62,0,'0000-00-00 00:00:00','2010-03-16 10:20:01','0000-00-00 00:00:00','','','show_title=1\nlink_titles=\nshow_intro=\nshow_section=1\nlink_section=1\nshow_category=1\nlink_category=\nshow_vote=0\nshow_author=\nshow_create_date=1\nshow_modify_date=1\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',5,0,0,'','',0,68,'robots=\nauthor='),(48,'kazkas','kazkas','','<p>kazkas</p>','',1,5,0,34,'2010-03-16 11:12:45',62,'','2010-03-16 11:41:45',62,0,'0000-00-00 00:00:00','2010-03-16 11:12:45','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',3,0,1,'','',0,161,'robots=\nauthor='),(46,'nauja','medziaga','','<p> </p>\r\n<!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:HyphenationZone>19</w:HyphenationZone> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> </w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" LatentStyleCount=\"156\"> </w:LatentStyles> </xml><![endif]--> &lt;!--  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-parent:\"\"; 	margin:0cm; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:12.0pt; 	mso-bidi-font-size:10.0pt; 	font-family:\"Times New Roman\"; 	mso-fareast-font-family:\"Times New Roman\"; 	mso-ansi-language:EN-GB;} @page Section1 	{size:612.0pt 792.0pt; 	margin:3.0cm 1.0cm 2.0cm 3.0cm; 	mso-header-margin:1.0cm; 	mso-footer-margin:1.0cm; 	mso-paper-source:0;} div.Section1 	{page:Section1;} --&gt; <!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Įprastoji lentelė\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0cm 5.4pt 0cm 5.4pt;\r\n	mso-para-margin:0cm;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:10.0pt;\r\n	font-family:\"Times New Roman\";\r\n	mso-ansi-language:#0400;\r\n	mso-fareast-language:#0400;\r\n	mso-bidi-language:#0400;}\r\n</style>\r\n<![endif]-->\r\n<p class=\"MsoNormal\" style=\"margin-right: -36pt; text-align: center; line-height: 150%;\" align=\"center\"><strong><span style=\"font-size: 14pt; line-height: 150%;\">Tėvelių apklausa, duomenų analizė</span></strong></p>\r\n<p class=\"MsoNormal\" style=\"margin-right: -36pt; text-align: justify; line-height: 150%;\"><span style=\"line-height: 150%;\">Anketoje tėveliams buvo pateikiami 5 atviro ir 7 uždaro tipo klausimų.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-right: -36pt; text-align: justify; line-height: 150%;\"><span style=\"line-height: 150%;\">Iš anketoje pateikto klausimo apie tėvelių domėjimąsi vaiko mokykliniu gyvenimu paaiškėjo, kad visi apklaustieji pasirinko atsakymo variantą ,,Taip“.<span> </span></span></p>\r\n<p class=\"MsoNormal\" style=\"margin-right: -36pt; text-align: justify; line-height: 150%;\"><span style=\"line-height: 150%;\">Kadangi visus tėvelius domina vaiko mokyklinis gyvenimas, tenko išsiaiškinti, ar <span> </span>pakanka jiems informacijos apie problemas, iškylančias mokykloje. Iš pateiktų atsakymo variantų ,,Taip“ pasirinko 14 respondentų,<span> </span>o ,,Ne“ – 1.</span></p>','',-2,4,0,25,'2010-03-15 10:04:28',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-03-15 10:04:28','0000-00-00 00:00:00','','','show_title=1\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,0,'','',0,5,'robots=\nauthor='),(43,'Example Pages and Menu Links','example-pages-and-menu-links','','<p><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:HyphenationZone>19</w:HyphenationZone> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> </w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" LatentStyleCount=\"156\"> </w:LatentStyles> </xml><![endif]--> <!--[if gte mso 10]> <mce:style><!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:\"Įprastoji lentelė\"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-parent:\"\"; 	mso-padding-alt:0cm 5.4pt 0cm 5.4pt; 	mso-para-margin:0cm; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:\"Times New Roman\"; 	mso-ansi-language:#0400; 	mso-fareast-language:#0400; 	mso-bidi-language:#0400;} --> <!--[endif]--></p>\r\n<h1><span class=\"caption\"><strong><em><span style=\"text-decoration: underline;\">Lietus lietuvoj</span></em></strong></span></h1>\r\n<h1><span class=\"caption\"><strong>Priedainis:</strong></span></h1>\r\n<h1><span class=\"caption\"><strong>Lietus Lietuvoj, lietus lietuvoj, ar žemę raudotų,</strong></span></h1>\r\n<h1><span class=\"caption\"><strong>Ar grįžtančius gruodį.</strong></span></h1>\r\n<h1><span class=\"caption\"><strong>Lietus L              sietuvoj, lietus Lietuvoj ar ašaros byra,</strong></span></h1>\r\n<h1><span class=\"caption\"><strong>Dangus tau ant skruostų.</strong></span></h1>\r\n<h1><span class=\"caption\"><strong> </strong></span></h1>\r\n<h1><span class=\"caption\"><strong>1. </strong><strong>Ateinam į žemę vaikais iš pasaulio, kur negrįžti </strong></span></h1>\r\n<h1><span class=\"caption\"><strong>Iš mėlyno sapno įžengus sunku nesurinkti.</strong></span></h1>\r\n<h1><span class=\"caption\"><strong>Plieniniai keliai  tartum srūvančios žaizdos,</strong></span></h1>\r\n<h1><span class=\"caption\"><strong>Krūtinėj dar skauda, ar tėviškės raudą</strong></span></h1>\r\n<h1><span class=\"caption\"><strong>Išgirs jie tenai, kam dar skauda kam seniai nuskaudėjo</strong></span></h1>\r\n<h1><span class=\"caption\"><strong>Kam viskas praėjo,  po svetimu vėju.</strong></span></h1>\r\n<h1><span class=\"caption\"><strong> </strong></span></h1>\r\n<h1><span class=\"caption\"><strong>Per:</strong></span></h1>\r\n<h1><span class=\"caption\"><strong> </strong></span></h1>\r\n<h1><span class=\"caption\"><strong>2. </strong><strong>Ateinam į žemę vaikais iš pasaulio,</strong></span></h1>\r\n<h1><span class=\"caption\"><strong>Kur niekad negrįžti,</strong></span></h1>\r\n<h1><span class=\"caption\"><strong>Iš mėlyno sapno išengus i juoda</strong></span></h1>\r\n<h1><span class=\"caption\"><strong>Sunku net surikti.</strong></span></h1>\r\n<h1><span class=\"caption\"><strong>Plieniniai keliai tartum srūvančios žaizdos</strong></span></h1>\r\n<h1><span class=\"caption\"><strong>Krūtinėj dar skauda,</strong></span></h1>\r\n<h1><span class=\"caption\"><strong>Ar tėviškės raudą išgirs jie tenai,</strong></span></h1>\r\n<h1><span class=\"caption\"><strong>Kam dar skauda,</strong></span></h1>\r\n<h1><span class=\"caption\"><strong>Kam seniai neskaudėjo,</strong></span></h1>\r\n<h1><span class=\"caption\"><strong>Kam viskas praėjo,</strong></span></h1>\r\n<p><span class=\"caption\"> </span><strong><span style=\"font-size: 18pt;\"><sup><sub>Po svetimu beržu ir svetimu vėju.</sub></sup></span></strong></p>\r\n<!--[if !supportLists]--><!--[endif]--><!--[if !supportLists]--><!--[endif]-->\r\n<p> </p>','',-2,3,0,27,'2010-03-15 00:00:00',62,'','2010-03-15 09:51:07',62,0,'0000-00-00 00:00:00','2010-03-15 00:00:00','0000-00-00 00:00:00','','','show_title=1\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=1\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=lt-LT\nkeyref=\nreadmore=',9,0,0,'','',0,0,'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>',-2,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,0,'','',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://community.joomla.org/magazine.html\" 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>','',-2,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,0,'','',0,5,'robots=\nauthor='),(55,'Vėjas 16 Hz','vjas-16-hz','','<!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:HyphenationZone>19</w:HyphenationZone> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> </w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" LatentStyleCount=\"156\"> </w:LatentStyles> </xml><![endif]--> <!--[if gte mso 10]> <mce:style><!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:\"Įprastoji lentelė\"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-parent:\"\"; 	mso-padding-alt:0cm 5.4pt 0cm 5.4pt; 	mso-para-margin:0cm; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:\"Times New Roman\"; 	mso-ansi-language:#0400; 	mso-fareast-language:#0400; 	mso-bidi-language:#0400;} --> <!--[endif]-->\r\n<p class=\"caption\">Vėjas 16 Hz</p>\r\n<p class=\"caption\"> </p>\r\n<p class=\"caption\">Vėjas tau plaukus šukuos,</p>\r\n<p class=\"caption\">Kur žodžiai liejas tavo dainos.</p>\r\n<p class=\"caption\">Atrasi slapčiausias vietas,</p>\r\n<p class=\"caption\">Ten kur svajoji mane nusivest.</p>\r\n<p class=\"caption\" style=\"text-indent: 5cm;\"> </p>\r\n<p class=\"caption\">Tu ranką man tiktai ištiesk,</p>\r\n<p class=\"caption\">Kartu aš eisiu, tik pasikviesk.</p>\r\n<p class=\"caption\">Nuvesk, kur laikas mums sustos,</p>\r\n<p class=\"caption\">Kur galim dūkti ligi aušros.</p>\r\n<p class=\"caption\"> </p>\r\n<p class=\"caption\">Kaip šilto vėjo aš ilgiuos,</p>\r\n<p class=\"caption\">Tavų akių, jos mane paguos.</p>\r\n<p class=\"caption\">Kai šiltos rankos susilies,</p>\r\n<p class=\"caption\">Laikas nejučia prabėgs.</p>\r\n<p class=\"caption\"> </p>\r\n<p class=\"caption\">Šoksim ten lig aušros,</p>\r\n<p class=\"caption\">Ir dviese dūksim, kol muzika gros.</p>\r\n<p class=\"caption\">Liesis juokas skardus,</p>\r\n<p class=\"caption\">Pamiršim viską, net savo vardus.</p>\r\n<p class=\"caption\"> </p>\r\n<p class=\"caption\">Žvilgsnis išduoda tave,</p>\r\n<p class=\"caption\">Ką mes veiksim šiandien vakare.</p>\r\n<p class=\"caption\">Žaismingi žodžiai užlies jausmus,</p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 22pt;\"><span class=\"caption\">Girdėsiu tavo širdies dūžius.</span></span></p>','',1,13,0,38,'2010-03-17 20:30:40',62,'','2010-03-17 20:32:29',62,0,'0000-00-00 00:00:00','2010-03-17 20:30:40','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',3,0,4,'','',0,2,'robots=\nauthor='),(56,'Nesudeginau  (16 Hz)','nesudeginau-16-hz','','<!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:HyphenationZone>19</w:HyphenationZone> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> </w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" LatentStyleCount=\"156\"> </w:LatentStyles> </xml><![endif]--><!--[if gte mso 10]> <mce:style><!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:\"Įprastoji lentelė\"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-parent:\"\"; 	mso-padding-alt:0cm 5.4pt 0cm 5.4pt; 	mso-para-margin:0cm; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:\"Times New Roman\"; 	mso-ansi-language:#0400; 	mso-fareast-language:#0400; 	mso-bidi-language:#0400;} --> <!--[endif]-->\r\n<p class=\"caption\">Nesudeginau  (16 Hz)</p>\r\n<p class=\"caption\">Įžanga.</p>\r\n<p class=\"caption\">1.Drebančia ranka laikau, taip seniai rašytus laiškus</p>\r\n<p class=\"caption\">Kiek tik kart paėmęs juos skaičiau , niekada nebuvo aiškūs</p>\r\n<p class=\"caption\">Sakiniai neužbaigti, mintys vėjo išdraskytos</p>\r\n<p class=\"caption\">Ašarom galvojau sulieti, apsimetėliai laiškai</p>\r\n<p class=\"caption\">\r\n','\r\n</p>\r\n<p class=\"caption\">Kam gi juos rašiai, jei mūsų per silpni jausmai</p>\r\n<p class=\"caption\">Greitai turėjo pavirsti pelenais</p>\r\n<p class=\"caption\">Pried.</p>\r\n<div style=\"border: 3pt solid red; padding: 1pt 4pt;\">\r\n<p class=\"caption\" style=\"border: medium none; padding: 0cm;\">Nesudeginau pageltusių laiškų, jie man širdį išdraskė</p>\r\n<p class=\"caption\" style=\"border: medium none; padding: 0cm;\">Palikai juose šimtus klausimų, kaip atsakymą rasti</p>\r\n<p class=\"caption\" style=\"border: medium none; padding: 0cm;\">Nesudeginau bet pats savy degiau, mano kelias per ugnį</p>\r\n<p class=\"caption\" style=\"border: medium none; padding: 0cm;\">Jis nutiestas tam , kad būtų tau geriau,   tau vienai</p>\r\n</div>\r\n<p class=\"caption\">2.</p>\r\n<p class=\"caption\">Likimo nepavydžiu tau , tikiu geresnis bus už mano</p>\r\n<p class=\"caption\">Iš jo aš tik tavęs prašau, tave laiškais gavau</p>\r\n<p class=\"caption\">Pried.</p>\r\n<p class=\"caption\">Pergr.</p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 14pt;\"><span class=\"caption\">Pried.</span></span></p>',1,13,0,38,'2010-03-17 20:33:35',62,'','2010-03-19 21:26:46',62,0,'0000-00-00 00:00:00','2010-03-17 20:33:35','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',3,0,3,'','',0,4,'robots=\nauthor='),(57,'Šalia kelio karčema','alia-kelio-karema','','<!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:HyphenationZone>19</w:HyphenationZone> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> </w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" LatentStyleCount=\"156\"> </w:LatentStyles> </xml><![endif]--><!--[if gte mso 10]> <mce:style><!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:\"Įprastoji lentelė\"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-parent:\"\"; 	mso-padding-alt:0cm 5.4pt 0cm 5.4pt; 	mso-para-margin:0cm; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:\"Times New Roman\"; 	mso-ansi-language:#0400; 	mso-fareast-language:#0400; 	mso-bidi-language:#0400;} --> <!--[endif]-->\r\n<p style=\"margin: 0cm 0cm 0.0001pt; text-align: left;\"> </p>\r\n<h2><span class=\"caption\"><span style=\"text-decoration: underline;\"><strong>Šalia kelio karčema                <img src=\"images/stories/food/bread.jpg\" border=\"0\" /><br /></strong></span></span></h2>\r\n<p style=\"margin: 0cm 0cm 0.0001pt; text-align: left;\"> </p>\r\n','\r\n<p>Šalia kelio karčema<br /> Ten gyvena šinkorka<br /> <br /> Oi šinkorka šinkorka<br /> Graži tavo dukrelė<br /> <br /> Tai ne mano dukrelė<br /> Tai samdyta mergelė<br /> <br /> Duok studente tris litus<br /> Ir mergelė tavo bus<br /> <br /> Ji paprašė keturių<br /> O aš vargšas neturiu<br /> <br /> Žalias vynas ne vanduo<br /> O studentas – ne piemuo<br /> <br /> Žalias vynas iš vandens<br /> O studentas iš piemens</p>\r\n<p> </p>',1,13,0,38,'2010-03-17 20:35:40',62,'','2010-03-19 21:35:26',62,0,'0000-00-00 00:00:00','2010-03-17 20:35:40','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=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=0\nshow_print_icon=0\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',9,0,2,'','',0,16,'robots=\nauthor='),(58,'Paslaptis“Aitvaras“','paslaptisaitvaras','','<!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:HyphenationZone>19</w:HyphenationZone> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> </w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" LatentStyleCount=\"156\"> </w:LatentStyles> </xml><![endif]--><!--[if gte mso 10]> <mce:style><!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:\"Įprastoji lentelė\"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-parent:\"\"; 	mso-padding-alt:0cm 5.4pt 0cm 5.4pt; 	mso-para-margin:0cm; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:\"Times New Roman\"; 	mso-ansi-language:#0400; 	mso-fareast-language:#0400; 	mso-bidi-language:#0400;} --> <!--[endif]-->\r\n<p class=\"MsoNormal\" style=\"text-indent: 36pt;\"><strong><span style=\"font-size: 14pt;\">Paslaptis</span></strong><span>“Aitvaras“</span></p>\r\n<p class=\"MsoNormal\" style=\"text-indent: 36pt;\"><span> </span></p>\r\n<p class=\"MsoNormal\" style=\"line-height: 150%;\"><span>Kai visi jau miega, o už lango krenta sniegas</span></p>\r\n<p class=\"MsoNormal\" style=\"line-height: 150%;\"><span>Mėgstu aš pabėkti, paklajoti po gatves</span></p>\r\n<p class=\"MsoNormal\" style=\"line-height: 150%;\"><span>Išeinu tuo pačiu taku, kaip kiekviena naktį</span></p>\r\n<p class=\"MsoNormal\" style=\"line-height: 150%;\"><span>Girgžda sniegas man po kojom sniegas</span></p>\r\n<p class=\"MsoNormal\" style=\"line-height: 150%;\"><span><span> </span>Šalčio pėdos kvoečia eiti vėl kartu</span></p>\r\n<p class=\"MsoNormal\" style=\"line-height: 150%;\"><span><span> </span>Štai žvaigždė šiaurinė kelią pas vaiduoklį rodo</span></p>\r\n<p class=\"MsoNormal\" style=\"text-indent: 36pt; line-height: 150%;\"><span>To vaiduoklio paslapties niekad neišduosiu</span></p>\r\n<p class=\"MsoNormal\" style=\"text-indent: 36pt; line-height: 150%;\"><span>Ne šviesos jis bijo ne, tik piktų akių..</span></p>\r\n<p class=\"MsoNormal\" style=\"text-indent: 36pt; line-height: 150%;\"><span> </span></p>\r\n<p class=\"MsoNormal\" style=\"text-indent: 36pt; line-height: 150%;\"><span>Pried: Krentame į pusnį lyg maži vaikai</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-left: 36pt; text-indent: 36pt; line-height: 150%;\"><span>Čiuožiam nuo kalnų drauge</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-left: 36pt; text-indent: 36pt; line-height: 150%;\"><span>Paklystame žvaigždžių miške</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-left: 36pt; text-indent: 36pt; line-height: 150%;\"><span>Bėgame ir krentame</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-left: 36pt; text-indent: 36pt; line-height: 150%;\"><span>Į pusnį kaip maži vaikai</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-left: 36pt; text-indent: 36pt; line-height: 150%;\"><span>Čiuožiam nuo kalnų drauge</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-left: 36pt; text-indent: 36pt; line-height: 150%;\"><span>Paklystame žvaigždžių miške</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-left: 36pt; text-indent: 36pt; line-height: 150%;\"><span>Bėgame užmirštame</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-left: 36pt; text-indent: 36pt; line-height: 150%;\"><span>Kad žiemos naktis labai trumpa</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-left: 36pt; text-indent: 36pt;\"><span> </span></p>\r\n<p class=\"MsoNormal\" style=\"margin-left: 36pt; text-indent: -33.15pt;\"><span>Jūs tikėt nenorit, kad taip gali būti naktį</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-left: 36pt; text-indent: -33.15pt;\"><span>Manot mano kelionė išgalvota ir netikra</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-left: 36pt; text-indent: -33.15pt;\"><span>O jūs patys pabandykit eiti šalčio pėdom</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-left: 36pt; text-indent: -33.15pt;\"><span>Gal sutiksit tokį draugą su žiemos paslaptūim</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-left: 36pt; text-indent: -33.15pt;\"><span> </span></p>','',1,13,0,39,'2010-03-17 20:37:05',62,'','2010-03-17 20:38:24',62,0,'0000-00-00 00:00:00','2010-03-17 20:37:05','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',2,0,3,'','',0,1,'robots=\nauthor='),(59,'Sėdėjau aš darželį','sdjau-a-darel','','<p class=\"MsoNormal\" style=\"margin-left: 36pt; text-indent: -33.15pt; line-height: 150%;\"><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:HyphenationZone>19</w:HyphenationZone> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> </w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" LatentStyleCount=\"156\"> </w:LatentStyles> </xml><![endif]--> <!--[if gte mso 10]> <mce:style><!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:\"Įprastoji lentelė\"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-parent:\"\"; 	mso-padding-alt:0cm 5.4pt 0cm 5.4pt; 	mso-para-margin:0cm; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:\"Times New Roman\"; 	mso-ansi-language:#0400; 	mso-fareast-language:#0400; 	mso-bidi-language:#0400;} --> <!--[endif]--></p>\r\n<p class=\"MsoNormal\" style=\"margin-left: 36pt;\"><span style=\"font-size: 18pt;\">Sėdėjau aš darželį</span></p>\r\n<p> </p>\r\n<p class=\"MsoNormal\" style=\"margin-left: 36pt; text-indent: -33.15pt; line-height: 150%;\"> </p>\r\n<p class=\"MsoNormal\" style=\"margin-left: 36pt; text-indent: -33.15pt; line-height: 150%;\"><span>Sėdėjau aš darželį sėdėjau tarp gėlių</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-left: 36pt; text-indent: -33.15pt; line-height: 150%;\"><span>Ir gėlės suprato. Kad aš tave myliu</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-left: 36pt; text-indent: -33.15pt; line-height: 150%;\"><span> </span></p>\r\n<p class=\"MsoNormal\" style=\"margin-left: 36pt; text-indent: -33.15pt; line-height: 150%;\"><span>Kur stovi juodas kryžius ten eina daug takų</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-left: 36pt; text-indent: -33.15pt; line-height: 150%;\"><span>Bet mano mergužėlė kalbėjo su kitu</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-left: 36pt; text-indent: -33.15pt;\"><span> </span></p>\r\n<p class=\"MsoNormal\" style=\"margin-left: 36pt; text-indent: -33.15pt;\"><span>Aaš netoli stovėjau ir viską ten mačiau</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-left: 36pt; text-indent: -33.15pt;\"><span>Širdele man skaudėjo tik nieko nemačiau</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-left: 36pt; text-indent: -33.15pt;\"><span> </span></p>\r\n<p class=\"MsoNormal\" style=\"margin-left: 36pt; text-indent: -33.15pt;\"><span>Ištiesus baltą ranką ant kvepiančių gėlių</span></p>\r\n<p class=\"MsoNormal\" style=\"margin-left: 36pt; text-indent: -33.15pt;\"><span>Nuskyniai man šakelę alyvų žydinčių</span></p>\r\n<p> </p>','',1,13,0,39,'2010-03-17 20:38:47',62,'','2010-03-17 20:40:05',62,0,'0000-00-00 00:00:00','2010-03-17 20:38:47','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',2,0,2,'','',0,0,'robots=\nauthor='),(60,'Tu sakei','tu-sakei','','<p><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:HyphenationZone>19</w:HyphenationZone> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> </w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" LatentStyleCount=\"156\"> </w:LatentStyles> </xml><![endif]--> <!--[if gte mso 10]> <mce:style><!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:\"Įprastoji lentelė\"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-parent:\"\"; 	mso-padding-alt:0cm 5.4pt 0cm 5.4pt; 	mso-para-margin:0cm; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:\"Times New Roman\"; 	mso-ansi-language:#0400; 	mso-fareast-language:#0400; 	mso-bidi-language:#0400;} --> <!--[endif]--></p>\r\n<p class=\"MsoNormal\"><strong><span>Tu sakei, Aitvaras </span></strong></p>\r\n<p class=\"MsoNormal\"><span> </span></p>\r\n<p class=\"MsoNormal\"><span>--------------------------------------------------------------------------------</span></p>\r\n<p class=\"MsoNormal\" style=\"line-height: 150%;\"><span><span> </span>Atrodo taip neseniai</span></p>\r\n<p class=\"MsoNormal\" style=\"line-height: 150%;\"><span>Sutikai tu mane pirmą kartą</span></p>\r\n<p class=\"MsoNormal\" style=\"line-height: 150%;\"><span>Atrodo taip neseniai</span></p>\r\n<p class=\"MsoNormal\" style=\"line-height: 150%;\"><span>Mynėme savo meilės taką</span></p>\r\n<p class=\"MsoNormal\" style=\"line-height: 150%;\"><span>Dovanojai gražiausias gėles</span></p>\r\n<p class=\"MsoNormal\" style=\"line-height: 150%;\"><span>Žydrą dangų ir skaisčią saulę</span></p>\r\n<p class=\"MsoNormal\" style=\"line-height: 150%;\"><span>Ir tikėjau tuo likimu - su tavimi.</span></p>\r\n<p class=\"MsoNormal\" style=\"line-height: 150%;\"><span> </span></p>\r\n<p class=\"MsoNormal\" style=\"line-height: 150%;\"><span>PRIED:Tu sakei, kad mylėsi mane visą gyvenimą</span></p>\r\n<p class=\"MsoNormal\" style=\"line-height: 150%;\"><span><span> </span>Tu sakei, kad atstosi kančias ir ilgą nerimą</span></p>\r\n<p class=\"MsoNormal\" style=\"line-height: 150%;\"><span><span> </span>Tu sakei, kad dangui saulė šypsos vien tik tau ir man,</span></p>\r\n<p class=\"MsoNormal\" style=\"line-height: 150%;\"><span><span> </span>O dabar aš supratau.</span></p>\r\n<p class=\"MsoNormal\"><span> </span></p>\r\n<p class=\"MsoNormal\"><span>Žinau blogai dariau,</span></p>\r\n<p class=\"MsoNormal\"><span>Kam tikėjau tavimi</span></p>\r\n<p class=\"MsoNormal\"><span>Žinau nebegrįši daugiau</span></p>\r\n<p class=\"MsoNormal\"><span>Pasiėmęs viską su savimi</span></p>\r\n<p class=\"MsoNormal\"><span>Viskas greitai virto skausmu -</span></p>\r\n<p class=\"MsoNormal\"><span>Patikėki, sakau,</span></p>\r\n<p class=\"MsoNormal\"><span>Liko tik pažadai atminty</span></p>\r\n<p class=\"MsoNormal\"><span>Žodžiai tušti</span></p>\r\n<p class=\"MsoNormal\"><span> </span></p>\r\n<p class=\"MsoNormal\"><span><span> </span>Tu sakei, kad mylėsi mane visą gyvenimą</span></p>\r\n<p class=\"MsoNormal\"><span><span> </span>Tu sakei, kad atstosi kančias ir ilgą nerimą</span></p>\r\n<p class=\"MsoNormal\"><span><span> </span>Tu sakei, kad dangui saulė šypsos vien tik tau ir man,</span></p>\r\n<p class=\"MsoNormal\"><span><span> </span>O dabar aš supratau.</span></p>\r\n<p class=\"MsoNormal\"><span> </span></p>\r\n<p> </p>','',1,13,0,39,'2010-03-17 20:40:12',62,'','2010-03-17 20:41:38',62,0,'0000-00-00 00:00:00','2010-03-17 20:40:12','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',2,0,1,'','',0,0,'robots=\nauthor='),(61,'Aš pamilau lauko gėlę','a-pamilau-lauko-gl','','<!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:HyphenationZone>19</w:HyphenationZone> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> </w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" LatentStyleCount=\"156\"> </w:LatentStyles> </xml><![endif]--> &lt;!--  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-parent:\"\"; 	margin:0cm; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:\"Times New Roman\"; 	mso-fareast-font-family:\"Times New Roman\"; 	mso-ansi-language:EN-AU;} @page Section1 	{size:595.3pt 841.9pt; 	margin:72.0pt 90.0pt 72.0pt 90.0pt; 	mso-header-margin:1.0cm; 	mso-footer-margin:1.0cm; 	mso-paper-source:0;} div.Section1 	{page:Section1;} --&gt; <!--[if gte mso 10]>\r\n<style>\r\n /* Style Definitions */\r\n table.MsoNormalTable\r\n	{mso-style-name:\"Įprastoji lentelė\";\r\n	mso-tstyle-rowband-size:0;\r\n	mso-tstyle-colband-size:0;\r\n	mso-style-noshow:yes;\r\n	mso-style-parent:\"\";\r\n	mso-padding-alt:0cm 5.4pt 0cm 5.4pt;\r\n	mso-para-margin:0cm;\r\n	mso-para-margin-bottom:.0001pt;\r\n	mso-pagination:widow-orphan;\r\n	font-size:10.0pt;\r\n	font-family:\"Times New Roman\";\r\n	mso-ansi-language:#0400;\r\n	mso-fareast-language:#0400;\r\n	mso-bidi-language:#0400;}\r\n</style>\r\n<![endif]-->\r\n<p class=\"caption\"><strong><em><span style=\"text-decoration: underline;\">Aš pamilau lauko gėlę</span></em></strong></p>\r\n<p class=\"caption\"><strong><em><span style=\"text-decoration: underline;\"><br /></span></em></strong></p>\r\n<p class=\"caption\"><strong><em><span style=\"text-decoration: underline;\"></span></em></strong></p>\r\n<p class=\"caption\"><strong><em>Aš pamilau ,pamilau lauko gėlę,</em></strong></p>\r\n<p class=\"caption\"><strong><em>Ir išėjau,išėjau į laukus.</em></strong></p>\r\n<p class=\"caption\"><strong><em>O ta gėlė ,ta gėlė nuvyto</em></strong></p>\r\n<p class=\"caption\"><strong><em>Vėjas nudraskė lapus.</em></strong></p>\r\n<p class=\"caption\"><strong><em> </em></strong></p>\r\n<p class=\"caption\"><strong><em> </em></strong></p>\r\n<p class=\"caption\"><strong><em>O jei vėliau aš dar mama pareisiu</em></strong></p>\r\n<p class=\"caption\"><strong><em>Tu tik nebark manęs mama miela.</em></strong></p>\r\n<p class=\"caption\"><strong><em>Nes tada mano meilė pirmoji,</em></strong></p>\r\n<p class=\"caption\"><strong><em>Išeis ir negryš niekada.</em></strong></p>\r\n<p class=\"caption\"><strong><em> </em></strong></p>\r\n<p class=\"caption\"><strong><em> </em></strong></p>\r\n<p class=\"caption\"><strong><em>O jau dabar kai tie lapai pageltę,</em></strong></p>\r\n<p class=\"caption\"><strong><em>Kaip tąjį spindį nupūtus šarma,</em></strong></p>\r\n<p class=\"caption\"><strong><em>Ir kaip šešėlis mamyt pasilieka</em></strong></p>\r\n<p class=\"MsoNormal\"><strong><em><span style=\"font-size: 16pt;\"><span class=\"caption\">Tavo širdies šiluma.</span></span></em></strong></p>','',1,13,0,40,'2010-03-17 20:42:25',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-03-17 20:42:25','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,3,'','',0,1,'robots=\nauthor='),(62,'Lemtis','lemtis','','<!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:HyphenationZone>19</w:HyphenationZone> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> </w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" LatentStyleCount=\"156\"> </w:LatentStyles> </xml><![endif]--><!--[if gte mso 10]> <mce:style><!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:\"Įprastoji lentelė\"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-parent:\"\"; 	mso-padding-alt:0cm 5.4pt 0cm 5.4pt; 	mso-para-margin:0cm; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:\"Times New Roman\"; 	mso-ansi-language:#0400; 	mso-fareast-language:#0400; 	mso-bidi-language:#0400;} --> <!--[endif]-->\r\n<p class=\"MsoNormal\">Lemtis</p>\r\n<p class=\"MsoNormal\"> </p>\r\n<p class=\"MsoNormal\">Gal tai lemtis gal dovana</p>\r\n<p class=\"MsoNormal\">Kad tu dar vis taip mylima</p>\r\n<p class=\"MsoNormal\">Liks tavyje praeitis ateitis mana</p>\r\n<p class=\"MsoNormal\">Mūsų dienu ir dainų negana</p>\r\n<p class=\"MsoNormal\"> </p>\r\n<p class=\"MsoNormal\">Pr.</p>\r\n<p class=\"MsoNormal\"> </p>\r\n<p class=\"MsoNormal\">Tu ir vėl man sakei rytoj o man reikia laimės tuoj</p>\r\n<p class=\"MsoNormal\">Kartu ir šaltoj troboj dabar mums labai gerai</p>\r\n<p class=\"MsoNormal\">Kitos man tikrai nereik aš lauksiu tavęs ateik</p>\r\n<p class=\"MsoNormal\">Tu mano viltis šviesi man esi</p>\r\n<p class=\"MsoNormal\"> </p>','',1,13,0,40,'2010-03-17 20:43:53',62,'','2010-03-17 20:45:03',62,0,'0000-00-00 00:00:00','2010-03-17 20:43:53','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',2,0,2,'','',0,0,'robots=\nauthor='),(63,'Prarastas laikas ','prarastas-laikas-','','<!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:HyphenationZone>19</w:HyphenationZone> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> </w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" LatentStyleCount=\"156\"> </w:LatentStyles> </xml><![endif]--><!--[if gte mso 10]> <mce:style><!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:\"Įprastoji lentelė\"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-parent:\"\"; 	mso-padding-alt:0cm 5.4pt 0cm 5.4pt; 	mso-para-margin:0cm; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:\"Times New Roman\"; 	mso-ansi-language:#0400; 	mso-fareast-language:#0400; 	mso-bidi-language:#0400;} --> <!--[endif]-->\r\n<h1 class=\"caption\">Prarastas laikas</h1>\r\n<p class=\"caption\"><strong> </strong></p>\r\n<p class=\"caption\"><strong>Man tavo žingsniai sukurti </strong></p>\r\n<p class=\"caption\"><strong>Aš jų lyg muzikos klausau</strong></p>\r\n<p class=\"caption\"><strong>Tarytum šilkas vos lieti </strong></p>\r\n<p class=\"caption\"><strong>Tau ir man tik betrūksta dangaus</strong></p>\r\n<p class=\"caption\"><strong> </strong></p>\r\n<p class=\"caption\" style=\"margin-left: 36pt; text-indent: 36pt;\"><strong>Kada svaiginančioj tyloj</strong></p>\r\n<p class=\"caption\" style=\"margin-left: 36pt; text-indent: 36pt;\"><strong>Mane atodūsiu plaki</strong></p>\r\n<p class=\"caption\" style=\"margin-left: 36pt; text-indent: 36pt;\"><strong>Neklauski kas gi bus rytoj</strong></p>\r\n<p class=\"caption\" style=\"margin-left: 36pt; text-indent: 36pt;\"><strong>Mes abu meilei šiai sutverti</strong></p>\r\n<p class=\"caption\"><strong>Pr.</strong></p>\r\n<p class=\"caption\"><strong>Ir taip jau daug praradome kol mes abu supratome</strong></p>\r\n<p class=\"caption\"><strong>Kad prasilenkė keliai kvietę į namus pareit</strong></p>\r\n<p class=\"caption\"><strong>Miela nereikia ašarų tegul lietus parašo vėl</strong></p>\r\n<p class=\"caption\"><strong>Savo nuojautą lange lašais tyrais tyrais</strong></p>\r\n<p class=\"caption\"><strong> </strong></p>\r\n<p class=\"caption\"><strong>Kada nekviesdama kvieti</strong></p>\r\n<p class=\"caption\"><strong>Manęs neklausdama paklausk</strong></p>\r\n<p class=\"caption\"><strong>Aš atsakysiu ar girdi</strong></p>\r\n<p class=\"caption\"><strong>Sutverti viens kitam mes dangaus</strong></p>\r\n<p class=\"caption\"><strong> </strong></p>\r\n<p class=\"caption\"><strong>Kai žingsnių aido žavesy</strong></p>\r\n<p class=\"caption\"><strong>Aš kartais vienas palieku</strong></p>\r\n<p class=\"caption\"><strong>Žinau kad tu kažkur esi</strong></p>\r\n<p class=\"caption\"><strong>Patikėk man svaiginančiai jauku</strong></p>\r\n<p class=\"caption\"><strong> </strong></p>\r\n<p class=\"caption\"><strong>Pr. </strong></p>\r\n<p class=\"caption\"><strong>Solo </strong></p>\r\n<p class=\"caption\"><strong>Miela nereikia ašarų tegul lietus parašo vėl </strong></p>\r\n<p class=\"caption\"><strong>Savo nuojautą lange lašais tyrais tyrais </strong></p>\r\n<p class=\"caption\"><strong>Miela nereikia ašarų tegul lietus parašo vėl</strong></p>\r\n<p class=\"caption\"><strong>Savo nuojautą lange lašais tyrais tyrais</strong></p>\r\n<p class=\"caption\"><strong> </strong></p>\r\n<p class=\"MsoNormal\"><strong><span style=\"font-size: 20pt; font-family: Arial;\"><span class=\"caption\"> </span></span></strong></p>','',1,13,0,40,'2010-03-17 20:45:09',62,'','2010-03-17 20:47:17',62,0,'0000-00-00 00:00:00','2010-03-17 20:45:09','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',2,0,1,'','',0,0,'robots=\nauthor='),(64,'Jureivis 2  ','jureivis-2-','','<!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:HyphenationZone>19</w:HyphenationZone> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> </w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" LatentStyleCount=\"156\"> </w:LatentStyles> </xml><![endif]--><!--[if gte mso 10]> <mce:style><!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:\"Įprastoji lentelė\"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-parent:\"\"; 	mso-padding-alt:0cm 5.4pt 0cm 5.4pt; 	mso-para-margin:0cm; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:\"Times New Roman\"; 	mso-ansi-language:#0400; 	mso-fareast-language:#0400; 	mso-bidi-language:#0400;} --> <!--[endif]-->\r\n<p class=\"caption\">Jureivis 2</p>\r\n<p class=\"caption\"> </p>\r\n<p class=\"caption\"> </p>\r\n<p class=\"caption\">Įžanga.</p>\r\n<p class=\"caption\"> </p>\r\n<p class=\"caption\">1.</p>\r\n<p class=\"caption\">Pas tave, miela jūreivis grįžta</p>\r\n<p class=\"caption\">Pas tave, per vėjus ir audras</p>\r\n<p class=\"caption\">Aš tik nenoriu, nenoriu tau nieko sakyt</p>\r\n<p class=\"caption\">Aš tik norėčiau stebuklą vien tau padaryt</p>\r\n<p class=\"caption\"> </p>\r\n<p class=\"caption\">Pried.</p>\r\n<p class=\"caption\">Sugrįžau pas tave mano meile</p>\r\n<p class=\"caption\">Sugrįžau man saulėti krantai</p>\r\n<p class=\"caption\">Tu žuvedrai savo laimę, o jureiviui tiktai meilę</p>\r\n<p class=\"caption\">Dovanoki ir gyventi bus gerai                                2k.</p>\r\n<p class=\"caption\"> </p>\r\n<p class=\"caption\">2.</p>\r\n<p class=\"caption\">Kaip sunku, be tavo meilės jūroj</p>\r\n<p class=\"caption\">Ar klausei dainas kaip dainavau</p>\r\n<p class=\"caption\">Jūros bangoj tavo balso aidą girdžiu</p>\r\n<p class=\"caption\">Kopų sapne šviesiaplaukę savo regiu</p>\r\n<p class=\"caption\"> </p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 16pt; color: black;\" lang=\"EN-GB\"><span class=\"caption\">Pried.</span></span></p>','',1,13,0,41,'2010-03-17 20:47:34',62,'','2010-03-17 20:49:34',62,0,'0000-00-00 00:00:00','2010-03-17 20:47:34','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',2,0,3,'','',0,1,'robots=\nauthor='),(65,'Jūreivis','jreivis','','<!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:HyphenationZone>19</w:HyphenationZone> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> </w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" LatentStyleCount=\"156\"> </w:LatentStyles> </xml><![endif]--><!--[if gte mso 10]> <mce:style><!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:\"Įprastoji lentelė\"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-parent:\"\"; 	mso-padding-alt:0cm 5.4pt 0cm 5.4pt; 	mso-para-margin:0cm; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:\"Times New Roman\"; 	mso-ansi-language:#0400; 	mso-fareast-language:#0400; 	mso-bidi-language:#0400;} --> <!--[endif]-->\r\n<p class=\"caption\"><strong><em>Jūreivis</em></strong></p>\r\n<p class=\"caption\"> </p>\r\n<p class=\"caption\">Kai į jūrą jūreiviai išplaukia,</p>\r\n<p class=\"caption\">Uždainuoja jie dainą tada.</p>\r\n<p class=\"caption\">Apie žvejį ir jo išsvajotą</p>\r\n<p class=\"caption\">Meilę pirmąja sutiktą krante</p>\r\n<p class=\"caption\">Krantas Baltijos jūros nušvinta</p>\r\n<p class=\"caption\">Gintarai ima lipti iš vandens</p>\r\n<p class=\"caption\">O tą dainą jūreiviai užtraukia</p>\r\n<p class=\"caption\">Kelia bure ir tolsta vis tolyn</p>\r\n<p class=\"caption\"> </p>\r\n<p class=\"caption\">Priedainis</p>\r\n<p class=\"caption\"> </p>\r\n<p class=\"caption\">Savo dainą mano miela tau dainuoju</p>\r\n<p class=\"caption\">Ir vairuoju savo laivą amžinai.</p>\r\n<p class=\"caption\">Tu krante manęs palauki</p>\r\n<p class=\"caption\">Aš žuvelę tau pagausiu</p>\r\n<p class=\"caption\">Tavo laimė kad jūreivi tu tiki.</p>\r\n<p class=\"caption\"> </p>\r\n<p class=\"caption\">Laivas vis plaukia ir plaukia</p>\r\n<p class=\"caption\">Gintariniai krantai lyg sapne</p>\r\n<p class=\"caption\">Atsispindi jos veidas ant denio</p>\r\n<p class=\"caption\">Akys mėlynos jūros gelmėse</p>\r\n<p class=\"caption\">Krantas  Baltijos..........</p>\r\n<p class=\"caption\"> </p>\r\n<p class=\"caption\">Priedainis</p>\r\n<p class=\"caption\"> </p>\r\n<p class=\"caption\">Gryžta laivelis parplaukia</p>\r\n<p class=\"caption\">Ir pasibaigia žvejo daina</p>\r\n<p class=\"caption\">Apkabinsiu tave šviesiaplaukę</p>\r\n<p class=\"caption\">Meilę pirmaja sutikta krante</p>\r\n<p class=\"caption\">Krantas Baltijos ...........</p>\r\n<p class=\"caption\"> </p>\r\n<p class=\"caption\">Priedainis</p>\r\n<p class=\"caption\"> </p>\r\n<p> </p>','',1,13,0,41,'2010-03-17 20:49:40',62,'','2010-03-17 20:51:20',62,0,'0000-00-00 00:00:00','2010-03-17 20:49:40','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',3,0,1,'','',0,3,'robots=\nauthor='),(66,'SMĖLĖTAS  KRANTAS','smltas-krantas','','<p class=\"system-pagebreak\">Iškeliauju į pasauly,-</p>\r\n<p class=\"system-pagebreak\"> </p>\r\n<p class=\"system-pagebreak\">Iškeliauju į pasauly,-</p>\r\n<p class=\"system-pagebreak\">Iškeliauju ieškot laimės.</p>\r\n<p class=\"system-pagebreak\">Palinkėk man gero vėjo,-</p>\r\n<p class=\"system-pagebreak\">Palinkėk šiltos man saulės…</p>\r\n<p class=\"system-pagebreak\"> </p>\r\n<p class=\"system-pagebreak\">Kaip sunku tave palikti,-</p>\r\n<p class=\"system-pagebreak\">Svetimais keliais keliauti.</p>\r\n<p class=\"system-pagebreak\">Tu nepyk,- nenusiminki</p>\r\n<p class=\"system-pagebreak\">Dėl manęs nesielvartauk…</p>\r\n<p class=\"system-pagebreak\"> </p>\r\n<p class=\"system-pagebreak\"><span style=\"text-decoration: underline;\">Pried…</span> Oo ooo, oo – ooo…</p>\r\n<p class=\"system-pagebreak\">O –o , ooo- o o ooo…</p>\r\n<p class=\"system-pagebreak\"> </p>\r\n<p class=\"system-pagebreak\">Nepamiršk takų pramintų,-</p>\r\n<p class=\"system-pagebreak\">Nei ramunių nuskintu,</p>\r\n<p class=\"system-pagebreak\">Man žinok esi brangiausia,-</p>\r\n<p class=\"system-pagebreak\">Vien tik tu,- Vien tik tu…</p>\r\n<p class=\"system-pagebreak\"> </p>\r\n<p class=\"system-pagebreak\">Nepamiršk smėlėto kranto,-</p>\r\n<p class=\"system-pagebreak\">Kur sedėjome abu,</p>\r\n<p class=\"system-pagebreak\">Man žinok esi brangiausia,-</p>\r\n<p class=\"system-pagebreak\">Vien tik tu ,- vien tik tu…</p>\r\n<p class=\"system-pagebreak\"> </p>\r\n<h2 class=\"system-pagebreak\">Solo…</h2>\r\n<p class=\"system-pagebreak\" style=\"margin-left: -1cm;\"><span style=\"text-decoration: underline;\"> Pried,- 2k.</span></p>\r\n<p class=\"system-pagebreak\"> </p>\r\n<p class=\"system-pagebreak\">Tau atsiūsiu šiltą vėją,-</p>\r\n<p class=\"system-pagebreak\">Su galybe bučinių,</p>\r\n<p class=\"system-pagebreak\">Jei mylėsi nepamirši,-</p>\r\n<p class=\"system-pagebreak\">Jei tikėsi,- gryšiu aš…</p>\r\n<p class=\"system-pagebreak\"> </p>\r\n<h2 class=\"system-pagebreak\" style=\"margin-left: -2cm;\">Pried,- 2k.             3-4,- st.              Pried...-1.</h2>\r\n<p class=\"system-pagebreak\"> </p>\r\n<p class=\"system-pagebreak\"> </p>\r\n<p><span style=\"font-size: 22pt; font-family: Century;\"><br /></span></p>','',1,13,0,41,'2010-03-17 20:51:41',62,'','2010-03-17 20:54:22',62,0,'0000-00-00 00:00:00','2010-03-17 20:51:41','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',2,0,2,'','',0,3,'robots=\nauthor='),(67,'ALYVOS','alyvos','','<p><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:HyphenationZone>19</w:HyphenationZone> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> </w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" LatentStyleCount=\"156\"> </w:LatentStyles> </xml><![endif]--> <!--[if gte mso 10]> <mce:style><!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:\"Įprastoji lentelė\"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-parent:\"\"; 	mso-padding-alt:0cm 5.4pt 0cm 5.4pt; 	mso-para-margin:0cm; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:\"Times New Roman\"; 	mso-ansi-language:#0400; 	mso-fareast-language:#0400; 	mso-bidi-language:#0400;} --> <!--[endif]--></p>\r\n<p class=\"caption\">ALYVOS</p>\r\n<p class=\"caption\"> </p>\r\n<p class=\"caption\"> </p>\r\n<p class=\"caption\">Įžanga</p>\r\n<p class=\"caption\"> </p>\r\n<p class=\"caption\">Pražydo, pražydo, pražydo</p>\r\n<p class=\"caption\">Prie kelio begėdės alyvos</p>\r\n<p class=\"caption\">Nuraudo, nuraudo, nuraudo</p>\r\n<p class=\"caption\">Kvepėdamos ilgisi draugo</p>\r\n<p class=\"caption\"> </p>\r\n<p class=\"caption\">Vaikšto, vaikšto po viena po du</p>\r\n<p class=\"caption\">Laukia, laukia meilės kartu</p>\r\n<p class=\"caption\">Nemyli myli buria ratu</p>\r\n<p class=\"caption\">Ieško, ieško laimingų žiedų</p>\r\n<p class=\"caption\"> </p>\r\n<p class=\"caption\">La, la, la .....alyvos</p>\r\n<p class=\"caption\"> </p>\r\n<p class=\"caption\">Vėlyvos, vėlyvos, vėlyvos</p>\r\n<p class=\"caption\">Pavasarį tavo alyvos</p>\r\n<p class=\"caption\">Nespėjo žydėti, nespėjo</p>\r\n<p class=\"caption\">Ruduo pirma laiko atėjo</p>\r\n<p class=\"caption\"> </p>\r\n<p class=\"caption\">2 stulpelis</p>\r\n<p class=\"caption\">la, la, la.... alyvos</p>\r\n<p class=\"caption\"> </p>\r\n<p class=\"caption\"> </p>\r\n<p class=\"caption\">pradingo, pradingo, pradingo</p>\r\n<p class=\"caption\">pavasario krūmas spalvingas</p>\r\n<p class=\"caption\">kas žino. Kas žino, kas žino</p>\r\n<p class=\"caption\">kur mūsų svajonių alyvos</p>\r\n<p class=\"caption\"> </p>\r\n<p class=\"caption\">2 stulpelis</p>\r\n<p class=\"caption\"> </p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 18pt; color: blue;\"><span class=\"caption\">la, la, la.... alyvos</span></span></p>\r\n<p> </p>','',1,13,0,42,'2010-03-17 20:57:41',62,'','2010-03-17 21:21:17',62,0,'0000-00-00 00:00:00','2010-03-17 20:57:41','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',2,0,3,'','',0,3,'robots=\nauthor='),(70,'Lietuvoje augančios medžių veislės.','lietuvoje-auganios-medi-veisls','','<p style=\"text-align: justify;\" dir=\"ltr\"><span style=\"color: #000000;\"><span style=\"font-size: medium;\"> <span style=\"font-family: times new roman,times;\">Lietuvoje augančios medžių veislės.</span></span></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"font-family: times new roman,times;\"><span style=\"font-size: medium;\"><span style=\"color: #000000;\"> </span></span></span><span style=\"font-family: times new roman,times;\"><span style=\"font-size: medium;\"><span style=\"color: #000000;\"><span style=\"font-size: medium;\">Medienos savybės labai priklauso nuo medžio veislės. Į tai būtina atsižvelgti parenkant dirbiniui medžiagą.</span></span></span></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"font-family: times new roman,times;\"><span style=\"font-size: medium;\"><span style=\"color: #000000;\"><span style=\"font-size: medium;\">Pušis. Tai labiausiai paplitęs mūsų kraštuose spygliuotis. Jis dažniausiai auga smėlingose vietose. Įvairiems dirbiniams tinkamiausia 120-180 metų pušis. Smulkesniems darbams galima naudoti ir jaunesnį medį. Pušies medienos spalva nevienoda: viršutinis sluoksnis yra geltonai baltas, o giliau esantys sluoksniai – rusvai rausvi arba net rusvai raudoni. Smėlingose vietose išaugusių pušų metinės rievės siauros, mediena tanki, o augančių prie </span></span></span></span></p>\r\n','\r\n<p style=\"text-align: justify;\">juodžemio – metinės rievės platesnės,mediena šviesesnė ir akytesnė. Išilginio pjūvio rievės sudaro tiesias, beveik lygiagrečias linijas. Dėl taisyklingo metinių rievių išsidėstymo pušis yra skali ir  lengvai apdirbama. Be to, ji labai vertinga, nes mažai šakota, todėl pušis lengvai suklijuojama. Tačiau ji turi ir trūkumų. Pirmiausia pušinę lentą labai sunku gražiai nuobliuoti, jos paviršius visuomet lieka šiurkštokas. Smailūs bei statūs kampai lengvai nusidažo ir nutrupa, todėl juos tenka apvalyti. Pušies dirbiniai dažniausiai dažomi aliejiniais dažais.</p>\r\n<p style=\"text-align: justify;\"><span style=\"font-family: times new roman,times;\"><span style=\"font-size: medium;\"><span style=\"color: #000000;\"><span style=\"font-size: medium;\">Eglė paplitusi beveik tiek pat kiek ir pušis. Ji subręsta ir įgyja geriausias mechanines savybes šiek tiek anksčiau už pušį. Eglės mediena balta, turi gelsvą atspalvį, truputį lyg blizgantį. Eglė minkštesnė ir šakotesnė už pušį, todėl jos mediena laikoma prastesne. Pušies šakos labiau ovališkos, o eglės – apskritos. Kaip ir pušis, eglė lengvai apdirbama, lengvai suklijuojama ir džiūdama per daug nesideformuoja. Ji pasižymi geromis akustinėmis savybėmis ir dėl to iš jos daromos muzikos instrumentų rezonatorių dėžės.</span></span></span></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"font-family: times new roman,times;\"><span style=\"font-size: medium;\"><span style=\"color: #000000;\"><span style=\"font-size: medium;\">Maumedis - kur kas retesnis medis. Jo mediena sunki, dervinga, bet gražios rudos spalvos. Apdorojamas sunkiai dėl dervingumo. Džiovinant atsiranda vidinių įplyšimų. Maumedžio dirbiniai dažniausiai lakuojami nitroceliulioidų lakais. Spiritiniai netinka.<span style=\"font-family: times new roman,times;\"><span style=\"font-size: medium;\"><span style=\"color: #000000;\"><span style=\"font-size: medium;\"><img src=\"images/stories/ban/dscf4906.jpg\" border=\"0\" width=\"816\" height=\"722\" /></span></span></span></span></span></span></span></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"font-family: times new roman,times;\"><span style=\"font-size: medium;\"><span style=\"color: #000000;\"><span style=\"font-size: medium;\">Kadagys. Tai spygliuotis krūmas. Jo stiebo storis gali būti iki 10 cm skersmens, tekstūra plonasluoksnė ir graži, o mediena tvirta, nesunkiai apdirbama, ją lengva poliruoti. Kadangi kamieno skersmuo nedidelis, didesnio ploto gaminiai daromi klijuojant siaurus ruošinius. Be to, šios medienos malonus kvapas gaminyje išsilaiko gana ilgai, dėl ko anksčiau ji buvo ypač vertinama.</span></span></span></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"font-family: times new roman,times;\"><span style=\"font-size: medium;\"><span style=\"color: #000000;\"><span style=\"font-size: medium;\">Kiparisas. Jo mediena panaši į kadagio, bet pilkesnė ir stambesnio sluoksniuotumo. Kipariso mediena neskilinėja ir nepersikreipia.</span></span></span></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"font-family: times new roman,times;\"><span style=\"font-size: medium;\"><span style=\"color: #000000;\"><span style=\"font-size: medium;\">Alksnis. Blankiai rausvos spalvos mediena. Lengvai apdirbama, nesunkiai nudažoma. Naudojama baldams,pjaustymo darbams ir medeliams, dailylentėms.</span></span></span></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"font-family: times new roman,times;\"><span style=\"font-size: medium;\"><span style=\"color: #000000;\"><span style=\"font-size: medium;\">Beržas kaip gamybinė medžiaga šiek tiek rečiau naudojamas, tačiau savo kokybe gerokai pralenkia eglę, ir pušį. Šis medis subręsta dvigubai greičiau negu pušis. Beržo medienos spalva gelsvai balta, metinės rievės nežymios. Beržas lengvai ir gražiai apdirbamas, netrapus, tačiau turi trūkumų: ilgai džiūsta, džiūdamas pleišėjai ir deformuojasi. Gamybai vartotina tik pakankamai išdžiūvusi beržo mediena. Iš jos pagaminti dirbiniai yra pakankamai tvirti ir gražus. Iš beržo daroma įrankiu rankenos, kirvakočiai, tekinimo dirbiniai. Beržas yra tinkamas fanerai gaminti.</span></span></span></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"font-family: times new roman,times;\"><span style=\"font-size: medium;\"><span style=\"color: #000000;\"><span style=\"font-size: medium;\">Uosis vertinamas labiau už beržą. Tai kietas, o kartu ir skalus medis. Karštuose garuose iššutintą uosio medieną lengva lenkti, todėl naudojama lenktoms detalėms gaminti. Mediena šviesi, su kakavos atspalviu. Metinės rievės gana ryškios, tamsesnės spalvos ir dažnai vingiuotos formos. Uosį galima gražiai apdirbti, tačiau tai brangus medis ( subręsta per 80-120 metų ) , todėl naudojamas tik vertingiems dirbiniams.</span></span></span></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"font-family: times new roman,times;\"><span style=\"font-size: medium;\"><span style=\"color: #000000;\"><span style=\"font-size: medium;\">Ąžuolas, sulaukęs 100-200 metų, pasižymi medienos kietumu, sunkumu, stiprumu ir patvarumu. Jo mediena rusvos spalvos, su ryškiomis metinėmis rievėmis ir einančiais iš šerdies spinduliais. Ir rievės, ir šerdis spinduliai labai puošia ąžuolinį daiktą, todėl jų nereikia paslėpti aliejiniais dažais. Ąžuoliniai dirbiniai paprastai lakuojami arba politūruojami.</span></span></span></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"font-family: times new roman,times;\"><span style=\"font-size: medium;\"><span style=\"color: #000000;\"><span style=\"font-size: medium;\">Klevas. Mediena balta, vienalytė, standi ir kieta, taisyklingai skyla. Ją lengva obliuoti. Klevo mediena naudojama baldų gamybai ir tekinimo bei pjaustymo darbams.</span></span></span></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"font-family: times new roman,times;\"><span style=\"font-size: medium;\"><span style=\"color: #000000;\"><span style=\"font-size: medium;\">Kriaušė. Mediena rusva, stangri, standi ir sunki. Naudojama pjaustymo darbams, braižymo priemonių gamybai, kadangi džiūdama mažai persikreipia.</span></span></span></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"font-family: times new roman,times;\"><span style=\"font-size: medium;\"><span style=\"color: #000000;\"><span style=\"font-size: medium;\">Skroblas, arba baltas bukas. Mediena balta, kieta, valkšni, standi ir smulkiasluoksnė. Dažniausia naudojami įrankių gamybai.</span></span></span></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"font-family: times new roman,times;\"><span style=\"font-size: medium;\"><span style=\"color: #000000;\"><span style=\"font-size: medium;\">Liepa. Mediena lengva, balta, minkšta, vienalytė, lengvai apdirbama. Ji ypač tinka tekinimo bei drožinėjimo darbams ir žaislų gamybai.</span></span></span></span></p>\r\n<p style=\"text-align: justify;\"><span style=\"font-family: times new roman,times;\"><span style=\"font-size: medium;\"><span style=\"color: #000000;\"><span style=\"font-size: medium;\">Medžio veislių yra kur kas daugiau nei aš čia paminėjau. Jų mediena tinkama ir naudojama įvairiausiems dirbiniams.</span></span></span></span></p>',1,13,0,38,'2010-03-22 11:08:11',62,'','0000-00-00 00:00:00',0,62,'2010-03-22 13:12:15','2010-03-22 11:08:11','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,1,'','',0,2,'robots=\nauthor='),(68,'Pokštas','poktas','','<p><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:HyphenationZone>19</w:HyphenationZone> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> </w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" LatentStyleCount=\"156\"> </w:LatentStyles> </xml><![endif]--> <!--[if gte mso 10]> <mce:style><!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:\"Įprastoji lentelė\"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-parent:\"\"; 	mso-padding-alt:0cm 5.4pt 0cm 5.4pt; 	mso-para-margin:0cm; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:\"Times New Roman\"; 	mso-ansi-language:#0400; 	mso-fareast-language:#0400; 	mso-bidi-language:#0400;} --> <!--[endif]--></p>\r\n<p class=\"caption\"><strong><em><span style=\"text-decoration: underline;\">Pokštas</span></em></strong></p>\r\n<p class=\"caption\"> </p>\r\n<p class=\"caption\"><strong>Aš nežinau ,kodėl taip myliu</strong></p>\r\n<p class=\"caption\"><strong>Tavo romantiškas akis</strong></p>\r\n<p class=\"caption\"><strong>Apsirengimo keistą stilių</strong></p>\r\n<p class=\"caption\"><strong>Ir senamadiškas viltis.</strong></p>\r\n<p class=\"caption\"><strong>Vė l dovanojau tau alyvų</strong></p>\r\n<p class=\"caption\"><strong>Gėlių kurių pats nekenčiu</strong></p>\r\n<p class=\"caption\"><strong>Pavėsyje Kaukazo slyvų</strong></p>\r\n<p class=\"caption\"><strong>Daugiau norėčiau paslapčių.</strong></p>\r\n<p class=\"caption\"><strong> </strong></p>\r\n<p class=\"caption\"><strong> Priedainis:</strong></p>\r\n<p class=\"caption\"><strong>Nuo Vilniaus lig Kauno-bokštų</strong></p>\r\n<p class=\"caption\"><strong>Kyla vėl noras –Pokštams</strong></p>\r\n<p class=\"caption\"><strong>Numeski savo akmenį toli</strong></p>\r\n<p class=\"caption\"><strong>Per Lietuvą Ameriką toli ar tu girdi</strong></p>\r\n<p class=\"caption\"><strong> </strong></p>\r\n<p class=\"caption\"><strong>Taip sudėliotos mūsų dienos</strong></p>\r\n<p class=\"caption\"><strong>Kaip celiuliozės fabrike</strong></p>\r\n<p class=\"caption\"><strong>Aš be tavęs jaučiuosi vienas</strong></p>\r\n<p class=\"caption\"><strong>Gražuole būtame laike</strong></p>\r\n<p class=\"caption\"><strong>Pasirinkau laimingą kelią</strong></p>\r\n<p class=\"caption\"><strong>Ir pasipuošęs sušukau</strong></p>\r\n<p class=\"caption\"><strong>Ateik romantiška panele</strong></p>\r\n<p class=\"caption\"><strong>Aš noriu su tavim keliaut.</strong></p>\r\n<p class=\"caption\"><strong> </strong></p>\r\n<p class=\"caption\"><strong> Priedainis:</strong></p>\r\n<p class=\"caption\"><strong> </strong></p>\r\n<p> </p>','',1,13,0,42,'2010-03-17 20:59:17',62,'','2010-03-17 21:00:24',62,0,'0000-00-00 00:00:00','2010-03-17 20:59:17','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',2,0,2,'','',0,1,'robots=\nauthor='),(69,'ZOMBIAI','zombiai','','<!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:HyphenationZone>19</w:HyphenationZone> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> </w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState=\"false\" LatentStyleCount=\"156\"> </w:LatentStyles> </xml><![endif]--><!--[if gte mso 10]> <mce:style><!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:\"Įprastoji lentelė\"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-parent:\"\"; 	mso-padding-alt:0cm 5.4pt 0cm 5.4pt; 	mso-para-margin:0cm; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:10.0pt; 	font-family:\"Times New Roman\"; 	mso-ansi-language:#0400; 	mso-fareast-language:#0400; 	mso-bidi-language:#0400;} --> <!--[endif]-->\r\n<p class=\"caption\">ZOMBIAI</p>\r\n<p class=\"caption\"> </p>\r\n<p class=\"caption\">Neseniai iškilo grėsmė</p>\r\n<p class=\"caption\">Gandai aplink ateina zombiai</p>\r\n<p class=\"caption\">Naktim nemiegu ir griebia nervas</p>\r\n<p class=\"caption\">Nes žinom zombiai skaudžiai kąs</p>\r\n<p class=\"caption\"> </p>\r\n<p class=\"caption\">Priedainis:</p>\r\n<p class=\"caption\">Gyvenk kaip galima švariau</p>\r\n<p class=\"caption\">Pikti kenkėjai budi tundroj</p>\r\n<p class=\"caption\">Paklausyk, paklausyk ar girdi</p>\r\n<p class=\"caption\">Zombiai atrieda, atidunda</p>\r\n<p class=\"caption\"> </p>\r\n<p class=\"caption\">Įžanga</p>\r\n<p class=\"caption\"> </p>\r\n<p class=\"caption\">Kaip apsigint jau žinau</p>\r\n<p class=\"caption\">Apsišluok ir apsiplauki</p>\r\n<p class=\"caption\">Kitaip užpuls padarai</p>\r\n<p class=\"caption\">Ropliai, graužikai ir zombiai</p>\r\n<p class=\"caption\"> </p>\r\n<p class=\"caption\">Priedainis</p>\r\n<p class=\"caption\"> </p>\r\n<p class=\"caption\">Įžanga</p>\r\n<p class=\"caption\"> </p>\r\n<p class=\"caption\">Balandžių daug Ukmergėj</p>\r\n<p class=\"caption\">Jie nekalti tačiau apsėsti</p>\r\n<p class=\"caption\">Neglostyk jų visiškai</p>\r\n<p class=\"caption\">Zombiais tu gali apsikrėsti</p>\r\n<p class=\"caption\"> </p>\r\n<p class=\"MsoNormal\"><span style=\"font-size: 14pt;\"><span class=\"caption\">Priedainis 3k.</span></span></p>','',1,13,0,42,'2010-03-17 21:00:31',62,'','2010-03-17 21:01:37',62,0,'0000-00-00 00:00:00','2010-03-17 21:00:31','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',2,0,1,'','',0,3,'robots=\nauthor='),(71,'Fotoparodoje - reti miškų paukščiai ','fotoparodoje-reti-mik-paukiai-','','<div style=\"TEXT-ALIGN: justify; TEXT-INDENT: 1cm; FONT-FAMILY: Times New Roman, Times, serif; FONT-SIZE: 14px\">  \r\n<table style=\"width: 100%;\" border=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 210px;\"> <img src=\"images/stories/naujienos/fotografijoje_reti_misku_pauksciai.jpg\" border=\"0\" alt=\"Sample Image\" style=\"border: 0px;\" /></td>\r\n<td style=\"FONT-FAMILY: Times New Roman, Times, serif; FONT-SIZE: 14px\" valign=\"top\"> Lietuvos radijuje ir televizijoje atidaryta fotografijų apie Lietuvos gamtą paroda, kurią inicijavo Valstybinė saugomų teritorijų tarnyba prie Aplinkos ministerijos. Parodoje – žinomo gamtininko, Dzūkijos nacionalinio parko direktoriaus pavaduotojo Eugenijaus Drobelio užfiksuoti reti Lietuvos gyvūnai ir paukščiai.</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<div style=\"TEXT-ALIGN: justify; TEXT-INDENT: 1cm; FONT-FAMILY: Times New Roman, Times, serif; FONT-SIZE: 14px\">\r\n','\r\nParodos apie gamtą foto mozaikoje - tetervinai, juodieji gandrai, didysis apuokas ir kiti saugomi gyvūnai, įtraukti į Raudonąją knygą. Gamtininkas visais metų laikais stebi gyvąją gamtą, fotografuodamas ir filmuodamas tai, ką šiaip žmogaus akimi sunku pastebėti. Eugenijus Drobelis prisipažįsta: „turiu tokią suplyšusią knygelę, kurioje pasižymiu, ką ir kada reikia nufotografuoti. Knygelėje surašyti ne tik sezonai, mėnesiai, bet ir dienos – kada paukščiai tuokiasi, veisiasi, augina jauniklius“.</div>\r\n<div style=\"TEXT-ALIGN: justify; TEXT-INDENT: 1cm; FONT-FAMILY: Times New Roman, Times, serif; FONT-SIZE: 14px\">Paroda apie saugomą Lietuvos gamtą dedikuota Tarptautiniams biologinės įvairovės metams. Biologinės įvairovės konvenciją yra pasirašiusios 188 šalys, tarp jų ir Lietuva. Pasaulyje užregistruota daugiau kaip 17 tūkstančių nykstančių rūšių. Lietuvoje į Raudonąją knygą įtrauktos 815 rūšys.</div>\r\n<div style=\"TEXT-ALIGN: justify; TEXT-INDENT: 1cm; FONT-FAMILY: Times New Roman, Times, serif; FONT-SIZE: 14px\">Valstybinė saugomų teritorijų tarnyba 2010-aisias metais inicijuoja naujus ekologinius ir edukacinius projektus, skirtus plačiajai visuomenei. Žaliaisiais projektais norima supažindinti su Lietuvos saugomų teritorijų augalų, gyvūnų įvairove bei skatinti mylėti ir saugoti gamtą.</div>\r\n<div style=\"TEXT-ALIGN: justify; TEXT-INDENT: 1cm; FONT-FAMILY: Times New Roman, Times, serif; FONT-SIZE: 14px\">Valstybinės saugomų teritorijų tarnybos prie Aplinkos ministerijos direktorės Rūtos Baškytės nuomone, labai svarbu suvokti, kad „esi ne tik gamtos dalis, bet ir atsakingas už jos išsaugojimą. Nuo gamtos išlikimo priklauso žmonijos likimas. Esame surišti viena virve. Tarptautinių biologinės įvairovės metų ženklas simbolizuoja sausumos ir vandenų gamtos įvairovę. Čia augalai, gyvūnai, žuvys, paukščiai, žmonės – visa gyvoji gamta“.</div>\r\n<div style=\"TEXT-ALIGN: justify; TEXT-INDENT: 1cm; FONT-FAMILY: Times New Roman, Times, serif; FONT-SIZE: 14px\"> </div>\r\n<div style=\"TEXT-ALIGN: justify; TEXT-INDENT: 1cm; FONT-FAMILY: Times New Roman, Times, serif; FONT-SIZE: 14px\">Aplinkos ministerijos informacija, 219 1869</div>\r\n<div style=\"TEXT-ALIGN: justify; TEXT-INDENT: 1cm; FONT-FAMILY: Times New Roman, Times, serif; FONT-SIZE: 14px\"> </div>',1,14,0,44,'2010-03-22 11:34:52',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-03-22 11:34:52','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,4,'','',0,1,'robots=\nauthor='),(72,'Konferencija „Žemėj Lietuvos ąžuolai žaliuos“ ','konferencija-emj-lietuvos-uolai-aliuos-','','<table border=\"0\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\">\r\n<h1><span style=\"color: #99cc00;\">Konferencija „Žemėj Lietuvos ąžuolai žaliuos“</span></h1>\r\n</td>\r\n<td width=\"100%\" align=\"right\"><a href=\"http://www.tytumu.lt/index2.php?option=com_content&amp;task=view&amp;id=143&amp;pop=1&amp;page=0&amp;Itemid=107\" target=\"_blank\" title=\"Spausdinti\" onclick=\"window.open(\'http://www.tytumu.lt/index2.php?option=com_content&amp;task=view&amp;id=143&amp;pop=1&amp;page=0&amp;Itemid=107\',\'win2\',\'status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no\'); return false;\"><img src=\"http://www.tytumu.lt/templates/vi_tytuvenu_misku_uredija/images/printButton.png\" border=\"0\" alt=\"Spausdinti\" align=\"middle\" name=\"Spausdinti\" /></a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table border=\"0\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\" valign=\"top\">\r\n<div style=\"TEXT-ALIGN: justify; TEXT-INDENT: 1cm; FONT-FAMILY: Times New Roman, Times, serif; FONT-SIZE: 14px\">  \r\n<table style=\"width: 100%;\" border=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 210px;\"> <img src=\"images/stories/naujienos/konferencija_zemej_lietuvos_azauolai_zaliuos.jpg\" border=\"0\" alt=\"Sample Image\" /></td>\r\n<td style=\"FONT-FAMILY: Times New Roman, Times, serif; FONT-SIZE: 14px\" valign=\"top\"> Šių metų vasario 26 dieną Marijampolėje vyko konferencija „Žemėj Lietuvos ąžuolai žaliuos“. Vis netylančios ir kaskart atsinaujinančios diskusijos dėl valstybinių miškų privatizavimo ar naujai sumąstyta idėja valstybės įmones pakeisti akcinėmis bendrovėmis, paskatino organizuoti konferenciją kartu su mokslo, valdžios, miškininkų ir medienos perdirbėjų atstovais. Konferenciją organizavo Marijampolės apskrities viršininko administracija, Lietuvos miškininkų sąjunga ir Medienos perdirbėjų asociacija.</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<div style=\"TEXT-ALIGN: justify; TEXT-INDENT: 1cm; FONT-FAMILY: Times New Roman, Times, serif; FONT-SIZE: 14px\">\r\n','\r\nMarijampolės apskrities viršininkė Birutė Kažemėkaitė konferencijos dalyviams sakė - “Miškai yra didžiulis turtas, kuris turi tarnauti valstybei ir žmogui“.</div>\r\n<div style=\"TEXT-ALIGN: justify; TEXT-INDENT: 1cm; FONT-FAMILY: Times New Roman, Times, serif; FONT-SIZE: 14px\">Pranešime „Kompleksinis miškų naudojimas ir valdymas darniam vystymui“ LR Seimo Aplinkos apsaugos komiteto pirmininkas Jonas Šimėnas sakė „Miškai – svarbiausias šalies atsinaujinantis gamtos turtas. Jų reikšmė yra neįkainojama formuojant Lietuvos gamtinį karkasą ir kraštovaizdį, kuriant piliečiams gyvenimo aplinkos kokybę ir sąlygas poilsiui. Miško produkcija yra svari dalis šalies ekonomikoje. Nepaisant miško nuosavybės formos, miškas pirmiausia yra nacionalinis turtas, kuris turi būti tinkamai saugomas ir tvarkomas, o jo teikiamos gėrybės racionaliai naudojamos ir išsaugojamos ateities kartoms“.</div>\r\n<div style=\"TEXT-ALIGN: justify; TEXT-INDENT: 1cm; FONT-FAMILY: Times New Roman, Times, serif; FONT-SIZE: 14px\">Dėl noro privatizuoti valstybinius miškus, Aplinkos apsaugos komiteto pirmininkas akcentavo, kad šiuo metu aktyviai siekiamas valstybinės reikšmės miškų privatizavimas turėtų tiktai trumpalaikę socialinę ekonominę naudą, tačiau ilgalaikėje perspektyvoje miškų vystymuisi tai būtų ypač žalinga. Šiuo metu Lietuvoje veikianti valstybinių miškų valdymo sistema yra pagrindas stabiliai medienos sektoriaus veiklai, papildančiai ekonominį šalies vystymąsi, todėl bet kokie miškų sistemos pertvarkymai turi būti grįsti Lietuvos miškų ūkio tradicijomis, specialistų praktine patirtimi bei atsižvelgiant į visuomenės nuomonę ir valstybės interesus. Pirmininko nuomone, negalima netgi lyginti Lietuvos ir Latvijos miškų, kaip tai daroma, nes Latvijoje miškų plotas tenkantis vienam gyventojui yra žymiai didesnis nei Lietuvoje.</div>\r\n<div style=\"TEXT-ALIGN: justify; TEXT-INDENT: 1cm; FONT-FAMILY: Times New Roman, Times, serif; FONT-SIZE: 14px\">Jono Šimėno nuomone, reikia galvoti ne apie miškų pardavimą, bet apie jų gausinimą ir ateities perspektyvas. Miškų urėdijos medelynuose išaugina daug sodmenų, kuriais galėtų veisti naujus miškus tam tikslui įsigydamos daugiau žemės ūkio paskirčiai nenaudojamų žemių, taip pat prie miškingumo didinimo galėtų prisidėti ir privačių miškų savininkai. Naujų miškų įveisimas prisidėtų ne tik prie Lietuvos kraštovaizdžio formavimo, bet ir užtikrintų miško ekosistemų tvarumą, biologinės įvairovės išsaugojimą.</div>\r\n<div style=\"TEXT-ALIGN: justify; TEXT-INDENT: 1cm; FONT-FAMILY: Times New Roman, Times, serif; FONT-SIZE: 14px\">Aplinkos apsaugos komiteto pirmininkas Jonas Šimėnas konferencijoje išsakė savo nuomonę, kad norint išspręsti ateities klausimą dėl valstybinių miškų stabilumo, galėtų būti pasirašyta rezoliucija tarp partijų, kuria politikai vieningai sutartų dėl valstybės turto - valstybinių miškų išsaugojimo.</div>\r\n<div style=\"TEXT-ALIGN: justify; TEXT-INDENT: 1cm; FONT-FAMILY: Times New Roman, Times, serif; FONT-SIZE: 14px\">„Miškai – ekonominės, ekologinės, socialinės ir demografinės kaimo plėtros akstinas“ – kalbėjo akademikas Leonardas Kairiūkštis. Pranešėjas apžvelgė ne tik miškų vystymąsi, jų teikiamą naudą ir reikšmę visuomenės socialiniam gyvenimui bei ekologijai, bet ir medienos pramonės klausimus. Akademikas pritarė Seimo Aplinkos apsaugos komiteto pirmininko nuomonei, jog reikia didinti Lietuvos miškingumą apželdant nenaudojamus žemės plotus, bet ir didinti brandžių medynų tūrį. Akademiko nuomone, įgyvendinus sklandančias valstybinių miškų privatizavimo idėjas, nukentėtų ne tik visuomenė, bet ir būtų sujaukta visa miškų ekosistema. Šiuo metu miškus gausinantys ir saugantys specialistai pažįsta mišką, žino kaip jame tvarkytis, o perėmus viską į kitas rankas, vargu ar per šimtmetį nauji šeimininkai perprastų miškininkystę.</div>\r\n<div style=\"TEXT-ALIGN: justify; TEXT-INDENT: 1cm; FONT-FAMILY: Times New Roman, Times, serif; FONT-SIZE: 14px\">UAB „Likmerė“ generalinis direktorius Mindaugas Kasmauskis skaitė pranešimą „Medienos pramonė. Galimybės, perspektyvos, problemos“. Direktorius pateikė statistinius duomenis kokią įtaką medienos pramonei turi nuolatinis ir stabilus medienos tiekimas iš valstybinių miškų, kai tuo tarpu privačių miškų savininkai medieną tiekia tik tuomet kai jiems yra palankios ekonominės sąlygos. Jo nuomone terminas „tvarus ir subalansuotas“ kai kuriems asocijuojasi kaip „šiandien, daug ir pigiai“, tačiau miškai yra lėtai atsinaujinantys ištekliai ir tam reikalinga ilgalaikė politika paremta ir žmogiškaisiais ištekliais.</div>\r\n<div style=\"TEXT-ALIGN: justify; TEXT-INDENT: 1cm; FONT-FAMILY: Times New Roman, Times, serif; FONT-SIZE: 14px\">Šiaulių universiteto Kaimo plėtros tyrimų centro direktorius doc. dr. Jonas Jasaitis pristatė „Lietuvos kaimo viziją Europos kontekste“. Pranešėjo nuomone, būtina mažinti žmogaus atitrūkimą nuo gamtos, skatinti augančios kartos gilesnį žmogaus ir gamtos ryšio suvokimą, geriau pažinti augaliją ir gyvūniją bei ekosistemų sąveiką, suprasti šiuolaikinius ekologijos reikalavimus, išsiugdyti aktyvią gamtosauginę poziciją, ženkliai mažinti aplinkos taršą. docentas Jonas Jasaitis akcentavo miškų mokslo svarbą bei šios srities specialistų tikslinį rengimą miškininkystės, genetikos, selekcijos, miškotvarkos, miškų ūkio ekonomikos bei vadybos srityse.</div>\r\n<div style=\"TEXT-ALIGN: justify; TEXT-INDENT: 1cm; FONT-FAMILY: Times New Roman, Times, serif; FONT-SIZE: 14px\">Konferencijos metu vykusiose diskusijose dalyvavo generalinio urėdo pavaduotojas Zdislovas Truskauskas, Lietuvos miškininkų sąjungos prezidentas, Lietuvos žemės ūkio universiteto Miškų ir ekologijos fakulteto dekanas Edmundas Bartkevičius, Žemės ūkio universiteto studijų prorektorius Jonas Čaplikas, Vilniaus kolegijos dėstytojas, socialinių mokslų daktaras Kęstutis Jaskelevičius, Lietuvos žaliųjų judėjimo pirmininkas Rimantas Braziulis, Privačių miškų savininkų asociacijos direktorius Rytis Kuliešis, Marijampolės apskrities viršininko administracijos regioninės plėtros departamento vyriausiasis specialistas Rytis Andriuškevičius, Tauragės apskrities viršininko pavaduotojas Raimondas Matemaitis, Kauno miškų ir aplinkos inžinerijos kolegijos direktorius Albinas Tebėra bei kiti konferencijos dalyviai.</div>\r\n<div style=\"TEXT-ALIGN: justify; TEXT-INDENT: 1cm; FONT-FAMILY: Times New Roman, Times, serif; FONT-SIZE: 14px\">Vienas iš konferencijos organizatorių, Medienos perdirbėjų asociacijos prezidentas Juozupas Zimnickas konferencijos dalyvius užtikrino, kad daugelis medienos pramonės verslininkų pritaria šiuo metu esančiai valstybinių miškų sistemai. Jo nuomone tik keli suinteresuoti asmenys siekia sujaukti miškų valdymo sistemą, pasisavinti miškus, o sužlugdę medienos pramonę, reikalautų subsidijų iš valstybės biudžeto. Pasak Juozupo Zimnicko, medienos perdirbėjai nori dirbti laisvos konkurencijos sąlygomis ir neleis keliems suinteresuotiems asmenims kelti sumaišties visuomenėje bei pasisavinti valstybinius miškus.</div>\r\n<div style=\"TEXT-ALIGN: justify; TEXT-INDENT: 1cm; FONT-FAMILY: Times New Roman, Times, serif; FONT-SIZE: 14px\">Diskusijose dalyvavęs VĮ Kėdainių miškų urėdijos miškų urėdas Juozas Girinas išreiškė savo nuomonę, kad būtina kelti medynų produktyvumą bei prisidedant prie energijos gamybos iš atsinaujinančių energijos šaltinių, auginti greitai augančius medynus. Urėdas apgailestavo, kad jeigu valstybė didins mokesčius miškų urėdijoms, miškininkai negalės daug lėšų skirti medynų produktyvumui didinti.</div>\r\n<div style=\"TEXT-ALIGN: justify; TEXT-INDENT: 1cm; FONT-FAMILY: Times New Roman, Times, serif; FONT-SIZE: 14px\">Konferencijos dalyviai, siekdami užtikrinti subalansuotą miškų ūkio vystymąsi bei užkirsti kelią norui privatizuoti valstybinius miškus, priėmė rezoliuciją, kuri grindžiama tuo, kad miškas yra nacionalinis turtas, kuris turi būti išsaugotas ateities kartoms, užtikrinant ekologines, ekonomines bei socialines visuomenės reikmes. Miško reikšmė yra neįkainojama formuojant Lietuvos gamtinį karkasą ir kraštovaizdį, kuriant piliečiams gyvenimo aplinkos kokybę ir sąlygas poilsiui. Miško produkcija yra svari dalis šalies ekonomikoje. Pasirašyta rezoliucija bus perduota Lietuvos Respublikos Prezidentei, Lietuvos Respublikos Seimui ir Lietuvos Respublikos Vyriausybei.</div>\r\n<div style=\"TEXT-ALIGN: justify; TEXT-INDENT: 1cm; FONT-FAMILY: Times New Roman, Times, serif; FONT-SIZE: 14px\">Konferencijos dalyviai, siekdami tądien išsakytų idėjų tęstinumo, išrinko Kaimo ir miško plėtros visuomeninę tarybą, į kurią įeina miškininkų, mokslininkų, medienos perdirbėjų, savivaldybių bei žaliųjų judėjimo atstovai.</div>\r\n<div style=\"TEXT-ALIGN: justify; TEXT-INDENT: 1cm; FONT-FAMILY: Times New Roman, Times, serif; FONT-SIZE: 14px\"> </div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>',1,14,0,44,'2010-03-22 11:38:28',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-03-22 11:38:28','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,3,'','',0,1,'robots=\nauthor='),(73,'Už neteisėtus miško kirtimus per metus skirta daugiau kaip pusė milijono litų baudų ','u-neteistus-miko-kirtimus-per-metus-skirta-daugiau-kaip-pus-milijono-lit-baud-','','<table border=\"0\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\">\r\n<h1><span style=\"color: #99cc00;\">Už neteisėtus miško kirtimus per metus skirta daugiau kaip pusė milijono litų baudų</span></h1>\r\n</td>\r\n<td width=\"100%\" align=\"right\"><a href=\"http://www.tytumu.lt/index2.php?option=com_content&amp;task=view&amp;id=142&amp;pop=1&amp;page=0&amp;Itemid=107\" target=\"_blank\" title=\"Spausdinti\" onclick=\"window.open(\'http://www.tytumu.lt/index2.php?option=com_content&amp;task=view&amp;id=142&amp;pop=1&amp;page=0&amp;Itemid=107\',\'win2\',\'status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no\'); return false;\"></a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table border=\"0\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\" valign=\"top\">\r\n<div style=\"TEXT-ALIGN: justify; TEXT-INDENT: 1cm; FONT-FAMILY: Times New Roman, Times, serif; FONT-SIZE: 14px\">  \r\n<table style=\"width: 100%;\" border=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 210px;\"> <img src=\"images/stories/naujienos/neteiseti_misko_kirtimai.jpg\" border=\"0\" alt=\"Sample Image\" /></td>\r\n<td style=\"FONT-FAMILY: Times New Roman, Times, serif; FONT-SIZE: 14px\" valign=\"top\"> Praėjusiais metais miškų pareigūnai, Aplinkos ministerijos Valstybinės miškų tarnybos duomenimis, nustatė šešis šimtus neteisėtų miško kirtimų atvejų, kurių metu iškirsta beveik 14 tūkst. kubinių metrų medienos.</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<div style=\"TEXT-ALIGN: justify; TEXT-INDENT: 1cm; FONT-FAMILY: Times New Roman, Times, serif; FONT-SIZE: 14px\">\r\n','\r\nŠiuo požiūriu „pirmauja“ privatūs miškai. Juose pernai nustatyti 325 neteisėti kirtimai, kai iškirsta arti 12 tūkst. kubinių metrų medienos. Nors tokių kirtimų privačiuose miškuose skaičius, palyginti su 2008 m., sumažėjo 11 proc., tačiau jų metu iškirsta 6 tūkst. kubinių metrų medienos daugiau.</div>\r\n<div style=\"TEXT-ALIGN: justify; TEXT-INDENT: 1cm; FONT-FAMILY: Times New Roman, Times, serif; FONT-SIZE: 14px\">Valstybiniuose miškuose pernai buvo išaiškinti 275 neteisėti kirtimai. Jų metu iškirsti 1968 kubiniai metrai medienos. Valstybiniai miškų pareigūnai pernai nustatė 46 pagamintos miško produkcijos grobimo atvejus, kai buvo pagrobta 832 kubiniai metrai produkcijos (2008 m. nustatyti 35 atvejai, pagrobti 405 kubiniai metrai medienos).</div>\r\n<div style=\"TEXT-ALIGN: justify; TEXT-INDENT: 1cm; FONT-FAMILY: Times New Roman, Times, serif; FONT-SIZE: 14px\">Už neteisėtus miško kirtimus ir kitus Miškų įstatymo pažeidimus administracine tvarka pernai buvo nubaustas 2661 asmuo. Pažeidėjams skirta 522 tūkst. litų baudų.</div>\r\n<div style=\"TEXT-ALIGN: justify; TEXT-INDENT: 1cm; FONT-FAMILY: Times New Roman, Times, serif; FONT-SIZE: 14px\"> </div>\r\n<div style=\"TEXT-ALIGN: justify; TEXT-INDENT: 1cm; FONT-FAMILY: Times New Roman, Times, serif; FONT-SIZE: 14px\">Aplinkos ministerijos informacija, tel. 266 3660</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>',1,14,0,44,'2010-03-22 11:40:44',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-03-22 11:40: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=',1,0,2,'','',0,0,'robots=\nauthor='),(74,'Miško kirtimų tvarka bus paprastesnė ','miko-kirtim-tvarka-bus-paprastesn-','','<blockquote>  \r\n<table border=\"0\">\r\n<tbody>\r\n<tr>\r\n<td width=\"100%\">\r\n<h1><span style=\"color: #99cc00;\">Miško kirtimų tvarka bus paprastesnė</span></h1>\r\n</td>\r\n<td width=\"100%\" align=\"right\"><a href=\"http://www.tytumu.lt/index2.php?option=com_content&amp;task=view&amp;id=141&amp;pop=1&amp;page=0&amp;Itemid=107\" target=\"_blank\" title=\"Spausdinti\" onclick=\"window.open(\'http://www.tytumu.lt/index2.php?option=com_content&amp;task=view&amp;id=141&amp;pop=1&amp;page=0&amp;Itemid=107\',\'win2\',\'status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no\'); return false;\"><img src=\"http://www.tytumu.lt/templates/vi_tytuvenu_misku_uredija/images/printButton.png\" border=\"0\" alt=\"Spausdinti\" align=\"middle\" name=\"Spausdinti\" /></a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table border=\"0\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\" valign=\"top\">\r\n<div style=\"TEXT-ALIGN: justify; TEXT-INDENT: 1cm; FONT-FAMILY: Times New Roman, Times, serif; FONT-SIZE: 14px\">  \r\n<table style=\"width: 100%;\" border=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 210px;\"><img src=\"images/stories/naujienos/misko_kirtimo_tvarka_bus_paprastesne.jpg\" border=\"0\" alt=\"Sample Image\" /></td>\r\n<td style=\"FONT-FAMILY: Times New Roman, Times, serif; FONT-SIZE: 14px\" valign=\"top\"> Aplinkos ministerija patvirtino naujas Miško kirtimų taisykles, kurios supaprastins dabar galiojančią kirtimų tvarką, sudarys geresnes prielaidas biologinei įvairovei ir kraštovaizdžiui išsaugoti, racionaliai ir darniai naudoti miško išteklius, puoselėti produktyvius medynus. Jos įsigalios kovo 1 dieną.</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>\r\n<div style=\"TEXT-ALIGN: justify; TEXT-INDENT: 1cm; FONT-FAMILY: Times New Roman, Times, serif; FONT-SIZE: 14px\">\r\n','\r\nNaujosios taisyklės, kaip sakė Aplinkos ministerijos Miškų departamento direktorius Valdas Vaičiūnas, nuo šiol bus vienintelis teisės aktas, reglamentuojantis visus miško kirtimus. Jos leis privačių miškų savininkams ir valstybinių miškų valdytojams veiksmingiau ūkininkauti savo valdose. Naujasis dokumentas aiškiau nustato, kaip turi būti projektuojami ir vykdomi neplyni, ugdomieji ir kraštovaizdžiui formuoti skirti miško kirtimai, biržių šliejimo reikalavimus, miško kirtimo atliekų naudojimą biokurui, trako ir pomiškio kirtimus ir kt. Įsigaliojus šioms taisyklėms, bus sudarytos geresnės galimybės miškus pritaikyti rekreaciniams poreikiams, miško kirtimo atliekas panaudoti biokurui. Taip pat bus padidintas medynų amžius, iki kurio leidžiama projektuoti ir vykdyti ugdomuosius miško kirtimus. Atsižvelgus į naujas medienos ir biokuro ruošos technologijas, bus pakeisti medienai ruošti skirtos technikos darbo kertant mišką reikalavimai.</div>\r\n<div style=\"TEXT-ALIGN: justify; TEXT-INDENT: 1cm; FONT-FAMILY: Times New Roman, Times, serif; FONT-SIZE: 14px\">Naujasis dokumentas detaliau reglamentuoja ir biologinės įvairovės išsaugojimo miškuose klausimus. Numatoma palikti negyvus medžius atrankinių sanitarinių kirtimų metu, neribojamas nevietinių (išskyrus maumedį ir buką), svetimžemių, invazinių medžių rūšių kirtimų amžius, papildytas retųjų paukščių, aplink kurių lizdavietes yra ribojami miško kirtimai, sąrašas. Naujosios taisyklės taip pat įteisina draudimą vykdyti ugdomuosius miško kirtimus pavasarį ir vasarą: šviesinimus – nuo balandžio 1 d. iki birželio 1 d., retinimus ir einamuosius miško kirtimus – nuo gegužės 1 d. iki liepos 1 dienos.</div>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</blockquote>',1,14,0,44,'2010-03-22 11:43:15',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-03-22 11:43:15','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,1,'','',0,13,'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 (70,5),(51,24),(53,26),(50,23),(52,25),(58,17),(56,18),(63,14),(59,15),(60,16),(57,19),(54,20),(49,22),(55,21),(62,13),(61,12),(65,11),(66,10),(64,9),(69,8),(68,7),(67,6),(71,4),(74,3),(73,2),(72,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),(11,'users','63',0,'Mindaugas',0),(12,'users','64',0,'Petras',0),(13,'users','65',0,'flaineta',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 (18,'',11),(18,'',12),(18,'',13),(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 (69,'main_meniu','gfgggf','gfgggf','index.php?option=com_content&view=article&id=48','component',1,0,20,0,9,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(70,'main_meniu','matematika','matematika','index.php?option=com_content&view=article&id=49','component',-2,0,20,0,7,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(71,'main_meniu','matematika','matematika','index.php?option=com_content&view=article&id=50','component',-2,0,20,0,8,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(72,'main_meniu','matematika','matematika','index.php?option=com_content&view=category&id=37','component',-2,0,20,0,4,0,'0000-00-00 00:00:00',0,0,0,0,'display_num=10\nshow_headings=1\nshow_date=0\ndate_format=\nfilter=1\nfilter_type=title\norderby_sec=\nshow_pagination=1\nshow_pagination_limit=1\nshow_feed_link=1\nshow_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=0\nshow_pdf_icon=0\nshow_print_icon=0\nshow_email_icon=\nshow_hits=\nfeed_summary=0\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(73,'main_meniu','lietuviu','lietuviu','index.php?option=com_content&view=category&id=36','component',-2,0,20,0,5,0,'0000-00-00 00:00:00',0,0,0,0,'display_num=0\nshow_headings=1\nshow_date=1\ndate_format=\nfilter=1\nfilter_type=title\norderby_sec=\nshow_pagination=1\nshow_pagination_limit=1\nshow_feed_link=1\nshow_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=1\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=1\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=1\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(74,'main_meniu','dfghjkl','dfghjkl','index.php?option=com_content&view=category&layout=blog&id=37','component',-2,0,20,0,6,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=3\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),(75,'main_meniu','dainu tekstai','dainu-tekstai','index.php?option=com_content&view=section&id=13','component',-2,0,20,0,3,0,'0000-00-00 00:00:00',0,0,0,0,'show_description=1\nshow_description_image=1\nshow_categories=1\nshow_empty_categories=1\nshow_cat_num_articles=1\nshow_category_description=1\norderby=\norderby_sec=\nshow_feed_link=1\nshow_noauth=0\nshow_title=1\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=1\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(76,'main_meniu','dainu tekstai','dainu-tekstai','index.php?option=com_content&view=section&id=13','component',-2,0,20,0,2,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=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(77,'main_meniu','dainu tekstai','dainu-tekstai','index.php?option=com_content&view=category&layout=blog&id=38','component',1,0,20,0,10,0,'0000-00-00 00:00:00',0,0,0,0,'show_description=1\nshow_description_image=1\nnum_leading_articles=1\nnum_intro_articles=0\nnum_columns=0\nnum_links=0\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=1\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(78,'main_meniu','naujienos','naujienos','index.php?option=com_content&view=article&id=74','component',1,0,20,0,1,62,'2010-03-22 11:50:54',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,1);
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 (7,'main_meniu','main_meniu','');
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 (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,''),(18,'Login Form','',4,'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','',3,'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','',5,'left',0,'0000-00-00 00:00:00',0,'mod_archive',0,0,1,'cache=1',1,0,''),(24,'Sections','',6,'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','',7,'left',0,'0000-00-00 00:00:00',0,'mod_related_items',0,0,1,'',0,0,''),(27,'Search','',1,'user4',0,'0000-00-00 00:00:00',1,'mod_search',0,0,0,'cache=1',0,0,''),(28,'Random Image','',9,'right',0,'0000-00-00 00:00:00',1,'mod_random_image',0,0,1,'',0,0,''),(45,'bandymas','',11,'left',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,1,'menu_style=list\nstartLevel=0\nendLevel=0\nshowAllChildren=0\nwindow_open=\nshow_whitespace=0\ncache=1\ntag_id=\nclass_sfx=\nmoduleclass_sfx=\nmaxdepth=10\nmenu_images=0\nmenu_images_align=0\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,''),(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,''),(32,'Wrapper','',8,'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','',9,'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,''),(46,'main_meniu','',2,'left',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,1,'menutype=main_meniu\nmenu_style=list\nstartLevel=0\nendLevel=0\nshowAllChildren=0\nwindow_open=\nshow_whitespace=0\ncache=1\ntag_id=\nclass_sfx=\nmoduleclass_sfx=\nmaxdepth=10\nmenu_images=0\nmenu_images_align=0\nmenu_images_link=0\nexpand_menu=0\nactivate_parent=0\nfull_active_id=0\nindent_image=0\nindent_image1=\nindent_image2=\nindent_image3=\nindent_image4=\nindent_image5=\nindent_image6=\nspacer=\nend_spacer=\n\n',0,0,''),(41,'Welcome to Joomla!','<div style=\"padding: 5px\">  <p>   Congratulations on choosing Joomla! as your content management system. To   help you get started, check out these excellent resources for securing your   server and pointers to documentation and other helpful resources. </p> <p>   <strong>Security</strong><br /> </p> <p>   On the Internet, security is always a concern. For that reason, you are   encouraged to subscribe to the   <a href=\"http://feedburner.google.com/fb/a/mailverify?uri=JoomlaSecurityNews\" target=\"_blank\">Joomla!   Security Announcements</a> for the latest information on new Joomla! releases,   emailed to you automatically. </p> <p>   If this is one of your first Web sites, security considerations may   seem complicated and intimidating. There are three simple steps that go a long   way towards securing a Web site: (1) regular backups; (2) prompt updates to the   <a href=\"http://www.joomla.org/download.html\" target=\"_blank\">latest Joomla! release;</a> and (3) a <a href=\"http://docs.joomla.org/Security_Checklist_2_-_Hosting_and_Server_Setup\" target=\"_blank\" title=\"good Web host\">good Web host</a>. There are many other important security considerations that you can learn about by reading the <a href=\"http://docs.joomla.org/Category:Security_Checklist\" target=\"_blank\" title=\"Joomla! Security Checklist\">Joomla! Security Checklist</a>. </p> <p>If you believe your Web site was attacked, or you think you have discovered a security issue in Joomla!, please do not post it in the Joomla! forums. Publishing this information could put other Web sites at risk. Instead, report possible security vulnerabilities to the <a href=\"http://developer.joomla.org/security/contact-the-team.html\" target=\"_blank\" title=\"Joomla! Security Task Force\">Joomla! Security Task Force</a>.</p><p><strong>Learning Joomla!</strong> </p> <p>   A good place to start learning Joomla! is the   \"<a href=\"http://docs.joomla.org/beginners\" target=\"_blank\">Absolute Beginner\'s   Guide to Joomla!.</a>\" There, you will find a Quick Start to Joomla!   <a href=\"http://help.joomla.org/ghop/feb2008/task048/joomla_15_quickstart.pdf\" target=\"_blank\">guide</a>   and <a href=\"http://help.joomla.org/ghop/feb2008/task167/index.html\" target=\"_blank\">video</a>,   amongst many other tutorials. The   <a href=\"http://community.joomla.org/magazine/view-all-issues.html\" target=\"_blank\">Joomla!   Community Magazine</a> also has   <a href=\"http://community.joomla.org/magazine/article/522-introductory-learning-joomla-using-sample-data.html\" target=\"_blank\">articles   for new learners</a> and experienced users, alike. A great place to look for   answers is the   <a href=\"http://docs.joomla.org/Category:FAQ\" target=\"_blank\">Frequently Asked   Questions (FAQ)</a>. If you are stuck on a particular screen in the   Administrator (which is where you are now), try clicking the Help toolbar   button to get assistance specific to that page. </p> <p>   If you still have questions, please feel free to use the   <a href=\"http://forum.joomla.org/\" target=\"_blank\">Joomla! Forums.</a> The forums   are an incredibly valuable resource for all levels of Joomla! users. Before   you post a question, though, use the forum search (located at the top of each   forum page) to see if the question has been asked and answered. </p> <p>   <strong>Getting Involved</strong> </p> <p>   <a name=\"twjs\" title=\"twjs\"></a> If you want to help make Joomla! better, consider getting   involved. There are   <a href=\"http://www.joomla.org/about-joomla/contribute-to-joomla.html\" target=\"_blank\">many ways   you can make a positive difference.</a> Have fun using Joomla!.</p></div>',0,'cpanel',0,'0000-00-00 00:00:00',1,'mod_custom',0,2,1,'moduleclass_sfx=\n\n',1,1,''),(42,'Joomla! Security Newsfeed','',6,'cpanel',0,'0000-00-00 00:00:00',1,'mod_feed',0,0,1,'cache=1\ncache_time=15\nmoduleclass_sfx=\nrssurl=http://feeds.joomla.org/JoomlaSecurityNews\nrssrtl=0\nrsstitle=1\nrssdesc=0\nrssimage=1\nrssitems=1\nrssitemdesc=1\nword_count=0\n\n',0,1,''),(43,'bretteleben.de Google Ad Manager Modul','',1,'left',0,'0000-00-00 00:00:00',0,'mod_gam',0,0,1,'pubid=pub-6066847002947282\nslot=\nmoduleclass_sfx=\nAttr01a=google_ad_width:90\nAttr01b=\nAttr02a=\nAttr02b=\nAttr03a=\nAttr03b=\nAttr04a=\nAttr04b=\nAttr05a=\nAttr05b=\nPageAttr01a=\nPageAttr01b=\nPageAttr02a=\nPageAttr02b=\nPageAttr03a=\nPageAttr03b=\nPageAttr04a=\nPageAttr04b=\nPageAttr05a=\nPageAttr05b=\nSlotAttr01a=\nSlotAttr01b=\nSlotAttr02a=\nSlotAttr02b=\nSlotAttr03a=\nSlotAttr03b=\nSlotAttr04a=\nSlotAttr04b=\nSlotAttr05a=\nSlotAttr05b=\n\n',0,0,''),(44,'Easy Adsense','',10,'left',0,'0000-00-00 00:00:00',0,'mod_easy_adsense',0,0,1,'moduleclass_sfx=\nadsense_code=<script type=\"text/javascript\"><!--\\ngoogle_ad_client = \"pub-6066847002947282\";\\ngoogle_ad_width = 160;\\ngoogle_ad_height = 600;\\ngoogle_ad_format = \"160x600_as\";\\ngoogle_ad_type = \"text\";\\ngoogle_color_link = \"ee3300\";\\ngoogle_color_border = \"FFFFFF\";\\ngoogle_color_url = \"000000\";\\ngoogle_color_bg = \"ffffff\";\\ngoogle_ad_channel =\"\";\\n//--></script>\\n<script type=\"text/javascript\"\\n  src=\"http://pagead2.googlesyndication.com/pagead/show_ads.js\">\\n</script>\nblocked_ips=\nalt_message=\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),(17,0),(19,2),(19,4),(19,27),(19,36),(22,2),(22,4),(22,27),(22,36),(25,0),(27,0),(29,0),(30,0),(32,0),(33,0),(34,0),(35,0),(36,0),(39,43),(39,44),(39,45),(39,46),(39,47),(40,0),(43,0),(44,0),(45,0),(46,0);
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,0,'0000-00-00 00:00:00',3,0),(5,8,'Software Freedom Law Center Blog','software-freedom-law-center-blog','http://www.softwarefreedom.org/feeds/blog/',NULL,1,5,3600,0,'0000-00-00 00:00:00',2,0),(5,9,'Software Freedom Law Center News','software-freedom-law-center','http://www.softwarefreedom.org/feeds/news/',NULL,1,5,3600,0,'0000-00-00 00:00:00',1,0),(5,10,'Open Source Initiative Blog','open-source-initiative-blog','http://www.opensource.org/blog/feed',NULL,1,5,3600,0,'0000-00-00 00:00:00',5,0),(6,11,'PHP News and Announcements','php-news-and-announcements','http://www.php.net/feed.atom',NULL,1,5,3600,0,'0000-00-00 00:00:00',1,0),(6,12,'Planet MySQL','planet-mysql','http://www.planetmysql.org/rss20.xml',NULL,1,5,3600,0,'0000-00-00 00:00:00',2,0),(6,13,'Linux Foundation Announcements','linux-foundation-announcements','http://www.linuxfoundation.org/press/rss20.xml',NULL,1,5,3600,0,'0000-00-00 00:00:00',3,0),(6,14,'Mootools Blog','mootools-blog','http://feeds.feedburner.com/mootools-blog',NULL,1,5,3600,0,'0000-00-00 00:00:00',4,0);
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=extended\nskin=1\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\nblockquote=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',''),(37,'bretteleben.de Google Ad Manager Plugin','begam','system',0,0,1,0,0,0,'0000-00-00 00:00:00','begam_pubid=\n\n');
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',3),(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 `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,'2010-02-24 17:49:57',1,14);
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',12,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,'mano','','skyrius','articles.jpg','content','right','<p>svarbi medziaga</p>',0,0,'0000-00-00 00:00:00',8,0,4,''),(3,'SITAS','','faqs','key.jpg','content','left','',0,0,'0000-00-00 00:00:00',6,0,23,''),(14,'naujienos','','naujienos','','content','left','',1,0,'0000-00-00 00:00:00',10,0,1,''),(4,'arvydo','','turinys','','content','left','',0,0,'0000-00-00 00:00:00',7,0,16,''),(5,'pagr','','pagr','','content','left','',1,0,'0000-00-00 00:00:00',2,0,4,''),(13,'zodziai','','zodziai','','content','left','',0,0,'0000-00-00 00:00:00',9,0,6,''),(12,'lietuviu','','lietuviu','','content','left','',0,0,'0000-00-00 00:00:00',5,0,1,''),(11,'matematika','','matematika','','content','left','',0,0,'0000-00-00 00:00:00',3,0,2,'');
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 ('','1274299828','9ffa5a1991070e8e7fc9511631e50367',1,0,'',0,0,'__default|a:7:{s:15:\"session.counter\";i:4;s:19:\"session.timer.start\";i:1274299817;s:18:\"session.timer.last\";i:1274299826;s:17:\"session.timer.now\";i:1274299828;s:22:\"session.client.browser\";s:85:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; lt; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3\";s:8:\"registry\";O:9:\"JRegistry\":3:{s:17:\"_defaultNameSpace\";s:7:\"session\";s:9:\"_registry\";a:1:{s:7:\"session\";a:1:{s:4:\"data\";O:8:\"stdClass\":0:{}}}s:7:\"_errors\";a:0:{}}s:4:\"user\";O:5:\"JUser\":19:{s:2:\"id\";i:0;s:4:\"name\";N;s:8:\"username\";N;s:5:\"email\";N;s:8:\"password\";N;s:14:\"password_clear\";s:0:\"\";s:8:\"usertype\";N;s:5:\"block\";N;s:9:\"sendEmail\";i:0;s:3:\"gid\";i:0;s:12:\"registerDate\";N;s:13:\"lastvisitDate\";N;s:10:\"activation\";N;s:6:\"params\";N;s:3:\"aid\";i:0;s:5:\"guest\";i:1;s:7:\"_params\";O:10:\"JParameter\":7:{s:4:\"_raw\";s:0:\"\";s:4:\"_xml\";N;s:9:\"_elements\";a:0:{}s:12:\"_elementPath\";a:1:{i:0;s:75:\"/home/mindaugas/public_html/torrent/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:{}}}'),('admin','1274299900','fabd78d6c78eba0b0ea27036510abb27',0,62,'Super Administrator',25,1,'__default|a:8:{s:15:\"session.counter\";i:3;s:19:\"session.timer.start\";i:1274299836;s:18:\"session.timer.last\";i:1274299900;s:17:\"session.timer.now\";i:1274299900;s:22:\"session.client.browser\";s:85:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; lt; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3\";s:8:\"registry\";O:9:\"JRegistry\":3:{s:17:\"_defaultNameSpace\";s:7:\"session\";s:9:\"_registry\";a:2:{s:7:\"session\";a:1:{s:4:\"data\";O:8:\"stdClass\":0:{}}s:11:\"application\";a:1:{s:4:\"data\";O:8:\"stdClass\":1:{s:4:\"lang\";s: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:28:\"mindaugas.rimkus@infoside.lt\";s:8:\"password\";s:65:\"28679ee950c0bafbca1bb3d27a68a84a:l6FnMxtCPXrrHCh47PE3r2rQ6SNWlsIM\";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:\"2010-02-07 20:58:10\";s:13:\"lastvisitDate\";s:19:\"2010-03-22 13:07:26\";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:75:\"/home/mindaugas/public_html/torrent/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:\"bb2767cb7a078a4ad6b8456f1ff50d47\";}'),('','1274299278','c05ba83d9096bdfd49c50cfb25e6739f',1,0,'',0,1,'__default|a:8:{s:15:\"session.counter\";i:4;s:19:\"session.timer.start\";i:1274299265;s:18:\"session.timer.last\";i:1274299275;s:17:\"session.timer.now\";i:1274299278;s:22:\"session.client.browser\";s:85:\"Mozilla/5.0 (Windows; U; Windows NT 5.1; lt; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3\";s:8:\"registry\";O:9:\"JRegistry\":3:{s:17:\"_defaultNameSpace\";s:7:\"session\";s:9:\"_registry\";a:1:{s:7:\"session\";a:1:{s:4:\"data\";O:8:\"stdClass\":0:{}}}s:7:\"_errors\";a:0:{}}s:4:\"user\";O:5:\"JUser\":19:{s:2:\"id\";i:0;s:4:\"name\";N;s:8:\"username\";N;s:5:\"email\";N;s:8:\"password\";N;s:14:\"password_clear\";s:0:\"\";s:8:\"usertype\";N;s:5:\"block\";N;s:9:\"sendEmail\";i:0;s:3:\"gid\";i:0;s:12:\"registerDate\";N;s:13:\"lastvisitDate\";N;s:10:\"activation\";N;s:6:\"params\";N;s:3:\"aid\";i:0;s:5:\"guest\";i:1;s:7:\"_params\";O:10:\"JParameter\":7:{s:4:\"_raw\";s:0:\"\";s:4:\"_xml\";N;s:9:\"_elements\";a:0:{}s:12:\"_elementPath\";a:1:{i:0;s:75:\"/home/mindaugas/public_html/torrent/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:\"5fcdffd38b9f9529cd1f6c577619fa4e\";}');
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 ('rhuk_milkyway',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','mindaugas.rimkus@infoside.lt','28679ee950c0bafbca1bb3d27a68a84a:l6FnMxtCPXrrHCh47PE3r2rQ6SNWlsIM','Super Administrator',0,1,25,'2010-02-07 20:58:10','2010-05-19 20:11:40','',''),(63,'Mindaugas','Rimkus','mindaugas.rimkus@gmail.com','602728171f29936c286e9be98a43602d:PSLmbaSxnPGPsJxFDrOXBW9prl40ro35','Registered',0,0,18,'2010-02-07 20:20:41','2010-02-09 16:44:20','','\n'),(64,'Petras','Petras','m.rimkus@tytumu.lt','8fb900c584fea5f3da7ef92da2816e17:SioWEx4aiU6B3nfnBRQpbRf0e5uw0Hto','Registered',0,0,18,'2010-02-08 14:40:43','2010-02-09 16:44:15','',''),(65,'flaineta','flaineta','flaineta@gmail.com','aefdab6bbcf00ff26a5541b6cb5253d0:AC3eW8Kda17wKRZNzsBqSHQj8AMJMnl3','Registered',0,0,18,'2010-02-08 17:54:55','2010-02-09 16:43:47','','');
UNLOCK TABLES;
/*!40000 ALTER TABLE `jos_users` 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 */;

--
-- Table structure for table `xbt_deny_from_hosts`
--

DROP TABLE IF EXISTS `xbt_deny_from_hosts`;
CREATE TABLE `xbt_deny_from_hosts` (
  `begin` int(10) unsigned NOT NULL,
  `end` int(10) unsigned NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `xbt_deny_from_hosts`
--


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

--
-- Table structure for table `xbt_files`
--

DROP TABLE IF EXISTS `xbt_files`;
CREATE TABLE `xbt_files` (
  `fid` int(11) NOT NULL auto_increment,
  `info_hash` binary(20) NOT NULL,
  `leechers` int(11) NOT NULL default '0',
  `seeders` int(11) NOT NULL default '0',
  `completed` int(11) NOT NULL default '0',
  `flags` int(11) NOT NULL default '0',
  `mtime` int(11) NOT NULL,
  `ctime` int(11) NOT NULL,
  PRIMARY KEY  (`fid`),
  UNIQUE KEY `info_hash` (`info_hash`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `xbt_files`
--


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

--
-- Table structure for table `xbt_files_users`
--

DROP TABLE IF EXISTS `xbt_files_users`;
CREATE TABLE `xbt_files_users` (
  `fid` int(11) NOT NULL,
  `uid` int(11) NOT NULL,
  `active` tinyint(4) NOT NULL,
  `announced` int(11) NOT NULL,
  `completed` int(11) NOT NULL,
  `downloaded` bigint(20) unsigned NOT NULL,
  `left` bigint(20) unsigned NOT NULL,
  `uploaded` bigint(20) unsigned NOT NULL,
  `mtime` int(11) NOT NULL,
  UNIQUE KEY `fid` (`fid`,`uid`),
  KEY `uid` (`uid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `xbt_files_users`
--


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

--
-- Table structure for table `xbt_users`
--

DROP TABLE IF EXISTS `xbt_users`;
CREATE TABLE `xbt_users` (
  `uid` int(11) NOT NULL auto_increment,
  `torrent_pass_version` int(11) NOT NULL default '0',
  `downloaded` bigint(20) unsigned NOT NULL default '0',
  `uploaded` bigint(20) unsigned NOT NULL default '0',
  PRIMARY KEY  (`uid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `xbt_users`
--


/*!40000 ALTER TABLE `xbt_users` DISABLE KEYS */;
LOCK TABLES `xbt_users` WRITE;
UNLOCK TABLES;
/*!40000 ALTER TABLE `xbt_users` 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 */;

