﻿-- phpMyAdmin SQL Dump
-- version 3.4.7.1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Jan 31, 2012 at 10:55 AM
-- Server version: 5.1.56
-- PHP Version: 5.2.9

SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";


/*!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 */;

--
-- Database: `jlink3_db6995`
--

-- --------------------------------------------------------

--
-- Table structure for table `wp_cnw_joblist`
--

DROP TABLE IF EXISTS `wp_cnw_joblist`;
CREATE TABLE IF NOT EXISTS `wp_cnw_joblist` (
  `job_id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `job_title` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `job_desc` text COLLATE utf8_unicode_ci NOT NULL,
  `job_company` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `job_loc` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `job_url` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `job_poster` tinytext COLLATE utf8_unicode_ci NOT NULL,
  `job_post_date` tinytext COLLATE utf8_unicode_ci NOT NULL,
  UNIQUE KEY `id` (`job_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `wp_commentmeta`
--

DROP TABLE IF EXISTS `wp_commentmeta`;
CREATE TABLE IF NOT EXISTS `wp_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=562 ;

-- --------------------------------------------------------

--
-- Table structure for table `wp_comments`
--

DROP TABLE IF EXISTS `wp_comments`;
CREATE TABLE IF NOT EXISTS `wp_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
  `comment_author` tinytext NOT NULL,
  `comment_author_email` varchar(100) NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) NOT NULL DEFAULT '',
  `comment_type` varchar(20) NOT NULL DEFAULT '',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`comment_ID`),
  KEY `comment_approved` (`comment_approved`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;

--
-- Dumping data for table `wp_comments`
--

INSERT INTO `wp_comments` (`comment_ID`, `comment_post_ID`, `comment_author`, `comment_author_email`, `comment_author_url`, `comment_author_IP`, `comment_date`, `comment_date_gmt`, `comment_content`, `comment_karma`, `comment_approved`, `comment_agent`, `comment_type`, `comment_parent`, `user_id`) VALUES
(1, 1, 'Mr WordPress', '', 'http://wordpress.org/', '', '2011-11-25 02:32:07', '2011-11-25 02:32:07', 'Hi, this is a comment.<br />To delete a comment, just log in and view the post&#039;s comments. There you will have the option to edit or delete them.', 0, 'post-trashed', '', '', 0, 0);

-- --------------------------------------------------------

--
-- Table structure for table `wp_jr_counter_daily`
--

DROP TABLE IF EXISTS `wp_jr_counter_daily`;
CREATE TABLE IF NOT EXISTS `wp_jr_counter_daily` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `time` date NOT NULL DEFAULT '0000-00-00',
  `postnum` int(11) NOT NULL,
  `postcount` int(11) NOT NULL DEFAULT '0',
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;

--
-- Dumping data for table `wp_jr_counter_daily`
--

INSERT INTO `wp_jr_counter_daily` (`id`, `time`, `postnum`, `postcount`) VALUES
(1, '2011-12-10', 17, 1),
(2, '2011-12-11', 1, 1),
(3, '2011-12-11', 18, 1);

-- --------------------------------------------------------

--
-- Table structure for table `wp_jr_counter_total`
--

DROP TABLE IF EXISTS `wp_jr_counter_total`;
CREATE TABLE IF NOT EXISTS `wp_jr_counter_total` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `postnum` int(11) NOT NULL,
  `postcount` int(11) NOT NULL DEFAULT '0',
  UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;

--
-- Dumping data for table `wp_jr_counter_total`
--

INSERT INTO `wp_jr_counter_total` (`id`, `postnum`, `postcount`) VALUES
(1, 17, 1),
(2, 1, 1),
(3, 18, 1);

-- --------------------------------------------------------

--
-- Table structure for table `wp_jr_customer_packs`
--

DROP TABLE IF EXISTS `wp_jr_customer_packs`;
CREATE TABLE IF NOT EXISTS `wp_jr_customer_packs` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) DEFAULT NULL,
  `pack_name` varchar(255) NOT NULL,
  `job_duration` varchar(255) DEFAULT '',
  `pack_expires` timestamp NULL DEFAULT NULL,
  `jobs_count` int(9) DEFAULT NULL,
  `jobs_limit` int(9) DEFAULT NULL,
  `pack_purchased` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `wp_jr_job_packs`
--

DROP TABLE IF EXISTS `wp_jr_job_packs`;
CREATE TABLE IF NOT EXISTS `wp_jr_job_packs` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `pack_name` varchar(255) NOT NULL,
  `pack_description` longtext NOT NULL,
  `job_count` varchar(255) DEFAULT '',
  `pack_duration` varchar(255) DEFAULT '',
  `job_duration` varchar(255) DEFAULT '',
  `pack_cost` varchar(255) DEFAULT '',
  `pack_created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `wp_jr_orders`
--

DROP TABLE IF EXISTS `wp_jr_orders`;
CREATE TABLE IF NOT EXISTS `wp_jr_orders` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) DEFAULT NULL,
  `status` varchar(255) NOT NULL DEFAULT 'pending_payment',
  `cost` varchar(255) DEFAULT '',
  `job_id` bigint(20) DEFAULT NULL,
  `pack_id` bigint(20) DEFAULT NULL,
  `featured` int(1) NOT NULL DEFAULT '0',
  `order_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `payment_date` timestamp NULL DEFAULT NULL,
  `payer_first_name` longtext,
  `payer_last_name` longtext,
  `payer_email` longtext,
  `payment_type` longtext,
  `approval_method` varchar(255) DEFAULT NULL,
  `payer_address` longtext,
  `transaction_id` longtext,
  `order_key` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `wp_links`
--

DROP TABLE IF EXISTS `wp_links`;
CREATE TABLE IF NOT EXISTS `wp_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) NOT NULL DEFAULT '',
  `link_name` varchar(255) NOT NULL DEFAULT '',
  `link_image` varchar(255) NOT NULL DEFAULT '',
  `link_target` varchar(25) NOT NULL DEFAULT '',
  `link_description` varchar(255) NOT NULL DEFAULT '',
  `link_visible` varchar(20) NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
  `link_rating` int(11) NOT NULL DEFAULT '0',
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) NOT NULL DEFAULT '',
  `link_notes` mediumtext NOT NULL,
  `link_rss` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=8 ;

--
-- Dumping data for table `wp_links`
--

INSERT INTO `wp_links` (`link_id`, `link_url`, `link_name`, `link_image`, `link_target`, `link_description`, `link_visible`, `link_owner`, `link_rating`, `link_updated`, `link_rel`, `link_notes`, `link_rss`) VALUES
(1, 'http://codex.wordpress.org/', 'Documentation', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', ''),
(2, 'http://wordpress.org/news/', 'WordPress Blog', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', 'http://wordpress.org/news/feed/'),
(3, 'http://wordpress.org/extend/ideas/', 'Suggest Ideas', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', ''),
(4, 'http://wordpress.org/support/', 'Support Forum', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', ''),
(5, 'http://wordpress.org/extend/plugins/', 'Plugins', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', ''),
(6, 'http://wordpress.org/extend/themes/', 'Themes', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', ''),
(7, 'http://planet.wordpress.org/', 'WordPress Planet', '', '', '', 'Y', 1, 0, '0000-00-00 00:00:00', '', '', '');

-- --------------------------------------------------------

--
-- Table structure for table `wp_options`
--

DROP TABLE IF EXISTS `wp_options`;
CREATE TABLE IF NOT EXISTS `wp_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `blog_id` int(11) NOT NULL DEFAULT '0',
  `option_name` varchar(64) NOT NULL DEFAULT '',
  `option_value` longtext NOT NULL,
  `autoload` varchar(20) NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=6454 ;

--
-- Dumping data for table `wp_options`
--

INSERT INTO `wp_options` (`option_id`, `blog_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 0, 'siteurl', 'http://www.augustajoblink.com/', 'yes'),
(2, 0, 'blogname', 'Jobs In ;city;', 'yes'),
(3, 0, 'blogdescription', ';city; Jobs and Career Advice — The ;city; JobLink', 'yes'),
(4, 0, 'users_can_register', '0', 'yes'),
(5, 0, 'admin_email', 'info@talentek.com', 'yes'),
(6, 0, 'start_of_week', '0', 'yes'),
(7, 0, 'use_balanceTags', '', 'yes'),
(8, 0, 'use_smilies', '1', 'yes'),
(9, 0, 'require_name_email', '1', 'yes'),
(10, 0, 'comments_notify', '1', 'yes'),
(11, 0, 'posts_per_rss', '10', 'yes'),
(12, 0, 'rss_use_excerpt', '0', 'yes'),
(13, 0, 'mailserver_url', 'mail.example.com', 'yes'),
(14, 0, 'mailserver_login', 'login@example.com', 'yes'),
(15, 0, 'mailserver_pass', 'password', 'yes'),
(16, 0, 'mailserver_port', '110', 'yes'),
(17, 0, 'default_category', '1', 'yes'),
(18, 0, 'default_comment_status', 'open', 'yes'),
(19, 0, 'default_ping_status', 'open', 'yes'),
(20, 0, 'default_pingback_flag', '0', 'yes'),
(21, 0, 'default_post_edit_rows', '20', 'yes'),
(22, 0, 'posts_per_page', '10', 'yes'),
(23, 0, 'date_format', 'F j, Y', 'yes'),
(24, 0, 'time_format', 'g:i a', 'yes'),
(25, 0, 'links_updated_date_format', 'F j, Y g:i a', 'yes'),
(26, 0, 'links_recently_updated_prepend', '<em>', 'yes'),
(27, 0, 'links_recently_updated_append', '</em>', 'yes'),
(28, 0, 'links_recently_updated_time', '120', 'yes'),
(29, 0, 'comment_moderation', '0', 'yes'),
(30, 0, 'moderation_notify', '1', 'yes'),
(31, 0, 'permalink_structure', '/%postname%/', 'yes'),
(32, 0, 'gzipcompression', '0', 'yes'),
(33, 0, 'hack_file', '0', 'yes'),
(34, 0, 'blog_charset', 'UTF-8', 'yes'),
(35, 0, 'moderation_keys', '', 'no'),
(36, 0, 'active_plugins', 'a:19:{i:0;s:33:"addthis/addthis_social_widget.php";i:1;s:19:"akismet/akismet.php";i:2;s:31:"content-slide/content_slide.php";i:3;s:21:"exec-php/exec-php.php";i:4;s:25:"genesis-footer/plugin.php";i:5;s:33:"genesis-layout-manager/plugin.php";i:6;s:50:"google-analytics-for-wordpress/googleanalytics.php";i:7;s:36:"google-sitemap-generator/sitemap.php";i:8;s:51:"internal-link-shortcode/internal-link-shortcode.php";i:9;s:19:"jetpack/jetpack.php";i:10;s:33:"seo-image/seo-friendly-images.php";i:11;s:39:"wordpress-find-replace/Find-Replace.php";i:12;s:15:"worker/init.php";i:13;s:23:"wp-css-button/index.php";i:14;s:43:"wp-realtime-sitemap/wp-realtime-sitemap.php";i:15;s:37:"wp-slimstat/wp-slimstat-dashboard.php";i:16;s:27:"wp-slimstat/wp-slimstat.php";i:17;s:27:"wp-super-cache/wp-cache.php";i:18;s:26:"promotion-slider/index.php";}', 'yes'),
(37, 0, 'home', 'http://www.augustajoblink.com/', 'yes'),
(38, 0, 'category_base', '', 'yes'),
(39, 0, 'ping_sites', 'http://rpc.pingomatic.com/', 'yes'),
(40, 0, 'advanced_edit', '0', 'yes'),
(41, 0, 'comment_max_links', '2', 'yes'),
(42, 0, 'gmt_offset', '', 'yes'),
(43, 0, 'default_email_category', '1', 'yes'),
(44, 0, 'recently_edited', 'a:5:{i:0;s:62:"/home/jlink3/public_html/wp-content/themes/freelance/style.css";i:2;s:64:"/home/jlink46/public_html/wp-content/themes/freelance/topnav.php";i:3;s:63:"/home/jlink46/public_html/wp-content/themes/freelance/style.css";i:4;s:63:"/home/jlink66/public_html/wp-content/themes/freelance/style.css";i:5;s:67:"/home/jlink66/public_html/wp-content/themes/freelance/functions.php";}', 'no'),
(45, 0, 'template', 'genesis', 'yes'),
(46, 0, 'stylesheet', 'freelance', 'yes'),
(47, 0, 'comment_whitelist', '1', 'yes'),
(48, 0, 'blacklist_keys', '', 'no'),
(49, 0, 'comment_registration', '0', 'yes'),
(50, 0, 'rss_language', 'en', 'yes'),
(51, 0, 'html_type', 'text/html', 'yes'),
(52, 0, 'use_trackback', '0', 'yes'),
(53, 0, 'default_role', 'subscriber', 'yes'),
(54, 0, 'db_version', '19470', 'yes'),
(55, 0, 'uploads_use_yearmonth_folders', '1', 'yes'),
(56, 0, 'upload_path', '', 'yes'),
(57, 0, 'blog_public', '1', 'yes'),
(58, 0, 'default_link_category', '2', 'yes'),
(59, 0, 'show_on_front', 'posts', 'yes'),
(60, 0, 'tag_base', '', 'yes'),
(61, 0, 'show_avatars', '1', 'yes'),
(62, 0, 'avatar_rating', 'G', 'yes'),
(63, 0, 'upload_url_path', '', 'yes'),
(64, 0, 'thumbnail_size_w', '150', 'yes'),
(65, 0, 'thumbnail_size_h', '150', 'yes'),
(66, 0, 'thumbnail_crop', '1', 'yes'),
(67, 0, 'medium_size_w', '300', 'yes'),
(68, 0, 'medium_size_h', '300', 'yes'),
(69, 0, 'avatar_default', 'mystery', 'yes'),
(70, 0, 'enable_app', '', 'yes'),
(71, 0, 'enable_xmlrpc', '1', 'yes'),
(72, 0, 'large_size_w', '1024', 'yes'),
(73, 0, 'large_size_h', '1024', 'yes'),
(74, 0, 'image_default_link_type', 'file', 'yes'),
(75, 0, 'image_default_size', '', 'yes'),
(76, 0, 'image_default_align', '', 'yes'),
(77, 0, 'close_comments_for_old_posts', '0', 'yes'),
(78, 0, 'close_comments_days_old', '14', 'yes'),
(79, 0, 'thread_comments', '1', 'yes'),
(80, 0, 'thread_comments_depth', '5', 'yes'),
(81, 0, 'page_comments', '0', 'yes'),
(82, 0, 'comments_per_page', '50', 'yes'),
(83, 0, 'default_comments_page', 'newest', 'yes'),
(84, 0, 'comment_order', 'asc', 'yes'),
(85, 0, 'sticky_posts', 'a:0:{}', 'yes'),
(86, 0, 'widget_categories', 'a:2:{i:2;a:4:{s:5:"title";s:0:"";s:5:"count";i:0;s:12:"hierarchical";i:0;s:8:"dropdown";i:0;}s:12:"_multiwidget";i:1;}', 'yes'),
(87, 0, 'widget_text', 'a:8:{i:2;a:0:{}i:3;a:3:{s:5:"title";s:38:"Ready to start your ;city; job search?";s:4:"text";s:687:"Welcome to the best site for searching ALL <strong>jobs in ;city; ;state;</strong>! We have thousands of full-time and part-time jobs, and the listings are updated constantly. Get started today. Perform your search by job title, industry, company or location.\r\n\r\nWe provide the most comprehensive list of current and active jobs. Our listings come from local and national job boards, as well as company career pages, newspapers and associations. You can be assured that you will find the most complete, real-time list of <strong>;city; Jobs</strong> here. Look no further.\r\n\r\nThank you for visiting the best source for <strong>Jobs in ;city;</strong>. Good luck with your search!<br><br>";s:6:"filter";b:1;}i:5;a:3:{s:5:"title";s:19:";city; Job Listings";s:4:"text";s:564:"<h6><a name="search">Our results include postings from local job boards and company career sites.</a></h6>\r\n<b><font color="8f231f">SEARCH JOBS</font> </b>\r\n\r\n<script type="text/javascript">\r\n	var indeed_publisher_id = ''6537672636388936'';\r\n	var indeedJobSearchDefaultWhere = '';city;, ;state;'';\r\n	var indeedJobSearchHeight = 1400;\r\n	var indeedJobSearchLinkTarget = "_new";\r\n	</script>\r\n	<script type="text/javascript" src="http://www.indeed.com/p/jobsite.js"></script>\r\n	<noscript><a href="http://www.indeed.com/p/?pid=6537672636388936">  Job Search </a></noscript>";s:6:"filter";b:0;}i:8;a:3:{s:5:"title";s:0:"";s:4:"text";s:300:"<script type="text/javascript"><!--\r\ngoogle_ad_client = "ca-pub-9308539135145186";\r\n/* Side */\r\ngoogle_ad_slot = "2229397001";\r\ngoogle_ad_width = 250;\r\ngoogle_ad_height = 250;\r\n//-->\r\n</script>\r\n<script type="text/javascript"\r\nsrc="http://pagead2.googlesyndication.com/pagead/show_ads.js">\r\n</script>";s:6:"filter";b:0;}i:10;a:3:{s:5:"title";s:29:"Welcome To The ;city; JobLink";s:4:"text";s:740:"<table width="100%" border="0" cellspacing="0" cellpadding="0">\r\n  <tr>\r\n    <td><script type="text/javascript"><!--\r\ngoogle_ad_client = "ca-pub-9308539135145186";\r\n/* Mid Center */\r\ngoogle_ad_slot = "6947669730";\r\ngoogle_ad_width = 300;\r\ngoogle_ad_height = 250;\r\n//-->\r\n</script>\r\n<script type="text/javascript"\r\nsrc="http://pagead2.googlesyndication.com/pagead/show_ads.js">\r\n</script></td>\r\n    <td><script type="text/javascript"><!--\r\ngoogle_ad_client = "ca-pub-9308539135145186";\r\n/* Mid Center */\r\ngoogle_ad_slot = "6947669730";\r\ngoogle_ad_width = 300;\r\ngoogle_ad_height = 250;\r\n//-->\r\n</script>\r\n<script type="text/javascript"\r\nsrc="http://pagead2.googlesyndication.com/pagead/show_ads.js">\r\n</script></td>\r\n  </tr>\r\n</table><br><br>";s:6:"filter";b:0;}i:11;a:3:{s:5:"title";s:13:"Career Advice";s:4:"text";s:41:"<?php include(''rss2html/rss2html.php'');?>";s:6:"filter";b:0;}i:12;a:3:{s:5:"title";s:15:"JobLink Network";s:4:"text";s:729:"<a href="http://www.sandiegojoblink.com" target="_blank">San Diego Jobs</a><br>\r\n<a href="http://www.houstonjoblink.com" target="_blank">Houston Jobs</a><br>\r\n<a href="http://www.losangelesjoblink.com" target="_blank">Los Angeles Jobs</a><br>\r\n<a href="http://www.philadelphiajoblink.com" target="_blank">Philadelphia Jobs</a><br>\r\n<a href="http://www.sanfranciscojoblink.com" target="_blank">San Francisco Jobs</a><br>\r\n<a href="http://www.stlouisjoblink.com" target="_blank">St. Louis Jobs</a><br>\r\n<a href="http://www.washingtondcjoblink.com" target="_blank">Washington DC Jobs</a><br>\r\n<a href="http://www.detroitjoblink.com" target="_blank">Detroit Jobs</a><br>\r\n<a href="http://www.;domain;/local-jobs-boards/">... more</a>";s:6:"filter";b:0;}s:12:"_multiwidget";i:1;}', 'yes'),
(88, 0, 'widget_rss', 'a:3:{i:2;a:0:{}i:3;a:6:{s:5:"title";s:8:"Job News";s:3:"url";s:40:"http://online.wsj.com/xml/rss/3_7107.xml";s:5:"items";i:8;s:12:"show_summary";i:0;s:11:"show_author";i:0;s:9:"show_date";i:1;}s:12:"_multiwidget";i:1;}', 'yes'),
(89, 0, 'timezone_string', 'America/New_York', 'yes'),
(90, 0, 'embed_autourls', '1', 'yes'),
(91, 0, 'embed_size_w', '', 'yes'),
(92, 0, 'embed_size_h', '600', 'yes'),
(93, 0, 'page_for_posts', '0', 'yes'),
(94, 0, 'page_on_front', '0', 'yes'),
(95, 0, 'default_post_format', '', 'yes'),
(96, 0, 'wp_user_roles', 'a:5:{s:13:"administrator";a:2:{s:4:"name";s:13:"Administrator";s:12:"capabilities";a:64:{s:13:"switch_themes";b:1;s:11:"edit_themes";b:1;s:16:"activate_plugins";b:1;s:12:"edit_plugins";b:1;s:10:"edit_users";b:1;s:10:"edit_files";b:1;s:14:"manage_options";b:1;s:17:"moderate_comments";b:1;s:17:"manage_categories";b:1;s:12:"manage_links";b:1;s:12:"upload_files";b:1;s:6:"import";b:1;s:15:"unfiltered_html";b:1;s:10:"edit_posts";b:1;s:17:"edit_others_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:10:"edit_pages";b:1;s:4:"read";b:1;s:8:"level_10";b:1;s:7:"level_9";b:1;s:7:"level_8";b:1;s:7:"level_7";b:1;s:7:"level_6";b:1;s:7:"level_5";b:1;s:7:"level_4";b:1;s:7:"level_3";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:17:"edit_others_pages";b:1;s:20:"edit_published_pages";b:1;s:13:"publish_pages";b:1;s:12:"delete_pages";b:1;s:19:"delete_others_pages";b:1;s:22:"delete_published_pages";b:1;s:12:"delete_posts";b:1;s:19:"delete_others_posts";b:1;s:22:"delete_published_posts";b:1;s:20:"delete_private_posts";b:1;s:18:"edit_private_posts";b:1;s:18:"read_private_posts";b:1;s:20:"delete_private_pages";b:1;s:18:"edit_private_pages";b:1;s:18:"read_private_pages";b:1;s:12:"delete_users";b:1;s:12:"create_users";b:1;s:17:"unfiltered_upload";b:1;s:14:"edit_dashboard";b:1;s:14:"update_plugins";b:1;s:14:"delete_plugins";b:1;s:15:"install_plugins";b:1;s:13:"update_themes";b:1;s:14:"install_themes";b:1;s:11:"update_core";b:1;s:10:"list_users";b:1;s:12:"remove_users";b:1;s:9:"add_users";b:1;s:13:"promote_users";b:1;s:18:"edit_theme_options";b:1;s:13:"delete_themes";b:1;s:6:"export";b:1;s:8:"exec_php";b:1;s:15:"edit_others_php";b:1;}}s:6:"editor";a:2:{s:4:"name";s:6:"Editor";s:12:"capabilities";a:34:{s:17:"moderate_comments";b:1;s:17:"manage_categories";b:1;s:12:"manage_links";b:1;s:12:"upload_files";b:1;s:15:"unfiltered_html";b:1;s:10:"edit_posts";b:1;s:17:"edit_others_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:10:"edit_pages";b:1;s:4:"read";b:1;s:7:"level_7";b:1;s:7:"level_6";b:1;s:7:"level_5";b:1;s:7:"level_4";b:1;s:7:"level_3";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:17:"edit_others_pages";b:1;s:20:"edit_published_pages";b:1;s:13:"publish_pages";b:1;s:12:"delete_pages";b:1;s:19:"delete_others_pages";b:1;s:22:"delete_published_pages";b:1;s:12:"delete_posts";b:1;s:19:"delete_others_posts";b:1;s:22:"delete_published_posts";b:1;s:20:"delete_private_posts";b:1;s:18:"edit_private_posts";b:1;s:18:"read_private_posts";b:1;s:20:"delete_private_pages";b:1;s:18:"edit_private_pages";b:1;s:18:"read_private_pages";b:1;}}s:6:"author";a:2:{s:4:"name";s:6:"Author";s:12:"capabilities";a:10:{s:12:"upload_files";b:1;s:10:"edit_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:4:"read";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:12:"delete_posts";b:1;s:22:"delete_published_posts";b:1;}}s:11:"contributor";a:2:{s:4:"name";s:11:"Contributor";s:12:"capabilities";a:5:{s:10:"edit_posts";b:1;s:4:"read";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;s:12:"delete_posts";b:1;}}s:10:"subscriber";a:2:{s:4:"name";s:10:"Subscriber";s:12:"capabilities";a:2:{s:4:"read";b:1;s:7:"level_0";b:1;}}}', 'yes'),
(97, 0, 'widget_search', 'a:2:{i:2;a:1:{s:5:"title";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'),
(98, 0, 'widget_recent-posts', 'a:3:{i:2;a:2:{s:5:"title";s:0:"";s:6:"number";i:5;}i:3;a:2:{s:5:"title";s:15:"Latest Articles";s:6:"number";i:5;}s:12:"_multiwidget";i:1;}', 'yes'),
(99, 0, 'widget_recent-comments', 'a:2:{i:2;a:2:{s:5:"title";s:0:"";s:6:"number";i:5;}s:12:"_multiwidget";i:1;}', 'yes'),
(100, 0, 'widget_archives', 'a:2:{i:2;a:3:{s:5:"title";s:0:"";s:5:"count";i:0;s:8:"dropdown";i:0;}s:12:"_multiwidget";i:1;}', 'yes'),
(101, 0, 'widget_meta', 'a:2:{i:2;a:1:{s:5:"title";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'),
(102, 0, 'sidebars_widgets', 'a:7:{s:19:"wp_inactive_widgets";a:20:{i:0;s:7:"pages-2";i:1;s:10:"calendar-2";i:2;s:7:"links-2";i:3;s:6:"text-2";i:4;s:5:"rss-2";i:5;s:11:"tag_cloud-2";i:6;s:10:"nav_menu-2";i:7;s:7:"enews-2";i:8;s:15:"featured-page-2";i:9;s:15:"featured-post-2";i:10;s:15:"latest-tweets-2";i:11;s:17:"menu-categories-2";i:12;s:12:"menu-pages-2";i:13;s:14:"user-profile-2";i:14;s:8:"search-2";i:15;s:14:"recent-posts-2";i:16;s:17:"recent-comments-2";i:17;s:10:"archives-2";i:18;s:12:"categories-2";i:19;s:6:"meta-2";}s:12:"header-right";a:0:{}s:7:"sidebar";a:6:{i:0;s:5:"rss-3";i:1;s:6:"text-8";i:2;s:14:"recent-posts-3";i:3;s:7:"text-11";i:4;s:11:"tag_cloud-3";i:5;s:7:"text-12";}s:11:"sidebar-alt";a:0:{}s:8:"home-top";a:2:{i:0;s:7:"text-10";i:1;s:6:"text-5";}s:11:"home-bottom";a:2:{i:0;s:6:"text-3";i:1;s:15:"featured-post-3";}s:13:"array_version";i:3;}', 'yes'),
(103, 0, 'cron', 'a:9:{i:1328029210;a:1:{s:16:"mwp_backup_tasks";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"tenminutes";s:4:"args";a:0:{}s:8:"interval";i:600;}}}i:1328032333;a:1:{s:11:"wp_cache_gc";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:2:{s:8:"schedule";b:0;s:4:"args";a:0:{}}}}i:1328037010;a:1:{s:17:"mwp_notifications";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}}i:1328061600;a:1:{s:17:"wp_slimstat_purge";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1328063530;a:3:{s:16:"wp_version_check";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}s:17:"wp_update_plugins";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}s:16:"wp_update_themes";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:10:"twicedaily";s:4:"args";a:0:{}s:8:"interval";i:43200;}}}i:1328063534;a:1:{s:19:"wp_scheduled_delete";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1328066198;a:1:{s:24:"akismet_scheduled_delete";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1328084194;a:1:{s:17:"wp_slimstat_purge";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}s:7:"version";i:2;}', 'yes'),
(404, 0, 'can_compress_scripts', '1', 'yes'),
(110, 0, 'widget_pages', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(111, 0, 'widget_calendar', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(112, 0, 'widget_links', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(113, 0, 'widget_tag_cloud', 'a:3:{i:2;a:0:{}i:3;a:2:{s:5:"title";s:0:"";s:8:"taxonomy";s:8:"post_tag";}s:12:"_multiwidget";i:1;}', 'yes'),
(114, 0, 'widget_nav_menu', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(115, 0, 'widget_widget_twentyeleven_ephemera', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(118, 0, 'dashboard_widget_options', 'a:4:{s:25:"dashboard_recent_comments";a:1:{s:5:"items";i:5;}s:24:"dashboard_incoming_links";a:5:{s:4:"home";s:27:"http://www.AkronJobLink.com";s:4:"link";s:103:"http://blogsearch.google.com/blogsearch?scoring=d&partner=wordpress&q=link:http://www.AkronJobLink.com/";s:3:"url";s:134:"http://blogsearch.google.com/blogsearch_feeds?scoring=d&ie=utf-8&num=10&output=rss&partner=wordpress&q=link:http://buffalojoblink.com/";s:5:"items";i:10;s:9:"show_date";b:0;}s:17:"dashboard_primary";a:7:{s:4:"link";s:26:"http://wordpress.org/news/";s:3:"url";s:31:"http://wordpress.org/news/feed/";s:5:"title";s:14:"WordPress Blog";s:5:"items";i:2;s:12:"show_summary";i:1;s:11:"show_author";i:0;s:9:"show_date";i:1;}s:19:"dashboard_secondary";a:7:{s:4:"link";s:28:"http://planet.wordpress.org/";s:3:"url";s:33:"http://planet.wordpress.org/feed/";s:5:"title";s:20:"Other WordPress News";s:5:"items";i:5;s:12:"show_summary";i:0;s:11:"show_author";i:0;s:9:"show_date";i:0;}}', 'yes'),
(243, 0, 'current_theme', 'Freelance Child Theme', 'yes'),
(1372, 0, 'uninstall_plugins', 'a:2:{i:0;b:0;s:31:"searchreplace/searchReplace.php";s:23:"searchReplace_uninstall";}', 'yes'),
(2818, 0, 'promotion_slider_options', 'a:9:{s:7:"version";s:5:"3.3.1";s:8:"start_on";s:5:"first";s:12:"auto_advance";s:12:"auto_advance";s:10:"time_delay";i:6;s:13:"display_title";s:4:"none";s:15:"display_excerpt";s:4:"none";s:14:"pause_on_hover";s:8:"no_pause";s:10:"load_js_in";s:6:"header";s:16:"default_img_size";s:4:"full";}', 'yes'),
(3632, 0, 'wpmp_warning', '', 'yes'),
(1869, 0, 'simple_indeed_api_publisher', '6537672636388936', 'yes'),
(1870, 0, 'simple_indeed_api_channel', '', 'yes'),
(1871, 0, 'simple_indeed_api_search_limit', '10', 'yes'),
(1872, 0, 'simple_indeed_api_country', 'US', 'yes'),
(1873, 0, 'simple_indeed_api_radius', '25', 'yes'),
(1874, 0, 'simple_indeed_api_sort', 'date', 'yes'),
(1875, 0, 'simple_indeed_api_site_type', '', 'yes'),
(1876, 0, 'simple_indeed_api_job_type', '', 'yes'),
(1877, 0, 'simple_indeed_api_field_type', 'open', 'yes'),
(1878, 0, 'simple_indeed_api_field_value', 'Php Developer', 'yes'),
(1879, 0, 'simple_indeed_api_version', '2', 'yes'),
(874, 0, 'category_children', 'a:0:{}', 'yes'),
(1321, 0, 'indeed_api_search_limit', '10', 'yes'),
(1322, 0, 'indeed_api_country', 'US', 'yes'),
(543, 0, 'widget_addthis-widget', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(401, 0, 'db_upgraded', '', 'yes'),
(155, 0, 'recently_activated', 'a:0:{}', 'yes'),
(5048, 0, '_worker_public_key', 'LS0tLS1CRUdJTiBQVUJMSUMgS0VZLS0tLS0KTUlHZk1BMEdDU3FHU0liM0RRRUJBUVVBQTRHTkFEQ0JpUUtCZ1FDdUVnNGNhN2tpZlpyNk9KT2NDblY1Y2xYTgpoUDRjQ2dpRzk2TFRwTTJsSjgwMHp1bFIxNlErcjZWa1pSOXRPbkU1OGovV2IvL0JKS2d3ZkcxMDBoVy9IcHpMCkhzMktsbVJlK1FHVFFkN1RmdnNUb3AvWDB2M1NMbUNuRmJZbVFyN2dOeXQ5UzNDVWgyZ0tYVkZ1NkYwNFRudVcKQzVta3BFQ0ljYURHYnZ1dm93SURBUUFCCi0tLS0tRU5EIFBVQkxJQyBLRVktLS0tLQo=', 'yes'),
(5050, 0, 'mwp_notifications', 'a:6:{s:7:"plugins";s:1:"1";s:6:"themes";s:1:"1";s:2:"wp";s:1:"1";s:7:"backups";s:1:"2";s:3:"url";s:74:"http://managewp.com/wp-content/plugins/master/mwp-notifications-handle.php";s:16:"notification_key";s:45:"4564c135200900ec485370459d8e9aca4f13cd64db02e";}', 'yes'),
(4345, 0, 'findReplace', 'a:2:{s:7:"replace";a:5:{i:0;s:6:";city;";i:1;s:7:";state;";i:2;s:8:";domain;";i:3;s:12:";city-small;";i:4;s:13:";state-small;";}s:11:"replacement";a:5:{i:0;s:5:"Akron";i:1;s:4:"Ohio";i:2;s:16:"akronjoblink.com";i:3;s:5:"akron";i:4;s:4:"ohio";}}', 'yes'),
(157, 0, 'jetpack_activated', '1', 'yes'),
(158, 0, 'jetpack_options', 'a:2:{s:7:"version";s:16:"1.2.1:1322188717";s:11:"old_version";s:16:"1.2.1:1322188717";}', 'yes'),
(400, 0, 'initial_db_version', '18226', 'yes'),
(232, 0, 'theme_mods_genesis', 'a:1:{i:0;b:0;}', 'yes'),
(202, 0, 'theme_mods_freelance', 'a:2:{i:0;b:0;s:18:"nav_menu_locations";a:2:{s:7:"primary";i:4;s:9:"secondary";i:0;}}', 'yes'),
(203, 0, 'widget_enews', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(204, 0, 'widget_featured-page', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(205, 0, 'widget_featured-post', 'a:3:{i:2;a:0:{}i:3;a:18:{s:5:"title";s:11:"Latest Post";s:9:"posts_cat";s:1:"0";s:9:"posts_num";s:1:"1";s:12:"posts_offset";s:1:"0";s:7:"orderby";s:4:"date";s:5:"order";s:4:"DESC";s:13:"gravatar_size";s:2:"45";s:18:"gravatar_alignment";s:0:"";s:10:"image_size";s:9:"thumbnail";s:15:"image_alignment";s:0:"";s:10:"show_title";s:1:"1";s:9:"post_info";s:55:"[post_date] By [post_author_posts_link] [post_comments]";s:12:"show_content";s:7:"excerpt";s:13:"content_limit";s:1:"0";s:9:"more_text";s:14:"[Read More...]";s:11:"extra_title";s:0:"";s:9:"extra_num";s:0:"";s:23:"more_from_category_text";s:29:"More Posts from this Category";}s:12:"_multiwidget";i:1;}', 'yes'),
(206, 0, 'widget_latest-tweets', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(207, 0, 'widget_menu-categories', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(208, 0, 'widget_menu-pages', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(209, 0, 'widget_user-profile', 'a:2:{i:2;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(210, 0, 'genesis-settings', 'a:51:{s:13:"theme_version";s:5:"1.7.1";s:10:"db_version";s:4:"1703";s:6:"update";i:1;s:20:"update_email_address";s:0:"";s:8:"feed_uri";s:0:"";s:17:"comments_feed_uri";s:0:"";s:11:"site_layout";s:15:"sidebar-content";s:10:"blog_title";s:4:"text";s:3:"nav";i:1;s:10:"nav_extras";s:6:"search";s:21:"nav_extras_twitter_id";s:0:"";s:23:"nav_extras_twitter_text";s:0:"";s:15:"breadcrumb_home";i:1;s:17:"breadcrumb_single";i:1;s:15:"breadcrumb_page";i:1;s:18:"breadcrumb_archive";i:1;s:14:"breadcrumb_404";i:1;s:15:"content_archive";s:4:"full";s:21:"content_archive_limit";s:0:"";s:10:"image_size";s:5:"large";s:9:"posts_nav";s:11:"older-newer";s:8:"blog_cat";s:1:"0";s:16:"blog_cat_exclude";s:0:"";s:12:"blog_cat_num";s:2:"10";s:14:"header_scripts";s:0:"";s:14:"footer_scripts";s:0:"";s:17:"wpct_footer_creds";s:254:"Copyright [footer_copyright]  &middot;  [link id=''31'' text=''Local Job Boards''] &middot; [link id=''45'' text=''Industry Job Boards''] &middot; [link id=''28'' text=''Sitemap''] &middot;  [link id=''60'' text=''Advertise''] &middot;  [link id=''51'' text=''Contact Us''] ";s:21:"wpct_footer_backtotop";s:0:"";s:16:"wpct_layout_home";s:15:"sidebar-content";s:15:"wpct_layout_404";s:0:"";s:18:"wpct_layout_search";s:0:"";s:16:"wpct_layout_date";s:0:"";s:18:"wpct_layout_author";s:0:"";s:20:"wpct_layout_category";s:0:"";s:15:"wpct_layout_tag";s:0:"";s:20:"wpct_layout_taxonomy";s:0:"";s:16:"wpct_layout_post";s:0:"";s:16:"wpct_layout_page";s:0:"";s:9:"show_info";i:0;s:12:"update_email";i:0;s:13:"redirect_feed";i:0;s:22:"redirect_comments_feed";i:0;s:13:"nav_superfish";i:0;s:17:"nav_extras_enable";i:0;s:6:"subnav";i:0;s:16:"subnav_superfish";i:0;s:14:"comments_posts";i:0;s:14:"comments_pages";i:0;s:16:"trackbacks_posts";i:0;s:16:"trackbacks_pages";i:0;s:25:"content_archive_thumbnail";i:0;}', 'yes'),
(211, 0, 'genesis-seo-settings', 'a:31:{s:23:"append_description_home";i:1;s:20:"doctitle_seplocation";s:5:"right";s:12:"doctitle_sep";s:3:"—";s:10:"home_h1_on";s:5:"title";s:13:"home_doctitle";s:14:"Jobs in ;city;";s:16:"home_description";s:256:"Jobs in ;city;, ;state; and the surrounding areas.  We provide the most complete and current list of ;city; jobs, as well as career resources.  Our jobs come from local job boards, newspapers, associations, local company websites and ;city; classified ads.";s:13:"home_keywords";s:339:";city-small; jobs, ;city-small; ;state-small; jobs, jobs in ;city-small;, jobs in ;city-small; ;state-small;, part-time jobs in ;city-small; ;state-small;, customer service jobs in ;city-small;, ;city-small; job search, ;city-small; ;state-small; job search, ;city-small; ;state-small; employment, ;city-small; ;state-small; social network";s:19:"noindex_cat_archive";i:1;s:19:"noindex_tag_archive";i:1;s:22:"noindex_author_archive";i:1;s:20:"noindex_date_archive";i:1;s:22:"noindex_search_archive";i:1;s:5:"noodp";i:1;s:6:"noydir";i:1;s:18:"canonical_archives";i:1;s:17:"append_site_title";i:0;s:12:"home_noindex";i:0;s:13:"home_nofollow";i:0;s:14:"home_noarchive";i:0;s:19:"head_index_rel_link";i:0;s:25:"head_parent_post_rel_link";i:0;s:24:"head_start_post_rel_link";i:0;s:28:"head_adjacent_posts_rel_link";i:0;s:21:"head_wlwmanifest_link";i:0;s:14:"head_shortlink";i:0;s:9:"noarchive";i:0;s:21:"noarchive_cat_archive";i:0;s:21:"noarchive_tag_archive";i:0;s:24:"noarchive_author_archive";i:0;s:22:"noarchive_date_archive";i:0;s:24:"noarchive_search_archive";i:0;}', 'yes'),
(212, 0, 'genesis-vestige', 'a:4:{s:13:"nav_superfish";i:1;s:8:"nav_home";i:1;s:16:"subnav_superfish";i:1;s:11:"subnav_home";i:1;}', 'yes'),
(222, 0, 'manage-multiple-blogs', 'a:2:{s:5:"blogs";a:0:{}s:12:"current_blog";a:1:{s:4:"type";N;}}', 'yes'),
(5049, 0, '_action_message_id', '3', 'yes'),
(4276, 0, 'ossdl_https', '0', 'yes'),
(267, 0, 'genesis-term-meta', 'a:2:{i:0;b:0;i:4;a:0:{}}', 'yes'),
(268, 0, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:"auto_add";a:0:{}}', 'yes'),
(281, 0, 'cnw_job_search_api_key', '6154450590777469', 'yes'),
(282, 0, 'cnw_job_page_url', 'http://buffalojoblink.com/test2/', 'yes'),
(283, 0, 'job_is_private', '', 'yes'),
(1325, 0, 'indeed_api_site_type', 'jobsite', 'yes'),
(1326, 0, 'indeed_api_job_type', '', 'yes'),
(1327, 0, 'indeed_api_field_type', 'open', 'yes'),
(1328, 0, 'indeed_api_field_value', 'buffalo', 'yes'),
(4618, 0, 'user_hit_count', 'a:14:{s:10:"2012-01-18";i:71;s:10:"2012-01-19";i:119;s:10:"2012-01-20";i:211;s:10:"2012-01-21";i:76;s:10:"2012-01-22";i:111;s:10:"2012-01-23";i:197;s:10:"2012-01-24";i:113;s:10:"2012-01-25";i:141;s:10:"2012-01-26";i:163;s:10:"2012-01-27";i:211;s:10:"2012-01-28";i:324;s:10:"2012-01-29";i:143;s:10:"2012-01-30";i:168;s:10:"2012-01-31";i:99;}', 'yes'),
(1323, 0, 'indeed_api_radius', '25', 'yes'),
(1390, 0, 'far_plugin_settings', 'a:2:{s:7:"farfind";a:1:{i:1;s:0:"";}s:10:"farreplace";a:0:{}}', 'yes'),
(1126, 0, 'genesis_slider_settings', 'a:23:{s:9:"post_type";s:4:"post";s:10:"posts_term";s:0:"";s:13:"exclude_terms";s:0:"";s:15:"include_exclude";s:0:"";s:7:"post_id";s:0:"";s:9:"posts_num";s:1:"5";s:12:"posts_offset";s:1:"0";s:7:"orderby";s:4:"date";s:15:"slideshow_timer";s:4:"4000";s:15:"slideshow_delay";s:3:"800";s:16:"slideshow_arrows";i:1;s:14:"slideshow_loop";i:1;s:16:"slideshow_height";s:3:"400";s:15:"slideshow_width";s:3:"870";s:16:"slideshow_effect";s:5:"right";s:25:"slideshow_excerpt_content";s:8:"excerpts";s:31:"slideshow_excerpt_content_limit";s:3:"150";s:19:"slideshow_more_text";s:18:"[Continue Reading]";s:22:"slideshow_excerpt_show";i:1;s:23:"slideshow_excerpt_width";s:3:"500";s:17:"location_vertical";s:6:"bottom";s:19:"location_horizontal";s:5:"right";s:20:"slideshow_title_show";i:0;}', 'yes'),
(1135, 0, 'plugin_wp_realtime_sitemap_settings', 'a:52:{s:7:"menu_id";s:0:"";s:16:"page_sort_column";s:10:"post_title";s:15:"page_sort_order";s:3:"ASC";s:12:"page_exclude";s:0:"";s:10:"page_depth";s:1:"0";s:14:"page_show_date";s:0:"";s:12:"post_orderby";s:9:"post_date";s:10:"post_order";s:3:"ASC";s:12:"post_exclude";s:0:"";s:14:"post_show_date";s:2:"No";s:16:"post_numberposts";s:2:"-1";s:20:"post_show_categories";s:2:"No";s:12:"archive_type";s:7:"monthly";s:13:"archive_limit";s:0:"";s:23:"archive_show_post_count";s:1:"1";s:17:"category_tagcloud";s:3:"Yes";s:16:"category_orderby";s:4:"name";s:14:"category_order";s:3:"ASC";s:24:"category_show_post_count";s:1:"0";s:19:"category_hide_empty";s:1:"1";s:16:"category_exclude";s:0:"";s:15:"category_number";s:1:"0";s:14:"category_depth";s:1:"0";s:13:"tags_tagcloud";s:3:"Yes";s:12:"tags_orderby";s:4:"name";s:10:"tags_order";s:3:"ASC";s:20:"tags_show_post_count";s:1:"0";s:15:"tags_hide_empty";s:1:"1";s:12:"tags_exclude";s:0:"";s:11:"tags_number";s:1:"0";s:11:"menu_header";s:0:"";s:12:"pages_header";s:0:"";s:12:"posts_header";s:0:"";s:15:"archives_header";s:0:"";s:17:"categories_header";s:0:"";s:11:"tags_header";s:0:"";s:9:"show_menu";s:2:"No";s:10:"show_pages";s:3:"Yes";s:10:"show_posts";s:3:"Yes";s:22:"show_custom_post_types";s:2:"No";s:13:"show_archives";s:3:"Yes";s:15:"show_categories";s:3:"Yes";s:9:"show_tags";s:3:"Yes";s:12:"show_promote";s:2:"No";s:11:"first_order";s:4:"menu";s:12:"second_order";s:5:"pages";s:11:"third_order";s:5:"posts";s:12:"fourth_order";s:12:"custom_posts";s:11:"fifth_order";s:8:"archives";s:11:"sixth_order";s:10:"categories";s:13:"seventh_order";s:4:"tags";s:12:"install_date";i:1324238488;}', 'yes'),
(545, 0, 'sm_options', 'a:57:{s:18:"sm_b_prio_provider";s:41:"GoogleSitemapGeneratorPrioByCountProvider";s:13:"sm_b_filename";s:11:"sitemap.xml";s:10:"sm_b_debug";b:1;s:8:"sm_b_xml";b:1;s:9:"sm_b_gzip";b:1;s:9:"sm_b_ping";b:1;s:12:"sm_b_pingask";b:1;s:12:"sm_b_pingmsn";b:1;s:19:"sm_b_manual_enabled";b:0;s:17:"sm_b_auto_enabled";b:1;s:15:"sm_b_auto_delay";b:1;s:15:"sm_b_manual_key";s:32:"810be2660809b4c89d0f7b2d6695413d";s:11:"sm_b_memory";s:0:"";s:9:"sm_b_time";i:-1;s:14:"sm_b_max_posts";i:-1;s:13:"sm_b_safemode";b:0;s:18:"sm_b_style_default";b:1;s:10:"sm_b_style";s:0:"";s:11:"sm_b_robots";b:1;s:12:"sm_b_exclude";a:0:{}s:17:"sm_b_exclude_cats";a:0:{}s:18:"sm_b_location_mode";s:4:"auto";s:20:"sm_b_filename_manual";s:0:"";s:19:"sm_b_fileurl_manual";s:0:"";s:10:"sm_in_home";b:1;s:11:"sm_in_posts";b:1;s:15:"sm_in_posts_sub";b:0;s:11:"sm_in_pages";b:1;s:10:"sm_in_cats";b:0;s:10:"sm_in_arch";b:0;s:10:"sm_in_auth";b:0;s:10:"sm_in_tags";b:0;s:9:"sm_in_tax";a:0:{}s:17:"sm_in_customtypes";a:0:{}s:13:"sm_in_lastmod";b:1;s:10:"sm_cf_home";s:5:"daily";s:11:"sm_cf_posts";s:7:"monthly";s:11:"sm_cf_pages";s:6:"weekly";s:10:"sm_cf_cats";s:6:"weekly";s:10:"sm_cf_auth";s:6:"weekly";s:15:"sm_cf_arch_curr";s:5:"daily";s:14:"sm_cf_arch_old";s:6:"yearly";s:10:"sm_cf_tags";s:6:"weekly";s:10:"sm_pr_home";d:1;s:11:"sm_pr_posts";d:0.59999999999999997779553950749686919152736663818359375;s:15:"sm_pr_posts_min";d:0.200000000000000011102230246251565404236316680908203125;s:11:"sm_pr_pages";d:0.59999999999999997779553950749686919152736663818359375;s:10:"sm_pr_cats";d:0.299999999999999988897769753748434595763683319091796875;s:10:"sm_pr_arch";d:0.299999999999999988897769753748434595763683319091796875;s:10:"sm_pr_auth";d:0.299999999999999988897769753748434595763683319091796875;s:10:"sm_pr_tags";d:0.299999999999999988897769753748434595763683319091796875;s:12:"sm_i_donated";b:0;s:17:"sm_i_hide_donated";b:0;s:17:"sm_i_install_date";i:1323973824;s:14:"sm_i_hide_note";b:0;s:15:"sm_i_hide_works";b:0;s:16:"sm_i_hide_donors";b:0;}', 'yes'),
(425, 0, 'ossdl_off_cdn_url', '', 'yes'),
(426, 0, 'ossdl_off_include_dirs', 'wp-content,wp-includes', 'yes'),
(427, 0, 'ossdl_off_exclude', '.php', 'yes'),
(428, 0, 'ossdl_cname', '', 'yes');
INSERT INTO `wp_options` (`option_id`, `blog_id`, `option_name`, `option_value`, `autoload`) VALUES
(435, 0, 'Yoast_Google_Analytics', 'a:51:{s:16:"advancedsettings";b:0;s:11:"allowanchor";b:0;s:9:"allowhash";b:0;s:11:"allowlinker";b:0;s:11:"anonymizeip";b:0;s:10:"customcode";s:0:"";s:11:"cv_loggedin";b:0;s:13:"cv_authorname";b:0;s:11:"cv_category";b:0;s:17:"cv_all_categories";b:0;s:7:"cv_tags";b:0;s:7:"cv_year";b:0;s:12:"cv_post_type";b:0;s:5:"debug";b:0;s:12:"dlextensions";s:30:"doc,exe,js,pdf,ppt,tgz,zip,xls";s:6:"domain";s:0:"";s:11:"domainorurl";s:6:"domain";s:7:"extrase";b:0;s:10:"extraseurl";s:0:"";s:11:"firebuglite";b:0;s:16:"ga_api_responses";a:1:{s:45:"1/WLB41UnGcsB7WarYuiJrSn3VIgpdp079mdGh06vBeZc";a:2:{s:8:"response";a:1:{s:4:"code";i:200;}s:4:"body";s:70382:"<?xml version=''1.0'' encoding=''UTF-8''?><feed xmlns=''http://www.w3.org/2005/Atom'' xmlns:dxp=''http://schemas.google.com/analytics/2009'' xmlns:openSearch=''http://a9.com/-/spec/opensearchrss/1.0/''><id>http://www.google.com/analytics/feeds/accounts/joeburke@talentek.com</id><updated>2011-11-20T13:41:30.016-08:00</updated><title type=''text''>Profile list for joeburke@talentek.com</title><link rel=''self'' type=''application/atom+xml'' href=''https://www.google.com/analytics/feeds/accounts/default''/><author><name>Google Analytics</name></author><generator version=''1.0''>Google Analytics</generator><openSearch:totalResults>112</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>112</openSearch:itemsPerPage><entry><id>http://www.google.com/analytics/feeds/accounts/ga:24219346</id><updated>2011-09-20T15:59:23.687-07:00</updated><title type=''text''>www.sandiegojoblink.com</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''24219346''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-2''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:24219346</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:46355348</id><updated>2011-09-05T15:06:10.858-07:00</updated><title type=''text''>www.memphisjoblink.com</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''46355348''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-3''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:46355348</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:48530516</id><updated>2011-09-17T15:14:35.423-07:00</updated><title type=''text''>www.anchoragejoblink.com</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''48530516''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-4''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:48530516</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:49663624</id><updated>2011-09-05T15:00:45.914-07:00</updated><title type=''text''>www.renojoblink.com</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''49663624''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-5''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:49663624</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:49707177</id><updated>2011-08-24T04:57:10.773-07:00</updated><title type=''text''>www.columbusjoblink.com</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''49707177''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-6''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:49707177</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50157749</id><updated>2011-09-17T15:14:10.128-07:00</updated><title type=''text''>www.prjoblink.com</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50157749''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-7''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50157749</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50605992</id><updated>2011-11-20T13:41:29.926-08:00</updated><title type=''text''>www.AbileneJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50605992''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-8''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50605992</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50605997</id><updated>2011-09-18T10:34:39.714-07:00</updated><title type=''text''>www.BrownsvilleJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50605997''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-34''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50605997</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50606097</id><updated>2011-09-20T15:52:44.554-07:00</updated><title type=''text''>www.BurbankJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50606097''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-35''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50606097</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50607981</id><updated>2011-09-20T15:52:46.602-07:00</updated><title type=''text''>www.BoiseJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50607981''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-32''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50607981</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50608173</id><updated>2011-09-20T15:52:45.738-07:00</updated><title type=''text''>www.BuffaloJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50608173''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-36''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50608173</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50608275</id><updated>2011-11-20T13:41:29.952-08:00</updated><title type=''text''>www.AccountantJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50608275''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-9''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50608275</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50608277</id><updated>2011-09-18T10:53:15.941-07:00</updated><title type=''text''>www.BakersfieldJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50608277''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-24''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50608277</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50608385</id><updated>2011-09-18T10:49:35.882-07:00</updated><title type=''text''>www.AlexandriaJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50608385''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-13''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50608385</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50608386</id><updated>2011-09-18T10:51:10.941-07:00</updated><title type=''text''>www.AnnArborJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50608386''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-17''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50608386</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50608388</id><updated>2011-09-18T10:54:26.427-07:00</updated><title type=''text''>www.BellevueJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50608388''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-28''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50608388</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50610656</id><updated>2011-09-17T19:43:22.246-07:00</updated><title type=''text''>www.AllentownJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50610656''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-14''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50610656</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50610657</id><updated>2011-09-18T10:50:12.272-07:00</updated><title type=''text''>www.AnaheimJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50610657''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-16''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50610657</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50610658</id><updated>2011-09-18T10:51:29.756-07:00</updated><title type=''text''>www.ArchitectJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50610658''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-18''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50610658</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50610663</id><updated>2011-09-18T10:54:41.861-07:00</updated><title type=''text''>www.BerkeleyJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50610663''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-29''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50610663</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50611935</id><updated>2011-09-17T19:43:21.575-07:00</updated><title type=''text''>www.AmarilloJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50611935''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-15''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50611935</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50611936</id><updated>2011-09-18T10:51:44.745-07:00</updated><title type=''text''>www.ArlingtonJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50611936''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-19''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50611936</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50611938</id><updated>2011-09-18T10:55:35.691-07:00</updated><title type=''text''>www.BillingsJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50611938''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-30''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50611938</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50612040</id><updated>2011-09-18T10:55:53.006-07:00</updated><title type=''text''>www.BiotechJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50612040''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-31''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50612040</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50612631</id><updated>2011-09-18T10:57:57.021-07:00</updated><title type=''text''>www.CambridgeJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50612631''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-37''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50612631</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50612928</id><updated>2011-11-20T13:41:29.980-08:00</updated><title type=''text''>www.AdvertisingJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50612928''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-10''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50612928</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50612930</id><updated>2011-09-20T15:52:45.773-07:00</updated><title type=''text''>www.BaltimoreJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50612930''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-25''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50612930</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50613327</id><updated>2011-09-18T10:53:00.549-07:00</updated><title type=''text''>www.AuroraJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50613327''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-23''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50613327</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50613430</id><updated>2011-09-17T19:43:21.833-07:00</updated><title type=''text''>www.AthensJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50613430''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-21''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50613430</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50613628</id><updated>2011-09-18T10:52:19.207-07:00</updated><title type=''text''>www.AugustaJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50613628''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-22''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50613628</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50613730</id><updated>2011-11-20T13:41:29.938-08:00</updated><title type=''text''>www.AlbuquerqueJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50613730''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-12''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50613730</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50613734</id><updated>2011-09-18T08:37:20.393-07:00</updated><title type=''text''>www.BeaumontJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50613734''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-27''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50613734</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50613925</id><updated>2011-09-20T15:52:44.892-07:00</updated><title type=''text''>www.ArtistJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50613925''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-20''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50613925</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50614024</id><updated>2011-11-20T13:41:30.016-08:00</updated><title type=''text''>www.AkronJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50614024''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-11''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50614024</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50614026</id><updated>2011-09-20T15:52:45.164-07:00</updated><title type=''text''>www.BatonRougeJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50614026''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-26''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50614026</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50615905</id><updated>2011-09-18T10:56:45.039-07:00</updated><title type=''text''>www.BridgeportJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50615905''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-33''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50615905</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50621888</id><updated>2011-09-18T11:00:47.184-07:00</updated><title type=''text''>www.CincinnatiJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50621888''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-46''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50621888</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50622992</id><updated>2011-09-18T11:03:53.168-07:00</updated><title type=''text''>www.ColumbiaJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50622992''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-51''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50622992</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50623183</id><updated>2011-09-20T15:52:46.322-07:00</updated><title type=''text''>www.ChulaVistaJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50623183''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-45''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50623183</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50623765</id><updated>2011-09-18T11:01:11.266-07:00</updated><title type=''text''>www.ClarksvilleJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50623765''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-47''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50623765</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50625367</id><updated>2011-09-18T11:03:31.728-07:00</updated><title type=''text''>www.ColoradoSpringsJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50625367''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-50''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50625367</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50625749</id><updated>2011-09-18T11:00:10.571-07:00</updated><title type=''text''>www.ChesapeakeJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50625749''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-44''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50625749</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50627228</id><updated>2011-09-20T15:52:45.147-07:00</updated><title type=''text''>www.ChattanoogaJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50627228''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-43''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50627228</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50629524</id><updated>2011-09-18T10:58:55.822-07:00</updated><title type=''text''>www.CaryJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50629524''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-40''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50629524</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50629824</id><updated>2011-09-18T11:01:30.710-07:00</updated><title type=''text''>www.ClericalJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50629824''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-48''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50629824</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50630123</id><updated>2011-09-18T10:58:41.044-07:00</updated><title type=''text''>www.CarrolltonJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50630123''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-39''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50630123</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50630329</id><updated>2011-09-18T10:59:14.863-07:00</updated><title type=''text''>www.CedarRapidsJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50630329''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-41''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50630329</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50631701</id><updated>2011-09-18T10:58:24.691-07:00</updated><title type=''text''>www.CapeCoralJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50631701''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-38''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50631701</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50631704</id><updated>2011-09-20T15:52:44.571-07:00</updated><title type=''text''>www.ClevelandJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50631704''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-49''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50631704</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50631903</id><updated>2011-09-18T10:59:36.453-07:00</updated><title type=''text''>www.ChandlerJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''10001508''/><dxp:property name=''ga:accountName'' value=''SET 1''/><dxp:property name=''ga:profileId'' value=''50631903''/><dxp:property name=''ga:webPropertyId'' value=''UA-10001508-42''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50631903</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50621898</id><updated>2011-09-18T14:18:31.867-07:00</updated><title type=''text''>www.CoralSpringsJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50621898''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-3''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50621898</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50623682</id><updated>2011-09-20T15:54:47.532-07:00</updated><title type=''text''>www.DurhamJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50623682''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-16''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50623682</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50623778</id><updated>2011-09-18T14:18:43.474-07:00</updated><title type=''text''>www.CoronaJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50623778''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-4''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50623778</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50625376</id><updated>2011-09-18T13:45:10.902-07:00</updated><title type=''text''>www.CustomerServiceJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50625376''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-7''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50625376</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50625398</id><updated>2011-09-18T14:19:11.235-07:00</updated><title type=''text''>www.LosAngelesJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50625398''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-19''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50625398</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50625462</id><updated>2011-09-18T13:45:10.901-07:00</updated><title type=''text''>www.CostaMesaJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50625462''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-6''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50625462</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50625494</id><updated>2011-09-18T14:16:08.120-07:00</updated><title type=''text''>www.GrandRapidsJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50625494''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-47''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50625494</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50625767</id><updated>2011-09-18T13:45:10.899-07:00</updated><title type=''text''>www.DoctorJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50625767''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-14''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50625767</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50625798</id><updated>2011-09-20T15:54:47.023-07:00</updated><title type=''text''>www.GrandPrairieJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50625798''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-46''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50625798</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50627241</id><updated>2011-09-18T13:45:10.904-07:00</updated><title type=''text''>www.EducationJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50627241''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-17''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50627241</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50627262</id><updated>2011-09-18T14:14:56.862-07:00</updated><title type=''text''>www.GovernmentJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50627262''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-45''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50627262</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50628154</id><updated>2011-09-18T13:45:10.902-07:00</updated><title type=''text''>www.DentonJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50628154''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-11''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50628154</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50628183</id><updated>2011-09-18T14:14:11.489-07:00</updated><title type=''text''>www.GlendaleJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50628183''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-44''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50628183</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50628345</id><updated>2011-09-18T13:45:10.900-07:00</updated><title type=''text''>www.DowneyJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50628345''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-15''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50628345</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50628369</id><updated>2011-09-18T13:56:59.289-07:00</updated><title type=''text''>www.EntertainmentJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50628369''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-24''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50628369</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50628370</id><updated>2011-09-18T14:05:43.439-07:00</updated><title type=''text''>www.FortCollinsJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50628370''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-35''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50628370</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50629334</id><updated>2011-09-18T13:45:10.903-07:00</updated><title type=''text''>www.DalyCityJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50629334''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-8''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50629334</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50629365</id><updated>2011-09-18T13:54:32.724-07:00</updated><title type=''text''>www.ElMonteJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50629365''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-22''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50629365</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50629367</id><updated>2011-09-20T15:54:47.246-07:00</updated><title type=''text''>www.FontanaJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50629367''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-33''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50629367</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50629434</id><updated>2011-09-18T13:45:10.899-07:00</updated><title type=''text''>www.DentistryJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50629434''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-10''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50629434</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50629539</id><updated>2011-09-18T14:18:55.630-07:00</updated><title type=''text''>www.CorpusChristiJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50629539''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-5''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50629539</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50629566</id><updated>2011-09-18T14:16:50.445-07:00</updated><title type=''text''>www.GreenBayJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50629566''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-48''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50629566</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50629836</id><updated>2011-09-20T15:54:47.920-07:00</updated><title type=''text''>www.DesMoinesJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50629836''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-12''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50629836</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50629858</id><updated>2011-09-18T13:52:56.954-07:00</updated><title type=''text''>www.ElizabethJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50629858''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-20''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50629858</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50629859</id><updated>2011-09-18T14:02:49.628-07:00</updated><title type=''text''>www.FinanceJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50629859''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-31''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50629859</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50629861</id><updated>2011-09-18T14:12:49.889-07:00</updated><title type=''text''>www.GarlandJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50629861''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-42''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50629861</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50630155</id><updated>2011-09-18T13:53:52.478-07:00</updated><title type=''text''>www.ElkGroveJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50630155''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-21''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50630155</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50630156</id><updated>2011-09-18T14:03:29.453-07:00</updated><title type=''text''>www.FlintJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50630156''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-32''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50630156</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50630340</id><updated>2011-09-18T14:18:21.809-07:00</updated><title type=''text''>www.ConcordJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50630340''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-2''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50630340</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50630365</id><updated>2011-09-20T15:54:48.238-07:00</updated><title type=''text''>www.FayettevilleJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50630365''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-30''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50630365</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50630366</id><updated>2011-09-18T14:12:11.512-07:00</updated><title type=''text''>www.GardenGroveJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50630366''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-41''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50630366</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50631712</id><updated>2011-09-18T14:18:09.947-07:00</updated><title type=''text''>www.CommunicationsJobLink.com</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50631712''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-1''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50631712</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50631714</id><updated>2011-09-18T13:45:10.904-07:00</updated><title type=''text''>www.DaytonJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50631714''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-9''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50631714</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50631743</id><updated>2011-09-18T14:01:27.749-07:00</updated><title type=''text''>www.FairfieldJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50631743''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-29''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50631743</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50631745</id><updated>2011-09-18T14:10:58.161-07:00</updated><title type=''text''>www.FullertonJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50631745''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-40''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50631745</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50631912</id><updated>2011-09-20T15:54:47.726-07:00</updated><title type=''text''>www.DetroitJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50631912''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-13''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50631912</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50631941</id><updated>2011-09-18T13:59:40.911-07:00</updated><title type=''text''>www.EscondidoJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50631941''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-26''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50631941</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50631942</id><updated>2011-09-18T14:09:07.601-07:00</updated><title type=''text''>www.FortWorthJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50631942''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-37''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50631942</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50632802</id><updated>2011-09-18T13:45:10.901-07:00</updated><title type=''text''>www.ElginJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50632802''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-18''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50632802</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50633018</id><updated>2011-09-18T14:00:16.311-07:00</updated><title type=''text''>www.EugeneJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50633018''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-27''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50633018</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50633020</id><updated>2011-09-18T14:09:44.956-07:00</updated><title type=''text''>www.FremontJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50633020''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-38''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50633020</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50633129</id><updated>2011-09-20T15:54:47.804-07:00</updated><title type=''text''>www.EvansvilleJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50633129''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-28''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50633129</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50633130</id><updated>2011-09-18T14:10:17.740-07:00</updated><title type=''text''>www.FresnoJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50633130''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-39''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50633130</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50634814</id><updated>2011-09-18T14:17:23.408-07:00</updated><title type=''text''>www.GreensboroJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50634814''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-49''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50634814</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50634910</id><updated>2011-09-18T13:58:48.226-07:00</updated><title type=''text''>www.ErieJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50634910''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-25''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50634910</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50634912</id><updated>2011-09-18T14:06:27.923-07:00</updated><title type=''text''>www.FortLauderdaleJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50634912''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-36''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50634912</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50635109</id><updated>2011-09-20T15:54:47.518-07:00</updated><title type=''text''>www.GilbertJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50635109''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-43''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50635109</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50635304</id><updated>2011-09-18T13:56:20.521-07:00</updated><title type=''text''>www.EngineerJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50635304''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-23''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50635304</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50635309</id><updated>2011-09-18T14:05:09.365-07:00</updated><title type=''text''>www.FoodJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50635309''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-34''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50635309</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50721108</id><updated>2011-09-20T15:55:43.615-07:00</updated><title type=''text''>www.NewOrleansJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25793433''/><dxp:property name=''ga:accountName'' value=''SET 2''/><dxp:property name=''ga:profileId'' value=''50721108''/><dxp:property name=''ga:webPropertyId'' value=''UA-25793433-51''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/Los_Angeles''/><dxp:tableId>ga:50721108</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50713685</id><updated>2011-09-20T16:01:59.289-07:00</updated><title type=''text''>www.PittsburghJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25833560''/><dxp:property name=''ga:accountName'' value=''SET 3''/><dxp:property name=''ga:profileId'' value=''50713685''/><dxp:property name=''ga:webPropertyId'' value=''UA-25833560-2''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50713685</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50714262</id><updated>2011-09-20T16:04:32.489-07:00</updated><title type=''text''>www.StLouisJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25833560''/><dxp:property name=''ga:accountName'' value=''SET 3''/><dxp:property name=''ga:profileId'' value=''50714262''/><dxp:property name=''ga:webPropertyId'' value=''UA-25833560-6''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50714262</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50715957</id><updated>2011-09-20T16:01:19.241-07:00</updated><title type=''text''>www.OklahomaCityJobLink.com</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25833560''/><dxp:property name=''ga:accountName'' value=''SET 3''/><dxp:property name=''ga:profileId'' value=''50715957''/><dxp:property name=''ga:webPropertyId'' value=''UA-25833560-1''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50715957</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50716256</id><updated>2011-09-20T16:09:48.386-07:00</updated><title type=''text''>www.PortlandJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25833560''/><dxp:property name=''ga:accountName'' value=''SET 3''/><dxp:property name=''ga:profileId'' value=''50716256''/><dxp:property name=''ga:webPropertyId'' value=''UA-25833560-9''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50716256</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50719539</id><updated>2011-09-20T16:02:34.022-07:00</updated><title type=''text''>www.PhiladelphiaJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25833560''/><dxp:property name=''ga:accountName'' value=''SET 3''/><dxp:property name=''ga:profileId'' value=''50719539''/><dxp:property name=''ga:webPropertyId'' value=''UA-25833560-3''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50719539</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50720126</id><updated>2011-09-20T16:08:46.495-07:00</updated><title type=''text''>www.MilwaukeeJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25833560''/><dxp:property name=''ga:accountName'' value=''SET 3''/><dxp:property name=''ga:profileId'' value=''50720126''/><dxp:property name=''ga:webPropertyId'' value=''UA-25833560-7''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50720126</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50720717</id><updated>2011-09-20T16:09:17.971-07:00</updated><title type=''text''>www.MinneapolisJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25833560''/><dxp:property name=''ga:accountName'' value=''SET 3''/><dxp:property name=''ga:profileId'' value=''50720717''/><dxp:property name=''ga:webPropertyId'' value=''UA-25833560-8''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50720717</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50721111</id><updated>2011-09-20T16:03:48.109-07:00</updated><title type=''text''>www.SanFranciscoJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25833560''/><dxp:property name=''ga:accountName'' value=''SET 3''/><dxp:property name=''ga:profileId'' value=''50721111''/><dxp:property name=''ga:webPropertyId'' value=''UA-25833560-5''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50721111</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50721413</id><updated>2011-09-20T16:10:55.336-07:00</updated><title type=''text''>www.MemphisJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25833560''/><dxp:property name=''ga:accountName'' value=''SET 3''/><dxp:property name=''ga:profileId'' value=''50721413''/><dxp:property name=''ga:webPropertyId'' value=''UA-25833560-11''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50721413</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50721608</id><updated>2011-09-20T16:10:17.435-07:00</updated><title type=''text''>www.LasVegasJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25833560''/><dxp:property name=''ga:accountName'' value=''SET 3''/><dxp:property name=''ga:profileId'' value=''50721608''/><dxp:property name=''ga:webPropertyId'' value=''UA-25833560-10''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50721608</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:50721900</id><updated>2011-09-20T16:03:09.445-07:00</updated><title type=''text''>www.SanAntonioJobLink.com/</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25833560''/><dxp:property name=''ga:accountName'' value=''SET 3''/><dxp:property name=''ga:profileId'' value=''50721900''/><dxp:property name=''ga:webPropertyId'' value=''UA-25833560-4''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:50721900</dxp:tableId></entry><entry><id>http://www.google.com/analytics/feeds/accounts/ga:53036985</id><updated>2011-11-20T13:36:30.298-08:00</updated><title type=''text''>http://www.houstonjoblink.com</title><link rel=''alternate'' type=''text/html'' href=''http://www.google.com/analytics''/><dxp:property name=''ga:accountId'' value=''25833560''/><dxp:property name=''ga:accountName'' value=''SET 3''/><dxp:property name=''ga:profileId'' value=''53036985''/><dxp:property name=''ga:webPropertyId'' value=''UA-25833560-12''/><dxp:property name=''ga:currency'' value=''USD''/><dxp:property name=''ga:timezone'' value=''America/New_York''/><dxp:tableId>ga:53036985</dxp:tableId></entry></feed>";}}s:16:"gajslocalhosting";b:0;s:7:"gajsurl";s:0:"";s:16:"ignore_userlevel";s:2:"11";s:12:"internallink";s:0:"";s:17:"internallinklabel";s:0:"";s:16:"outboundpageview";b:0;s:17:"downloadspageview";b:0;s:17:"othercrossdomains";s:0:"";s:8:"position";s:6:"header";s:18:"primarycrossdomain";s:0:"";s:13:"theme_updated";b:0;s:16:"trackcommentform";b:1;s:16:"trackcrossdomain";b:0;s:12:"trackadsense";b:0;s:13:"trackoutbound";b:1;s:17:"trackregistration";b:0;s:14:"rsslinktagging";b:1;s:8:"uastring";s:14:"UA-10001508-22";s:7:"version";s:5:"4.2.2";s:10:"gawp_oauth";a:2:{s:11:"oauth_token";s:30:"4/hZNJNT3eNQtVG7S-jmsjoPtx-xlH";s:18:"oauth_token_secret";s:24:"cBjVBNkqNLJbGK5DM-7V706H";}s:3:"msg";s:0:"";s:15:"gfsubmiteventpv";s:0:"";s:11:"trackprefix";s:0:"";s:13:"admintracking";b:0;s:15:"manual_uastring";b:1;s:11:"taggfsubmit";b:0;s:13:"wpec_tracking";b:0;s:14:"shopp_tracking";b:0;s:26:"disable_pagespeed_tracking";b:0;s:8:"ga_token";s:0:"";}', 'yes');
INSERT INTO `wp_options` (`option_id`, `blog_id`, `option_name`, `option_value`, `autoload`) VALUES
(440, 0, 'seo_friendly_images_alt', '%name %title', 'yes'),
(441, 0, 'seo_friendly_images_title', '%title', 'yes'),
(442, 0, 'seo_friendly_images_override', 'on', 'yes'),
(443, 0, 'seo_friendly_images_override_title', 'off', 'yes'),
(452, 0, 'slimstat_secret', '5e7f4565d7a1184660eb47316118e5ac', 'no'),
(453, 0, 'slimstat_is_tracking', 'yes', 'no'),
(454, 0, 'slimstat_enable_javascript', 'yes', 'no'),
(455, 0, 'slimstat_custom_js_path', '', 'no'),
(456, 0, 'slimstat_browscap_autoupdate', 'no', 'no'),
(457, 0, 'slimstat_ignore_interval', '30', 'no'),
(458, 0, 'slimstat_ignore_bots', 'no', 'no'),
(459, 0, 'slimstat_ignore_spammers', 'no', 'no'),
(460, 0, 'slimstat_ignore_prefetch', 'no', 'no'),
(461, 0, 'slimstat_track_users', 'yes', 'no'),
(462, 0, 'slimstat_auto_purge', '120', 'no'),
(463, 0, 'slimstat_use_separate_menu', 'no', 'no'),
(464, 0, 'slimstat_convert_ip_addresses', 'no', 'no'),
(465, 0, 'slimstat_use_european_separators', 'yes', 'no'),
(466, 0, 'slimstat_rows_to_show', '20', 'no'),
(467, 0, 'slimstat_ip_lookup_service', 'http://www.maxmind.com/app/lookup_city?ips=', 'no'),
(468, 0, 'slimstat_refresh_interval', '0', 'no'),
(469, 0, 'slimstat_ignore_ip', 'a:0:{}', 'no'),
(470, 0, 'slimstat_ignore_countries', 'a:0:{}', 'no'),
(471, 0, 'slimstat_ignore_resources', 'a:0:{}', 'no'),
(472, 0, 'slimstat_ignore_browsers', 'a:0:{}', 'no'),
(473, 0, 'slimstat_ignore_referers', 'a:0:{}', 'no'),
(474, 0, 'slimstat_ignore_users', 'a:0:{}', 'no'),
(475, 0, 'slimstat_can_view', 'a:0:{}', 'no'),
(476, 0, 'slimstat_capability_can_view', 'read', 'no'),
(477, 0, 'slimstat_can_admin', 'a:0:{}', 'no'),
(482, 0, 'addthis_settings', 'a:21:{s:8:"username";s:0:"";s:7:"profile";s:0:"";s:8:"password";s:0:"";s:5:"above";s:4:"none";s:24:"below_do_custom_services";b:1;s:25:"below_do_custom_preferred";b:0;s:5:"below";s:6:"custom";s:17:"below_custom_size";s:2:"32";s:21:"below_custom_services";s:50:"email, facebook, linkedin, twitter, google_plusone";s:22:"below_custom_preferred";s:1:"0";s:17:"below_custom_more";b:0;s:18:"addthis_show_stats";b:1;s:19:"addthis_append_data";b:1;s:18:"addthis_showonhome";b:1;s:19:"addthis_showonpages";b:1;s:22:"addthis_showonarchives";b:1;s:18:"addthis_showoncats";b:1;s:22:"addthis_showonexcerpts";b:1;s:18:"addthis_addressbar";b:0;s:11:"addthis_508";b:0;s:16:"addthis_language";s:0:"";}', 'yes'),
(1319, 0, 'indeed_api_publisher', '6154450590777469', 'yes'),
(581, 0, 'gse-settings', 'a:6:{s:9:"post_info";s:67:"[post_date] By [post_author_posts_link] [post_comments] [post_edit]";s:9:"post_meta";s:29:"[post_categories] [post_tags]";s:21:"footer_backtotop_text";s:18:"[footer_backtotop]";s:17:"footer_creds_text";s:152:"Copyright [footer_copyright] [footer_childtheme_link] · [footer_genesis_link] [footer_studiopress_link] · [footer_wordpress_link] · [footer_loginout]";s:16:"footer_output_on";s:1:"1";s:13:"footer_output";s:251:"<div class="gototop"><p>[footer_backtotop]</p></div><div class="creds">\r\n<p>Copyright [footer_copyright] [footer_childtheme_link] · [footer_genesis_link] [footer_studiopress_link] · <a href="/contact-us/"Contact Us</a> · [footer_loginout]</p></div>";}', 'yes'),
(593, 0, 'wpsupercache_gc_time', '1328028733', 'yes'),
(1329, 0, 'indeed_api_version', '2', 'yes'),
(1324, 0, 'indeed_api_sort', 'date', 'yes'),
(691, 0, 'sm_status', 'O:28:"GoogleSitemapGeneratorStatus":29:{s:10:"_startTime";d:1327776367.6952149868011474609375;s:8:"_endTime";d:1327776368.0545890331268310546875;s:11:"_hasChanged";b:1;s:12:"_memoryUsage";i:20185088;s:9:"_lastPost";i:16;s:9:"_lastTime";d:1327776367.8319160938262939453125;s:8:"_usedXml";b:1;s:11:"_xmlSuccess";b:1;s:8:"_xmlPath";s:36:"/home/jlink3/public_html/sitemap.xml";s:7:"_xmlUrl";s:39:"http://www.AkronJobLink.com/sitemap.xml";s:8:"_usedZip";b:1;s:11:"_zipSuccess";b:1;s:8:"_zipPath";s:39:"/home/jlink3/public_html/sitemap.xml.gz";s:7:"_zipUrl";s:42:"http://www.AkronJobLink.com/sitemap.xml.gz";s:11:"_usedGoogle";b:1;s:10:"_googleUrl";s:105:"http://www.google.com/webmasters/sitemaps/ping?sitemap=http%3A%2F%2Fwww.AkronJobLink.com%2Fsitemap.xml.gz";s:15:"_gooogleSuccess";b:1;s:16:"_googleStartTime";d:1327776367.8341510295867919921875;s:14:"_googleEndTime";d:1327776367.88642597198486328125;s:8:"_usedAsk";b:1;s:7:"_askUrl";s:90:"http://submissions.ask.com/ping?sitemap=http%3A%2F%2Fwww.AkronJobLink.com%2Fsitemap.xml.gz";s:11:"_askSuccess";b:1;s:13:"_askStartTime";d:1327776367.887096881866455078125;s:11:"_askEndTime";d:1327776367.9636681079864501953125;s:8:"_usedMsn";b:1;s:7:"_msnUrl";s:98:"http://www.bing.com/webmaster/ping.aspx?siteMap=http%3A%2F%2Fwww.AkronJobLink.com%2Fsitemap.xml.gz";s:11:"_msnSuccess";b:1;s:13:"_msnStartTime";d:1327776367.9642789363861083984375;s:11:"_msnEndTime";d:1327776368.0539629459381103515625;}', 'no'),
(1320, 0, 'indeed_api_channel', 'Buffalo Jobs', 'yes'),
(1385, 0, 're_place_version', '0.2.1', 'yes'),
(1386, 0, 're_place_listview', 'asis', 'yes'),
(1393, 0, 'obfuscator_replacements', 'a:2:{i:0;a:11:{s:5:"token";s:7:"*state*";s:5:"scope";s:4:"full";s:4:"case";s:11:"insensitive";s:4:"type";s:3:"all";s:5:"value";s:5:"Texas";s:5:"blank";b:0;s:8:"location";s:4:"post";s:5:"posts";b:1;s:6:"titles";b:0;s:8:"excerpts";b:0;s:8:"comments";b:0;}i:1;a:11:{s:5:"token";s:6:"*city*";s:5:"scope";s:4:"full";s:4:"case";s:11:"insensitive";s:4:"type";s:3:"all";s:5:"value";s:7:"Buffalo";s:5:"blank";b:0;s:8:"location";s:3:"pre";s:5:"posts";b:1;s:6:"titles";b:0;s:8:"excerpts";b:0;s:8:"comments";b:0;}}', 'yes'),
(1405, 0, 'word_replacer_ver', '0.2.3', 'yes'),
(1474, 0, 'wpns_effect', 'fold', 'yes'),
(1475, 0, 'wpns_slices', '3', 'yes'),
(1473, 0, 'wpns_category', '1', 'yes'),
(1482, 0, 'wpcs_options', 'a:50:{s:5:"width";s:3:"920";s:6:"height";s:2:"58";s:12:"border_width";s:1:"1";s:12:"border_color";s:7:"#000000";s:11:"font_family";s:39:"\\''Trebuchet MS\\'', Helvetica, sans-serif";s:9:"font_size";s:2:"14";s:5:"color";s:7:"#000000";s:12:"heading_font";s:2:"24";s:13:"heading_color";s:7:"#000000";s:16:"background_color";s:7:"#ffffff";s:6:"update";s:7:"UPDATED";s:16:"square_per_width";s:1:"1";s:17:"square_per_height";s:1:"1";s:5:"delay";s:4:"8500";s:6:"sDelay";s:1:"0";s:7:"opacity";s:2:".6";s:10:"titleSpeed";s:4:"1300";s:6:"effect";s:0:"";s:10:"hoverPause";s:4:"true";s:24:"navigation_next_previous";s:4:"true";s:18:"navigation_buttons";s:4:"true";s:16:"navigation_color";s:7:"#000000";s:12:"show_excerpt";s:4:"true";s:11:"char_length";s:3:"200";s:10:"new_window";s:5:"false";s:5:"order";s:5:"false";s:12:"custom_image";s:4:"true";s:13:"post_category";s:1:"0";s:15:"number_of_posts";s:1:"4";s:19:"no_of_custom_images";s:1:"5";s:12:"slide_image1";s:55:"http://;domain;/wp-content/uploads/2012/01/jobs_red.png";s:16:"slide_imagelink1";s:26:"http://www.;domain;#search";s:19:"slide_imageheading1";s:39:"<CENTER>COMPLETE JOB SEARCHING</CENTER>";s:16:"slide_imagetext1";s:60:"<CENTER>JOB BOARDS AND COMPANY CAREER SITE LISTINGS</CENTER>";s:12:"slide_image2";s:58:"http://;domain;/wp-content/uploads/2012/01/jobs_yellow.png";s:16:"slide_imagelink2";s:28:"http://;domain;/job-seekers/";s:19:"slide_imageheading2";s:36:"<CENTER>FEATURE YOUR RESUME</CENTER>";s:16:"slide_imagetext2";s:66:"<CENTER>STAND OUT FROM THE CROWD BY FEATURING YOUR RESUME</CENTER>";s:12:"slide_image3";s:56:"http://;domain;/wp-content/uploads/2012/01/jobs_blue.png";s:16:"slide_imagelink3";s:28:"http://;domain;/job-seekers/";s:19:"slide_imageheading3";s:23:"<CENTER>VIDEO!</CENTER>";s:16:"slide_imagetext3";s:68:"<CENTER>PROMOTE YOUR COMPANY OR YOURSELF BY POSTING A VIDEO</CENTER>";s:12:"slide_image4";s:56:"http://;domain;/wp-content/uploads/2012/01/jobs_pink.png";s:16:"slide_imagelink4";s:27:"http://;domain;/recruiters/";s:19:"slide_imageheading4";s:28:"<CENTER>JOB POSTING</CENTER>";s:16:"slide_imagetext4";s:68:"<CENTER>POST A JOB IN 30 SECONDS!\r\nSINGLE JOB POSTING: $125</CENTER>";s:12:"slide_image5";s:57:"http://;domain;/wp-content/uploads/2012/01/jobs_green.png";s:16:"slide_imagelink5";s:26:"http://;domain;/advertise/";s:19:"slide_imageheading5";s:31:"<CENTER>ADVERTISE HERE</CENTER>";s:16:"slide_imagetext5";s:71:"<CENTER>CONTACT US ABOUT BANNER ADS, VIDEOS OR OTHER INQUIRIES</CENTER>";}', 'yes'),
(4287, 0, 'promotion-categories_children', 'a:0:{}', 'yes'),
(1476, 0, 'wpns_width', '500', 'yes'),
(1477, 0, 'wpns_height', '50', 'yes'),
(1690, 0, 'exec-php', 'a:2:{s:7:"version";s:3:"4.9";s:14:"widget_support";b:1;}', 'yes'),
(2928, 0, 'bnc_iphone_pages', 's:1699:"a:52:{s:20:"enable-post-excerpts";i:1;s:27:"enable-twenty-eleven-footer";i:0;s:16:"enable-page-coms";i:0;s:11:"enable-zoom";i:0;s:18:"enable-cats-button";i:1;s:18:"enable-tags-button";i:1;s:20:"enable-search-button";i:1;s:19:"enable-login-button";i:0;s:22:"enable-gigpress-button";i:0;s:16:"enable-flat-icon";i:1;s:16:"enable-gravatars";i:1;s:16:"enable-main-home";i:1;s:15:"enable-main-rss";i:1;s:17:"enable-main-email";i:1;s:23:"enable-truncated-titles";i:1;s:16:"enable-main-name";i:1;s:16:"enable-main-tags";i:1;s:22:"enable-main-categories";i:1;s:9:"prowl-api";s:0:"";s:28:"enable-prowl-comments-button";i:0;s:25:"enable-prowl-users-button";i:0;s:27:"enable-prowl-message-button";i:0;s:9:"home-page";s:7:"Default";s:10:"statistics";s:0:"";s:10:"sort-order";s:4:"name";s:22:"enable-regular-default";i:1;s:20:"enable-show-comments";i:1;s:18:"enable-show-tweets";i:0;s:19:"enable-fixed-header";i:0;s:18:"custom-user-agents";a:0:{}s:16:"excluded-cat-ids";s:0:"";s:16:"excluded-tag-ids";s:0:"";s:10:"adsense-id";s:0:"";s:15:"adsense-channel";s:0:"";s:14:"post-cal-thumb";s:14:"calendar-icons";s:7:"h2-font";s:14:"Helvetica Neue";s:18:"style-text-justify";s:14:"left-justified";s:16:"style-background";s:18:"classic-wptouch-bg";s:16:"enable-exclusive";i:0;s:16:"wptouch-language";s:4:"auto";s:10:"main_title";s:11:"Default.png";i:60;s:9:"Admin.png";i:57;s:9:"Admin.png";i:19;s:9:"Admin.png";i:51;s:9:"Admin.png";i:28;s:9:"Admin.png";s:12:"header-title";s:15:"Jobs In Buffalo";s:17:"custom-footer-msg";s:37:"All content Copyright Jobs In Buffalo";s:23:"header-background-color";s:6:"000000";s:19:"header-border-color";s:6:"333333";s:17:"header-text-color";s:6:"eeeeee";s:10:"link-color";s:6:"006bb3";}";', 'yes'),
(6164, 0, 'rewrite_rules', 'a:91:{s:12:"promotion/?$";s:32:"index.php?post_type=ps_promotion";s:42:"promotion/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?post_type=ps_promotion&feed=$matches[1]";s:37:"promotion/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?post_type=ps_promotion&feed=$matches[1]";s:29:"promotion/page/([0-9]{1,})/?$";s:50:"index.php?post_type=ps_promotion&paged=$matches[1]";s:47:"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$";s:52:"index.php?category_name=$matches[1]&feed=$matches[2]";s:42:"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$";s:52:"index.php?category_name=$matches[1]&feed=$matches[2]";s:35:"category/(.+?)/page/?([0-9]{1,})/?$";s:53:"index.php?category_name=$matches[1]&paged=$matches[2]";s:17:"category/(.+?)/?$";s:35:"index.php?category_name=$matches[1]";s:44:"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?tag=$matches[1]&feed=$matches[2]";s:39:"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?tag=$matches[1]&feed=$matches[2]";s:32:"tag/([^/]+)/page/?([0-9]{1,})/?$";s:43:"index.php?tag=$matches[1]&paged=$matches[2]";s:14:"tag/([^/]+)/?$";s:25:"index.php?tag=$matches[1]";s:45:"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?post_format=$matches[1]&feed=$matches[2]";s:40:"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?post_format=$matches[1]&feed=$matches[2]";s:33:"type/([^/]+)/page/?([0-9]{1,})/?$";s:51:"index.php?post_format=$matches[1]&paged=$matches[2]";s:15:"type/([^/]+)/?$";s:33:"index.php?post_format=$matches[1]";s:37:"promotion/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:47:"promotion/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:67:"promotion/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:62:"promotion/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:62:"promotion/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:30:"promotion/([^/]+)/trackback/?$";s:39:"index.php?ps_promotion=$matches[1]&tb=1";s:50:"promotion/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:51:"index.php?ps_promotion=$matches[1]&feed=$matches[2]";s:45:"promotion/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:51:"index.php?ps_promotion=$matches[1]&feed=$matches[2]";s:38:"promotion/([^/]+)/page/?([0-9]{1,})/?$";s:52:"index.php?ps_promotion=$matches[1]&paged=$matches[2]";s:45:"promotion/([^/]+)/comment-page-([0-9]{1,})/?$";s:52:"index.php?ps_promotion=$matches[1]&cpage=$matches[2]";s:30:"promotion/([^/]+)(/[0-9]+)?/?$";s:51:"index.php?ps_promotion=$matches[1]&page=$matches[2]";s:26:"promotion/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:36:"promotion/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:56:"promotion/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:51:"promotion/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:51:"promotion/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:51:"promotions/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:59:"index.php?promotion-categories=$matches[1]&feed=$matches[2]";s:46:"promotions/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:59:"index.php?promotion-categories=$matches[1]&feed=$matches[2]";s:39:"promotions/([^/]+)/page/?([0-9]{1,})/?$";s:60:"index.php?promotion-categories=$matches[1]&paged=$matches[2]";s:21:"promotions/([^/]+)/?$";s:42:"index.php?promotion-categories=$matches[1]";s:12:"robots\\.txt$";s:18:"index.php?robots=1";s:48:".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$";s:18:"index.php?feed=old";s:32:"feed/(feed|rdf|rss|rss2|atom)/?$";s:27:"index.php?&feed=$matches[1]";s:27:"(feed|rdf|rss|rss2|atom)/?$";s:27:"index.php?&feed=$matches[1]";s:20:"page/?([0-9]{1,})/?$";s:28:"index.php?&paged=$matches[1]";s:41:"comments/feed/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?&feed=$matches[1]&withcomments=1";s:36:"comments/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?&feed=$matches[1]&withcomments=1";s:29:"comments/page/?([0-9]{1,})/?$";s:28:"index.php?&paged=$matches[1]";s:44:"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:40:"index.php?s=$matches[1]&feed=$matches[2]";s:39:"search/(.+)/(feed|rdf|rss|rss2|atom)/?$";s:40:"index.php?s=$matches[1]&feed=$matches[2]";s:32:"search/(.+)/page/?([0-9]{1,})/?$";s:41:"index.php?s=$matches[1]&paged=$matches[2]";s:14:"search/(.+)/?$";s:23:"index.php?s=$matches[1]";s:47:"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?author_name=$matches[1]&feed=$matches[2]";s:42:"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?author_name=$matches[1]&feed=$matches[2]";s:35:"author/([^/]+)/page/?([0-9]{1,})/?$";s:51:"index.php?author_name=$matches[1]&paged=$matches[2]";s:17:"author/([^/]+)/?$";s:33:"index.php?author_name=$matches[1]";s:69:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$";s:80:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]";s:64:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$";s:80:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]";s:57:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$";s:81:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]";s:39:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$";s:63:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]";s:56:"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$";s:64:"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]";s:51:"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$";s:64:"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]";s:44:"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$";s:65:"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]";s:26:"([0-9]{4})/([0-9]{1,2})/?$";s:47:"index.php?year=$matches[1]&monthnum=$matches[2]";s:43:"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?year=$matches[1]&feed=$matches[2]";s:38:"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?year=$matches[1]&feed=$matches[2]";s:31:"([0-9]{4})/page/?([0-9]{1,})/?$";s:44:"index.php?year=$matches[1]&paged=$matches[2]";s:13:"([0-9]{4})/?$";s:26:"index.php?year=$matches[1]";s:27:".?.+?/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:37:".?.+?/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:57:".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:20:"(.?.+?)/trackback/?$";s:35:"index.php?pagename=$matches[1]&tb=1";s:40:"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$";s:47:"index.php?pagename=$matches[1]&feed=$matches[2]";s:35:"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$";s:47:"index.php?pagename=$matches[1]&feed=$matches[2]";s:28:"(.?.+?)/page/?([0-9]{1,})/?$";s:48:"index.php?pagename=$matches[1]&paged=$matches[2]";s:35:"(.?.+?)/comment-page-([0-9]{1,})/?$";s:48:"index.php?pagename=$matches[1]&cpage=$matches[2]";s:20:"(.?.+?)(/[0-9]+)?/?$";s:47:"index.php?pagename=$matches[1]&page=$matches[2]";s:27:"[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:37:"[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:57:"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:20:"([^/]+)/trackback/?$";s:31:"index.php?name=$matches[1]&tb=1";s:40:"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?name=$matches[1]&feed=$matches[2]";s:35:"([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?name=$matches[1]&feed=$matches[2]";s:28:"([^/]+)/page/?([0-9]{1,})/?$";s:44:"index.php?name=$matches[1]&paged=$matches[2]";s:35:"([^/]+)/comment-page-([0-9]{1,})/?$";s:44:"index.php?name=$matches[1]&cpage=$matches[2]";s:20:"([^/]+)(/[0-9]+)?/?$";s:43:"index.php?name=$matches[1]&page=$matches[2]";s:16:"[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:26:"[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:46:"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:41:"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:41:"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";}', 'yes'),
(3633, 0, 'wpmp_flash', '', 'yes'),
(3634, 0, 'wpmp_switcher_mode', 'browser', 'yes'),
(3635, 0, 'wpmp_switcher_detection', 'simple', 'yes'),
(3636, 0, 'wpmp_switcher_desktop_domains', 'buffalojoblink.com', 'yes'),
(3637, 0, 'wpmp_switcher_mobile_domains', 'm.buffalojoblink.com', 'yes'),
(3638, 0, 'wpmp_switcher_mobile_theme', 'WordPress Mobile (base)', 'yes'),
(3639, 0, 'wpmp_switcher_mobile_theme_stylesheet', 'mobile_pack_base', 'yes'),
(3640, 0, 'wpmp_switcher_mobile_theme_template', 'mobile_pack_base', 'yes'),
(3641, 0, 'wpmp_switcher_footer_links', 'true', 'yes'),
(3642, 0, 'wpmp_switcher_hits_desktop', '33', 'yes'),
(3643, 0, 'wpmp_switcher_hits_mobile', '2', 'yes'),
(3644, 0, 'wpmp_switcher_hits_start', '1326060696.03', 'yes'),
(3645, 0, 'wpmp_barcode_title', 'Our mobile site', 'yes'),
(3646, 0, 'wpmp_barcode_link', 'http://buffalojoblink.com', 'yes'),
(3647, 0, 'wpmp_barcode_size', '190', 'yes'),
(3648, 0, 'wpmp_barcode_help', 'true', 'yes'),
(3649, 0, 'wpmp_barcode_reader_list', 'true', 'yes'),
(3650, 0, 'wpmp_ads_title', 'Mobile ads', 'yes'),
(3651, 0, 'wpmp_ads_provider', 'none', 'yes'),
(3652, 0, 'wpmp_ads_publisher_id', '', 'yes'),
(3653, 0, 'wpmp_ads_desktop_disable', 'true', 'yes'),
(3654, 0, 'wpmp_analytics_provider', 'percent', 'yes'),
(3655, 0, 'wpmp_analytics_provider_id', '', 'yes'),
(3656, 0, 'wpmp_mpexo_client_key', '4f0a14980a7eb8.42194603', 'yes'),
(3657, 0, 'wpmp_mpexo_description', 'tagline', 'yes'),
(3658, 0, 'wpmp_mpexo_description_custom', 'Buffalo Jobs and Career Advice — The Buffalo JobLink', 'yes'),
(3659, 0, 'wpmp_mpexo_classification', 'both', 'yes'),
(3660, 0, 'wpmp_mpexo_content', 'both', 'yes'),
(3661, 0, 'wpmp_mpexo_popularity', 'true', 'yes'),
(3662, 0, 'wpmp_mpexo_diagnostics', 'true', 'yes'),
(3663, 0, 'wpmp_mpexo_email', 'false', 'yes'),
(3664, 0, 'wpmp_mpexo_enabled_beta', 'false', 'yes'),
(3666, 0, 'wpmp_theme_home_link_in_menu', 'true', 'yes'),
(3667, 0, 'wpmp_theme_post_summary', 'teaser', 'yes'),
(3668, 0, 'wpmp_theme_post_summary_metadata', 'true', 'yes'),
(3669, 0, 'wpmp_theme_post_count', '5', 'yes'),
(3670, 0, 'wpmp_theme_teaser_length', '50', 'yes'),
(3671, 0, 'wpmp_theme_widget_list_count', '5', 'yes'),
(3672, 0, 'wpmp_theme_transcoder_remove_media', 'true', 'yes'),
(3673, 0, 'wpmp_theme_transcoder_partition_pages', 'true', 'yes'),
(3674, 0, 'wpmp_theme_transcoder_shrink_images', 'true', 'yes'),
(3675, 0, 'wpmp_theme_transcoder_simplify_styling', 'true', 'yes'),
(3676, 0, 'wpmp_theme_nokia_templates', 'true', 'yes'),
(4110, 0, 'supercache_stats', 'a:3:{s:9:"generated";i:1326183922;s:10:"supercache";a:5:{s:7:"expired";i:0;s:12:"expired_list";a:0:{}s:6:"cached";i:0;s:11:"cached_list";a:0:{}s:2:"ts";i:1326183922;}s:7:"wpcache";a:3:{s:6:"cached";i:0;s:7:"expired";i:0;s:5:"fsize";s:3:"0KB";}}', 'yes');

-- --------------------------------------------------------

--
-- Table structure for table `wp_postmeta`
--

DROP TABLE IF EXISTS `wp_postmeta`;
CREATE TABLE IF NOT EXISTS `wp_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=355 ;

--
-- Dumping data for table `wp_postmeta`
--

INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(31, 19, '_edit_last', '1'),
(32, 19, '_edit_lock', '1326559547:1'),
(33, 19, '_wp_page_template', 'default'),
(34, 19, '_genesis_layout', 'sidebar-content'),
(35, 19, '_genesis_title', ';city; job postings, ;city; resumes and recruiter resources — The ;city; JobLink'),
(36, 19, '_genesis_description', 'Post your local ;city; jobs for less at The ;city; JobLink!  Search ;city; resumes, including video resumes, access recruiter resources and connect with the best local talent in ;city;, ;state;.'),
(37, 19, '_genesis_keywords', 'post jobs in ;city-small;, post jobs in ;city-small; ;state-small;, ;city-small; job posting, ;city-small; ;state-small; job posting, ;city-small; resumes, ;city-small; ;state-small; resumes, video job posting, video resumes in ;city-small;, video resumes in ;city-small; ;state-small;'),
(44, 28, '_edit_lock', '1326559831:1'),
(43, 28, '_edit_last', '1'),
(45, 28, '_wp_page_template', 'default'),
(46, 28, '_genesis_title', ';city; ;state; jobs — Sitemap — The ;city; JobLink'),
(47, 31, '_edit_last', '1'),
(48, 31, '_edit_lock', '1326559567:1'),
(49, 31, '_wp_page_template', 'default'),
(50, 31, '_genesis_layout', 'full-width-content'),
(51, 45, '_edit_last', '1'),
(52, 45, '_edit_lock', '1327778287:1'),
(53, 45, '_wp_page_template', 'default'),
(54, 45, '_genesis_layout', 'full-width-content'),
(55, 51, '_edit_last', '1'),
(56, 51, '_edit_lock', '1326566490:1'),
(57, 51, '_wp_page_template', 'default'),
(58, 54, '_edit_last', '1'),
(59, 54, '_edit_lock', '1326559564:1'),
(60, 54, '_wp_page_template', 'default'),
(61, 57, '_edit_last', '1'),
(62, 57, '_edit_lock', '1327580535:1'),
(63, 57, '_wp_page_template', 'default'),
(64, 60, '_edit_last', '1'),
(65, 60, '_edit_lock', '1326559550:1'),
(66, 60, '_wp_page_template', 'default'),
(71, 66, '_menu_item_type', 'custom'),
(72, 66, '_menu_item_menu_item_parent', '0'),
(73, 66, '_menu_item_object_id', '66'),
(74, 66, '_menu_item_object', 'custom'),
(75, 66, '_menu_item_target', ''),
(76, 66, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(77, 66, '_menu_item_xfn', ''),
(78, 66, '_menu_item_url', 'http://www.;domain;/#search'),
(89, 68, '_menu_item_type', 'post_type'),
(90, 68, '_menu_item_menu_item_parent', '0'),
(91, 68, '_menu_item_object_id', '57'),
(92, 68, '_menu_item_object', 'page'),
(93, 68, '_menu_item_target', ''),
(94, 68, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(95, 68, '_menu_item_xfn', ''),
(96, 68, '_menu_item_url', ''),
(98, 69, '_menu_item_type', 'post_type'),
(99, 69, '_menu_item_menu_item_parent', '0'),
(100, 69, '_menu_item_object_id', '19'),
(101, 69, '_menu_item_object', 'page'),
(102, 69, '_menu_item_target', ''),
(103, 69, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(104, 69, '_menu_item_xfn', ''),
(105, 69, '_menu_item_url', ''),
(174, 108, '_edit_last', '1'),
(175, 108, '_edit_lock', '1326559511:1'),
(177, 108, '_genesis_title', ';city; Job Interview Tips — The ;city; JobLink'),
(178, 108, '_genesis_description', 'Tips for interviewing for a job in ;city; ;state;.'),
(179, 108, '_genesis_keywords', 'job interview, career advice, ;city-small; jobs, ;city-small; ;state-small; jobs, jobs in ;city-small;, jobs in ;city-small; ;state-small;, ;city-small; job seekers, ;city-small; ;state-small; job seekers ;city-small; job search, ;city-small; ;state-small; job search, ;city-small; ;state-small; employment'),
(187, 130, '_menu_item_type', 'custom'),
(188, 130, '_menu_item_menu_item_parent', '0'),
(189, 130, '_menu_item_object_id', '130'),
(190, 130, '_menu_item_object', 'custom'),
(191, 130, '_menu_item_target', ''),
(192, 130, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(193, 130, '_menu_item_xfn', ''),
(194, 130, '_menu_item_url', 'http://www.;domain;/?pid=6537672636388936&action=post'),
(229, 147, '_edit_last', '1'),
(230, 147, '_edit_lock', '1326559721:1'),
(235, 149, '_edit_last', '1'),
(232, 147, '_genesis_title', 'Job searching help for ;city; students and new grads — The ;city; JobLink'),
(233, 147, '_genesis_description', 'Help for students and new grads seeking employment in ;city; ;state;.'),
(234, 147, '_genesis_keywords', 'student job seeking advice, ;city-small; jobs, ;city-small; ;state-small; jobs, jobs in ;city-small;, jobs in ;city-small; ;state-small;, ;city-small; job seekers, ;city-small; ;state-small; job seekers ;city-small; job search, ;city-small; ;state-small; job search, ;city-small; ;state-small; employment'),
(236, 149, '_edit_lock', '1326559516:1'),
(245, 157, '_edit_last', '1'),
(238, 149, '_genesis_title', 'Resume Writing Tips for ;city; job seekers — The ;city; JobLink'),
(239, 149, '_genesis_description', 'An article for job seekers in ;city; ;state;, providing tips for resume writing.'),
(240, 149, '_genesis_keywords', 'resume writing tips, ;city-small; jobs, ;city-small; ;state-small; jobs, jobs in ;city-small;, jobs in ;city-small; ;state-small;, ;city-small; job seekers, ;city-small; ;state-small; job seekers ;city-small; job search, ;city-small; ;state-small; job search, ;city-small; ;state-small; employment'),
(246, 157, '_edit_lock', '1326559553:1'),
(247, 157, '_wp_page_template', 'page_blog.php'),
(248, 157, '_genesis_title', ';city; Jobs Blog — The ;city; JobLink'),
(249, 157, '_genesis_description', ';city; ;state; jobs and career advice blog.'),
(250, 157, '_genesis_keywords', ';city-small; ;state-small; jobs blog, blog in ;city-small; ;state-small; ;city-small; careers blog'),
(264, 161, '_genesis_description', 'An article on advice for making a career change in ;city; ;state;.'),
(274, 183, '_edit_last', '1'),
(263, 161, '_genesis_title', 'Career change advice for ;city; job seekers — The ;city; JobLink'),
(260, 161, '_edit_last', '1'),
(261, 161, '_edit_lock', '1326559518:1'),
(265, 161, '_genesis_keywords', 'career change, ;city-small; jobs, ;city-small; ;state-small; jobs, jobs in ;city-small;, jobs in ;city-small; ;state-small;, ;city-small; job seekers, ;city-small; ;state-small; job seekers ;city-small; job search, ;city-small; ;state-small; job search, ;city-small; ;state-small; employment'),
(275, 183, '_edit_lock', '1326559519:1'),
(279, 186, '_edit_last', '1'),
(277, 183, '_genesis_title', 'Career advice for ;city; job seekers — The ;city; JobLink'),
(278, 183, '_genesis_description', 'Advice for ;city;, :state; employees on deciding whether to quit your job.'),
(280, 186, '_edit_lock', '1326559522:1'),
(284, 188, '_edit_last', '1'),
(282, 186, '_genesis_title', 'Interview tips for ;city; job seekers — The ;city; JobLink'),
(283, 186, '_genesis_description', 'Helpful information and advice for job interviewing in ;city; ;state;.'),
(285, 188, '_edit_lock', '1326559524:1'),
(287, 188, '_genesis_title', 'The Hidden ;city; Job Market — The ;city; JobLink'),
(288, 188, '_genesis_description', 'Strategies for getting a job in the ;city; job market.'),
(301, 149, '_wp_old_slug', 'buffalo_resume_writing_tips'),
(309, 57, '_genesis_title', 'Job seekers in ;city;, ;state; — The ;city; JobLink'),
(310, 57, '_genesis_description', 'Job listings and resources for job seekers in ;city;, ;state;. Our jobs come from local ;city; job boards, newspapers, associations, local company websites and ;city; classified ads.'),
(311, 57, '_genesis_keywords', ';city-small; jobs, ;city-small; ;state-small; jobs, jobs in ;city-small;, jobs in ;city-small; ;state-small;, ;city-small; job seekers, ;city-small; ;state-small; job seekers ;city-small; job search, ;city-small; ;state-small; job search, ;city-small; ;state-small; employment'),
(312, 60, '_genesis_title', 'Advertise ;city;, ;state; jobs — The ;city; JobLink'),
(313, 60, '_genesis_description', 'Advertise your ;city; jobs quickly and inexpensively.  Post video job ads in ;city;!.'),
(314, 60, '_genesis_keywords', 'free ;city-small; job posting, ;city;-small ;state-small; jobs, advertise jobs in ;city-small; ;state-small;, ;city-small; resumes, video job posting in ;city-small; ;state-small;, ;city-small; ;state-small; social network'),
(315, 51, '_genesis_title', ';city; ;state; jobs — Contact Us — The ;city; JobLink'),
(316, 51, '_genesis_description', 'Post your jobs in ;city;. Contact us to learn more!'),
(317, 51, '_genesis_keywords', ';city-small; jobs, ;city-small; ;state-small; jobs, jobs in ;city-small;, jobs in ;city-small; ;state-small;, part-time jobs in ;city-small; ;state-small;, customer service jobs in ;city-small;, ;city-small; job search, ;city-small; ;state-small; job search, ;city-small; ;state-small; employment, ;city-small; ;state-small; social network'),
(318, 54, '_genesis_title', 'Featured ;city; candidate — Post your resume — The ;city; JobLink'),
(319, 54, '_genesis_description', 'Promote yourself online in ;city;, ;state;. Be a featured candidate on The ;city; JobLink! '),
(320, 54, '_genesis_keywords', ';city-small; resume posting, ;city-small; ;state-small; resume posting, ;city-small; ;state-small; jobs, jobs in ;city-small; ;state-small;'),
(321, 45, '_genesis_title', 'Industry Specific Job Boards — The ;city; JobLink'),
(322, 45, '_genesis_description', 'Search jobs specific to your industry.  Our network includes customer service jobs, clerical jobs, healthcare jobs, sales jobs, accounting jobs, and much more.'),
(323, 45, '_genesis_keywords', 'accounting jobs, advertising jobs, sales jobs, marketing jobs, finance jobs, clerical jobs, communications jobs, customer service jobs, teaching jobs, nursing jobs, healthcare Jobs, engineering jobs, secretary jobs'),
(324, 28, '_genesis_description', 'Search jobs in ;city;, ;state; and the surrounding areas.  We provide the most complete and current list of ;city; jobs, as well as career resources.  Our jobs come from local ;city; job boards, newspapers, associations, local company websites and ;city; classified ads.'),
(325, 28, '_genesis_keywords', ';city-small; jobs, ;city-small; ;state-small; jobs, jobs in ;city-small;, jobs in ;city-small; ;state-small;, part-time jobs in ;city-small; ;state-small;, customer service jobs in ;city-small;, ;city-small; job search, ;city-small; ;state-small; job search, ;city-small; ;state-small; employment, ;city-small; ;state-small; social network'),
(326, 31, '_genesis_title', 'Local Job Boards — The ;city; JobLink'),
(327, 31, '_genesis_description', 'Search jobs in your local community.  Our network includes Los Angeles jobs, Houston jobs, Philadelphia jobs, San Diego jobs, St. Louis jobs, Detroit jobs and much more.'),
(328, 31, '_genesis_keywords', 'los angeles jobs, houston jobs, philadelphia jobs, detroit jobs, san diego jobs, st. louis jobs, san francisco jobs, washington dc jobs, baltimore jobs, columbus jobs, memphis Jobs, new orleans jobs, san antonio jobs'),
(333, 188, '_genesis_keywords', ';city-small; jobs, ;city-small; ;state-small; jobs, jobs in ;city-small;, jobs in ;city-small; ;state-small;, ;city-small; job seekers, ;city-small; ;state-small; job seekers ;city-small; job search, ;city-small; ;state-small; job search, ;city-small; ;state-small; employment'),
(335, 186, '_genesis_keywords', ';city-small; jobs, ;city-small; ;state-small; jobs, jobs in ;city-small;, jobs in ;city-small; ;state-small;, ;city-small; job seekers, ;city-small; ;state-small; job seekers ;city-small; job search, ;city-small; ;state-small; job search, ;city-small; ;state-small; employment'),
(337, 183, '_genesis_keywords', 'career advice, ;city-small; jobs, ;city-small; ;state-small; jobs, jobs in ;city-small;, jobs in ;city-small; ;state-small;, ;city-small; job seekers, ;city-small; ;state-small; job seekers ;city-small; job search, ;city-small; ;state-small; job search, ;city-small; ;state-small; employment');

-- --------------------------------------------------------

--
-- Table structure for table `wp_posts`
--

DROP TABLE IF EXISTS `wp_posts`;
CREATE TABLE IF NOT EXISTS `wp_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext NOT NULL,
  `post_title` text NOT NULL,
  `post_excerpt` text NOT NULL,
  `post_status` varchar(20) NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) NOT NULL DEFAULT 'open',
  `post_password` varchar(20) NOT NULL DEFAULT '',
  `post_name` varchar(200) NOT NULL DEFAULT '',
  `to_ping` text NOT NULL,
  `pinged` text NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` text NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT '0',
  `post_type` varchar(20) NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=276 ;

--
-- Dumping data for table `wp_posts`
--

INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(19, 1, '2011-12-17 10:37:09', '2011-12-17 16:07:09', '<h3>Job Postings and Featured Advertising</h3>\r\nPromote your jobs locally for less! Purchase a 30-day job posting now for only <strong>$125</strong>!\r\n\r\n[CSSBUTTON target="http://;domain;/?pid=6537672636388936&amp;action=post" color="8f231f" textcolor="ffffff" float="left" newwindow="false"]Post A Job[/CSSBUTTON]\r\n\r\n<strong>Featured Advertising Options:</strong>\r\n- Home Page Banner Ad: Only $<strong>200</strong> for 30 days\r\n- Home Page Text Ad: Only $<strong>150</strong> for 30 days\r\n\r\n<strong>Have a great company video or video job posting?</strong>\r\n- Video Ad: Only $<strong>300</strong> for 30 days\r\nIncludes home page banner ad and dedicated page for embedded video.\r\n\r\n[CSSBUTTON target="http://;domain;/advertise/" color="8f231f" textcolor="ffffff" float="left" newwindow="false"]Place Your Ad Now[/CSSBUTTON]\r\n<script type="text/javascript">// <![CDATA[\r\ngoogle_ad_client = "ca-pub-9308539135145186";/* Inner Page Ads */google_ad_slot = "8215635861";google_ad_width = 468;google_ad_height = 60;\r\n// ]]></script><script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">// <![CDATA[\r\n\r\n\r\n// ]]></script>\r\n\r\n&nbsp;\r\n<h3>Welcome to the best resource for <strong>recruiters in ;city; ;state;</strong>.</h3>\r\nWe are a <strong>local ;city; job board</strong> and career community. Our mission is to connect <strong>;city; employers and recruiters</strong> with local talent. Whether the need is company advertising, video recruiting, candidate sourcing, or job posting, we have you covered.\r\n\r\n<strong>Recruiters in ;city;</strong> generally spend hundreds, if not thousands of dollars on job advertising. Many of the traditional outlets used are losing relevance or are simply way overpriced. We have worked to create a simple, effective and inexpensive way for <strong>;city; recruiters</strong> to promote jobs as well as company profiles quickly and inexpensively.\r\n\r\n<strong>Company Profile:  </strong>Now, employers can be showcased right on our home page! Provide an attention-grabbing image or promotional ad, and we will link it back to your job postings or company website. <strong>Video Recruiting:</strong> Video advertising and recruiting is becoming the preferred method for providing a complete and comprehensive message to you online audience. We now we offer low-cost video advertising to make the biggest impression on your prospective candidates.\r\n\r\nWe are calling out to all <strong>;city; recruiters!</strong> Review our pricing and packages and compare with the others. Reach out to high quality local candidates today!', ';city; Recruiters', '', 'publish', 'open', 'open', '', 'recruiters', '', '', '2012-01-14 11:29:56', '2012-01-14 16:29:56', '', 0, 'http://buffalojoblink.com/?page_id=19', 0, 'page', '', 0),
(28, 1, '2011-12-18 15:08:31', '2011-12-18 20:08:31', '[wp-realtime-sitemap]', 'Sitemap', '', 'publish', 'open', 'open', '', 'sitemap', '', '', '2012-01-14 11:51:04', '2012-01-14 16:51:04', '', 0, 'http://buffalojoblink.com/?page_id=28', 0, 'page', '', 0),
(31, 1, '2011-12-18 15:31:42', '2011-12-18 20:31:42', '<div>\r\n<table width="100%" border="0" cellspacing="0" cellpadding="0">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<table cellspacing="0" cellpadding="0"><colgroup><col /></colgroup>\r\n<tbody>\r\n<tr>\r\n<td height="20"><a href="http://www.abilenejoblink.com/">Abilene Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.akronjoblink.com/">Akron Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.albuquerquejoblink.com/">Albuquerque Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.alexandriajoblink.com/">Alexandria Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.allentownjoblink.com/">Allentown Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.amarillojoblink.com/">Amarillo Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.anaheimjoblink.com/">Anaheim Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.anchoragejoblink.com/">Anchorage Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.annarborjoblink.com/">Ann Arbor Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.arlingtonjoblink.com/">Arlington Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.athensjoblink.com/">Athens Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.augustajoblink.com/">Augusta Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.aurorajoblink.com/">Aurora Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.bakersfieldjoblink.com/">Bakersfield Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.baltimorejoblink.com/">Baltimore Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.batonrougejoblink.com/">Baton Rouge Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.beaumontjoblink.com/">Beaumont Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.bellevuejoblink.com/">Bellevue Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.berkeleyjoblink.com/">Berkeley Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.billingsjoblink.com/">Billings Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.boisejoblink.com/">Boise Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.bridgeportjoblink.com/">Bridgeport Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.brownsvillejoblink.com/">Brownsville Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.buffalojoblink.com/">Buffalo Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.burbankjoblink.com/">Burbank Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.AkronJobLink.com/">Cambridge Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.capecoraljoblink.com/">Cape Coral Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.carrolltonjoblink.com/">Carrollton Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.caryjoblink.com/">Cary Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.cedarrapidsjoblink.com/">Cedar Rapids Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.chandlerjoblink.com/">Chandler Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.chattanoogajoblink.com/">Chattanooga Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.chesapeakejoblink.com/">Chesapeake Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.chulavistajoblink.com/">Chula Vista Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.cincinnatijoblink.com/">Cincinnati Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.clarksvillejoblink.com/">Clarksville Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.clevelandjoblink.com/">Cleveland Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.coloradospringsjoblink.com/">Colorado Springs Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.columbiajoblink.com/">Columbia Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.columbusjoblink.com/">Columbus Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.concordjoblink.com/">Concord Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.coralspringsjoblink.com/">Coral Springs Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.coronajoblink.com/">Corona Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.corpuschristijoblink.com/">Corpus Christi Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.costamesajoblink.com/">Costa Mesa Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.dalycityjoblink.com/">Daly City Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.daytonjoblink.com/">Dayton Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.dentonjoblink.com/">Denton Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.desmoinesjoblink.com/">Des Moines Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.detroitjoblink.com/">Detroit Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.downeyjoblink.com/">Downey Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.durhamjoblink.com/">Durham Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.elmontejoblink.com/">El Monte Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.elginjoblink.com/">Elgin Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.elizabethjoblink.com/">Elizabeth Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.elkgrovejoblink.com/">Elk Grove Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.eriejoblink.com/">Erie Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.escondidojoblink.com/">Escondido Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.eugenejoblink.com/">Eugene Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.evansvillejoblink.com/">Evansville Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.fairfieldjoblink.com/">Fairfield Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.fayettevillejoblink.com/">Fayetteville Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.flintjoblink.com/">Flint Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.fontanajoblink.com/">Fontana Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.fortcollinsjoblink.com/">Fort Collins Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.fortlauderdalejoblink.com/">Fort Lauderdale Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.fortworthjoblink.com/">Fort Worth Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.fremontjoblink.com/">Fremont Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.fresnojoblink.com/">Fresno Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.fullertonjoblink.com/">Fullerton Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.gardengrovejoblink.com/">Garden Grove Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.garlandjoblink.com/">Garland Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.gilbertjoblink.com/">Gilbert Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.glendalejoblink.com/">Glendale Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.grandprairiejoblink.com/">Grand Prairie Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.grandrapidsjoblink.com/">Grand Rapids Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.greenbayjoblink.com/">Green Bay Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.greensborojoblink.com/">Greensboro Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.hamptonjoblink.com/">Hampton Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.hartfordjoblink.com/">Hartford Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.haywardjoblink.com/">Hayward Jobs</a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td valign="top">\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td height="20"><a href="http://www.pasadenajoblink.com/">Pasadena Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.patersonjoblink.com/">Paterson Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.pembrokepinesjoblink.com/">Pembroke Pines Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.peoriajoblink.com/">Peoria Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.philadelphiajoblink.com/">Philadelphia Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.pittsburghjoblink.com/">Pittsburgh Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.planojoblink.com/">Plano Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.pomonajoblink.com/">Pomona Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.pompanobeachjoblink.com/">Pompano Beach Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.portstluciejoblink.com/">Port St. Lucie Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.portlandjoblink.com/">Portland Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.portsmouthjoblink.com/">Portsmouth Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.providencejoblink.com/">Providence Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.provojoblink.com/">Provo Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.pueblojoblink.com/">Pueblo Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.raleighjoblink.com/">Raleigh Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.renojoblink.com/">Reno Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.richmondjoblink.com/">Richmond Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.riversidejoblink.com/">Riverside Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.rochesterjoblink.com/">Rochester Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.rockfordjoblink.com/">Rockford Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.rosevillejoblink.com/">Roseville Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.sacramentojoblink.com/">Sacramento Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.salemjoblink.com/">Salem Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.salinasjoblink.com/">Salinas Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.saltlakecityjoblink.com/">Salt Lake City Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.sanantoniojoblink.com/">San Antonio Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.sanbernardinojoblink.com/">San Bernardino Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.sanbuenaventurajoblink.com/">San Buenaventura Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.sandiegojoblink.com/">San Diego Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.sanfranciscojoblink.com/">San Francisco Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.santaanajoblink.com/">Santa Ana Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.santaclarajoblink.com/">Santa Clara Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.santaclaritajoblink.com/">Santa Clarita Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.santarosajoblink.com/">Santa Rosa Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.savannahjoblink.com/">Savannah Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.scottsdalejoblink.com/">Scottsdale Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.shreveportjoblink.com/">Shreveport Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.simivalleyjoblink.com/">Simi Valley Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.southbendjoblink.com/">South Bend Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.spokanejoblink.com/">Spokane Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.springfieldjoblink.com/">Springfield Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.stlouisjoblink.com/">St. Louis Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.stpauljoblink.com/">St. Paul Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.stpetersburgjoblink.com/">St. Petersburg Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.stamfordjoblink.com/">Stamford Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.sterlingheightsjoblink.com/">Sterling Heights Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.stocktonjoblink.com/">Stockton Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.sunnyvalejoblink.com/">Sunnyvale Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.sunrisemanorjoblink.com/">Sunrise Manor Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.syracusejoblink.com/">Syracuse Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.tacomajoblink.com/">Tacoma Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.tallahasseejoblink.com/">Tallahassee Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.tempejoblink.com/">Tempe Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.thorntonjoblink.com/">Thornton Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.thousandoaksjoblink.com/">Thousand Oaks Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.toledojoblink.com/">Toledo Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.torrancejoblink.com/">Torrance Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.tucsonjoblink.com/">Tucson Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.vallejojoblink.com/">Vallejo Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.victorvillejoblink.com/">Victorville Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.virginiabeachjoblink.com/">Virginia Beach Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.visaliajoblink.com/">Visalia Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.wacojoblink.com/">Waco Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.warrenjoblink.com/">Warren Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.washingtondcjoblink.com/">Washington DC Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.waterburyjoblink.com/">Waterbury Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.westcovinajoblink.com/">West Covina Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.westjordanjoblink.com/">West Jordan Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.westvalleycityjoblink.com/">West Valley City Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.westminsterjoblink.com/">Westminster Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.wichitafallsjoblink.com/">Wichita Falls Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.winstonsalemjoblink.com/">Winston Salem Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.worcesterjoblink.com/">Worcester Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.yonkersjoblink.com/">Yonkers Jobs</a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td valign="top">\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td height="20"><a href="http://www.gardengrovejoblink.com/">Garden Grove Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.garlandjoblink.com/">Garland Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.gilbertjoblink.com/">Gilbert Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.glendalejoblink.com/">Glendale Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.grandprairiejoblink.com/">Grand Prairie Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.grandrapidsjoblink.com/">Grand Rapids Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.greenbayjoblink.com/">Green Bay Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.greensborojoblink.com/">Greensboro Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.hamptonjoblink.com/">Hampton Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.hartfordjoblink.com/">Hartford Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.haywardjoblink.com/">Hayward Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.hendersonjoblink.com/">Henderson Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.hialeahjoblink.com/">Hialeah Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.highpointjoblink.com/">High Point Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.hollywoodjoblink.com/">Hollywood Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.honolulujoblink.com/">Honolulu Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.houstonjoblink.com/">Houston Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.huntingtonbeachjoblink.com/">Huntington Beach Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.huntsvillejoblink.com/">Huntsville Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.independencejoblink.com/">Independence Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.indianapolisjoblink.com/">Indianapolis Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.inglewoodjoblink.com/">Inglewood Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.irvinejoblink.com/">Irvine Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.irvingjoblink.com/">Irving Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.jacksonjoblink.com/">Jackson Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.jerseycityjoblink.com/">Jersey City Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.jolietjoblink.com/">Joliet Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.killeenjoblink.com/">Killeen Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.knoxvillejoblink.com/">Knoxville Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.lafayettejoblink.com/">Lafayette Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.lakewoodjoblink.com/">Lakewood Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.lancasterjoblink.com/">Lancaster Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.lansingjoblink.com/">Lansing Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.laredojoblink.com/">Laredo Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.lasvegasjoblink.com/">Las Vegas Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.lexingtonjoblink.com/">Lexington Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.littlerockjoblink.com/">Little Rock Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.longbeachjoblink.com/">Long Beach Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.losangelesjoblink.com/">Los Angeles Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.lowelljoblink.com/">Lowell Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.lubbockjoblink.com/">Lubbock Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.madisonjoblink.com/">Madison Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.manchesterjoblink.com/">Manchester Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.mcallenjoblink.com/">McAllen Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.mckinneyjoblink.com/">McKinney Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.memphisjoblink.com/">Memphis Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.mesajoblink.com/">Mesa Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.mesquitejoblink.com/">Mesquite Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.midlandjoblink.com/">Midland Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.milwaukeejoblink.com/">Milwaukee Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.minneapolisjoblink.com/">Minneapolis Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.miramarjoblink.com/">Miramar Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.mobilejoblink.com/">Mobile Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.modestojoblink.com/">Modesto Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.morenovalleyjoblink.com/">Moreno Valley Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.napervillejoblink.com/">Naperville Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.newhavenjoblink.com/">New Haven Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.neworleansjoblink.com/">New Orleans Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.newarkjoblink.com/">Newark Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.newportnewsjoblink.com/">Newport News Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.norfolkjoblink.com/">Norfolk Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.normanjoblink.com/">Norman Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.norwalkjoblink.com/">Norwalk Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.oaklandjoblink.com/">Oakland Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.oceansidejoblink.com/">Oceanside Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.oklahomacityjoblink.com/">Oklahoma City Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.olathejoblink.com/">Olathe Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.orangejoblink.com/">Orange Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.overlandparkjoblink.com/">Overland Park Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.oxnardjoblink.com/">Oxnard Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.palmbayjoblink.com/">Palm Bay Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.palmdalejoblink.com/">Palmdale Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.paradisejoblink.com/">Paradise Jobs</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</div>', 'Local Job Boards', '', 'publish', 'open', 'open', '', 'local-jobs-boards', '', '', '2012-01-14 10:44:40', '2012-01-14 15:44:40', '', 0, 'http://buffalojoblink.com/?page_id=31', 0, 'page', '', 0),
(45, 1, '2011-12-18 15:38:13', '2011-12-18 20:38:13', '<div>\r\n<table width="100%" border="0" cellspacing="0" cellpadding="0">\r\n<tbody>\r\n<tr>\r\n<td valign="top">\r\n<table cellspacing="0" cellpadding="0"><colgroup> <col /></colgroup>\r\n<tbody>\r\n<tr>\r\n<td width="184" height="20"><a href="http://www.accountantjoblink.com/">Accounting Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.advertisingjoblink.com/">Advertising Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.architectjoblink.com/">Architect Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.artistjoblink.com/">Artist Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.biotechjoblink.com/">Biotech Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.clericaljoblink.com/">Clerical Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.communicationsjoblink.com/">Communications Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.customerservicejoblink.com/">Customer Service Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.dentistryjoblink.com/">Dentist Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.doctorjoblink.com/">Doctor Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.educationjoblink.com/">Education Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.engineerjoblink.com/">Engineering Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.entertainmentjoblink.com/">Entertainment Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.financejoblink.com/">Finance Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.foodjoblink.com/">Food Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.governmentjoblink.com/">Government Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.healthcareforce.com/">Healthcare Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.hrjoblink.com/">HR Jobs</a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td valign="top">\r\n<table width="195">\r\n<tbody>\r\n<tr>\r\n<td height="20"><a href="http://www.insurancejoblink.com/">Insurance Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.internetjoblink.com/">Internet Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.labjoblink.com/">Lab Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.lawenforcementjoblink.com/">Law Enforcement Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.lawyerjoblink.com/">Lawyer Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.logisticsjoblink.com/">Logistics Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.lpnjoblink.com/">LPN Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.managementjoblink.com/">Management Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.manufacturingjoblink.com/">Manufacturing Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.marketingjoblink.com/">Marketing Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.nursesjoblink.com/">Nursing Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.pharmacyjoblink.com/">Pharmacy Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.prjoblink.com/">PR Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.psychologyjoblink.com/">Psychology Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.purchasingjoblink.com/">Purchasing Jobs</a></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n</td>\r\n<td valign="top">\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td height="20"><a href="http://www.gardengrovejoblink.com/">Garden Grove Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.radiographerjoblink.com/">Radiographer Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.realtorjoblink.com/">Realtor Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.recruiterjobs.net/">Recruiter Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.researchjoblink.com/">Research Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.retailjoblink.com/">Retail Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.rtjoblink.com/">RT Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.salesjoblink.com/">Sales Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.secretaryjoblink.com/">Secretary Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.socialworkerjoblink.com/">Social Worker Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.teacherjoblink.com/">Teaching Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.technologyjoblink.com/">Technology Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.telecomjoblink.com/">Telecom Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.trainingjoblink.com/">Training Jobs</a></td>\r\n</tr>\r\n<tr>\r\n<td height="20"><a href="http://www.truckingjoblink.com/">Trucking Jobs</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</div>', 'Industry-Specific Job Boards', '', 'publish', 'open', 'open', '', 'industry-job-boards', '', '', '2012-01-28 13:29:34', '2012-01-28 18:29:34', '', 0, 'http://buffalojoblink.com/?page_id=45', 0, 'page', '', 0),
(51, 1, '2011-12-18 17:45:42', '2011-12-18 22:45:42', '<script type="text/javascript">var host = (("https:" == document.location.protocol) ? "https://secure." : "http://");document.write(unescape("%3Cscript src=''" + host + "wufoo.com/scripts/embed/form.js'' type=''text/javascript''%3E%3C/script%3E"));</script>\r\n\r\n<script type="text/javascript">\r\nvar s7x3k7 = new WufooForm();\r\ns7x3k7.initialize({\r\n''userName'':''talentek'', \r\n''formHash'':''s7x3k7'', \r\n''autoResize'':true,\r\n''height'':''582'',\r\n''header'':''show'', \r\n''ssl'':true});\r\ns7x3k7.display();\r\n</script>', 'Contact Us', '', 'publish', 'open', 'open', '', 'contact', '', '', '2012-01-14 11:52:47', '2012-01-14 16:52:47', '', 0, 'http://buffalojoblink.com/?page_id=51', 0, 'page', '', 0),
(54, 1, '2011-12-18 18:02:30', '2011-12-18 23:02:30', '<script type="text/javascript">var host = (("https:" == document.location.protocol) ? "https://secure." : "http://");document.write(unescape("%3Cscript src=''" + host + "wufoo.com/scripts/embed/form.js'' type=''text/javascript''%3E%3C/script%3E"));</script>\r\n\r\n<script type="text/javascript">\r\nvar x7x3p9 = new WufooForm();\r\nx7x3p9.initialize({\r\n''userName'':''talentek'', \r\n''formHash'':''x7x3p9'', \r\n''autoResize'':true,\r\n''height'':''807'',\r\n''header'':''show'', \r\n''ssl'':true});\r\nx7x3p9.display();\r\n</script>', 'Featured Candidate', '', 'publish', 'open', 'open', '', 'featured-candidate', '', '', '2012-01-14 11:30:30', '2012-01-14 16:30:30', '', 0, 'http://buffalojoblink.com/?page_id=54', 0, 'page', '', 0),
(57, 1, '2011-12-18 18:05:25', '2011-12-18 23:05:25', '<h3>Search all local jobs in one place.</h3>\r\nCompany career pages, social networks, associations, newspapers... your search begins and ends here.\r\n\r\n[CSSBUTTON target="http://www.;domain;#search" color="8f231f" textcolor="ffffff" float="left" newwindow="false"]Search ;city; Jobs[/CSSBUTTON]\r\n\r\n<strong>Stand out from the crowd!</strong>\r\n\r\nReserve a space to promote yourself. Include a promotional summary, links to your professional profiles and your resume.\r\n\r\n- Featured Candidate: Only $<strong>150</strong> for 30 days\r\nIncludes home page ad space  and dedicated page for your resume.\r\n\r\n[CSSBUTTON target="http://;domain;/featured-candidate/" color="8f231f" textcolor="ffffff" float="left" newwindow="false"]Be Featured[/CSSBUTTON]\r\n<script type="text/javascript">// <![CDATA[\r\ngoogle_ad_client = "ca-pub-9308539135145186";/* Inner Page Ads */google_ad_slot = "8215635861";google_ad_width = 468;google_ad_height = 60;\r\n// ]]></script><script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">// <![CDATA[\r\n\r\n\r\n// ]]></script>\r\n\r\n&nbsp;\r\n<h3>Are you job searching in ;city;?</h3>\r\nWelcome to The ;city; JobLink. Our mission is to connect ;city; employers with <strong>;city; job seekers</strong>. Search our thousands of <strong>local ;city; jobs</strong> and promote yourself by featuring your resume! It is not uncommon for employers to purchase ad space to promote their company or a specific job opportunity. So, why not job seekers?\r\n\r\nOur job results come from local and national job boards, newspapers, associations, company career websites and online classifieds. We are the only one stop shop for <strong>job seekers in ;city; ;state;</strong>.', ';city; Job Seekers', '', 'publish', 'open', 'open', '', 'job-seekers', '', '', '2012-01-14 11:29:30', '2012-01-14 16:29:30', '', 0, 'http://buffalojoblink.com/?page_id=57', 0, 'page', '', 0),
(60, 1, '2011-12-18 18:11:06', '2011-12-18 23:11:06', '<script type="text/javascript">// <![CDATA[\r\nvar host = (("https:" == document.location.protocol) ? "https://secure." : "http://");document.write(unescape("%3Cscript src=''" + host + "wufoo.com/scripts/embed/form.js'' type=''text/javascript''%3E%3C/script%3E"));\r\n// ]]></script>\r\n\r\n<script type="text/javascript">// <![CDATA[\r\nvar k7x3p3 = new WufooForm();\r\nk7x3p3.initialize({\r\n''userName'':''talentek'', \r\n''formHash'':''k7x3p3'', \r\n''autoResize'':true,\r\n''height'':''1018'',\r\n''header'':''show'', \r\n''ssl'':true});\r\nk7x3p3.display();\r\n// ]]></script>', 'Advertise in ;city;', '', 'publish', 'open', 'open', '', 'advertise', '', '', '2012-01-14 11:30:09', '2012-01-14 16:30:09', '', 0, 'http://buffalojoblink.com/?page_id=60', 0, 'page', '', 0),
(66, 1, '2011-12-18 18:16:44', '2011-12-18 23:16:44', '', 'Search Jobs', '', 'publish', 'open', 'open', '', 'home', '', '', '2012-01-10 03:57:05', '2012-01-10 08:57:05', '', 0, 'http://buffalojoblink.com/?p=66', 3, 'nav_menu_item', '', 0),
(68, 1, '2011-12-18 18:16:44', '2011-12-18 23:16:44', ' ', '', '', 'publish', 'open', 'open', '', '68', '', '', '2012-01-10 03:57:05', '2012-01-10 08:57:05', '', 0, 'http://buffalojoblink.com/?p=68', 1, 'nav_menu_item', '', 0),
(69, 1, '2011-12-18 18:16:44', '2011-12-18 23:16:44', '', ';city; Recruiters', '', 'publish', 'open', 'open', '', '69', '', '', '2012-01-10 03:57:05', '2012-01-10 08:57:05', '', 0, 'http://buffalojoblink.com/?p=69', 2, 'nav_menu_item', '', 0),
(108, 1, '2011-12-28 13:01:16', '2011-12-28 18:01:16', '<strong>;city; Job Seekers - An excellent article on tips for interviewing!</strong>\r\n<script type="text/javascript">// <![CDATA[\r\ngoogle_ad_client = "ca-pub-9308539135145186";\r\n/* Inner Page Ads */\r\ngoogle_ad_slot = "8215635861";\r\ngoogle_ad_width = 468;\r\ngoogle_ad_height = 60;\r\n// ]]></script>\r\n<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">// <![CDATA[\r\n\r\n// ]]></script>\r\n\r\n&nbsp;\r\n\r\nOverlooked Job Interview Tips\r\nBy <a href="http://ezinearticles.com/?expert=Kurt_A_Allan">Kurt A Allan</a>\r\n\r\nThe job interview is often your first chance to meet and make an impression on a potential new employer. Though many people have been through these in the past, they often forget some key elements that are easy to overlook. In today''s job market you need to pay attention to every detail to compete for jobs.\r\n\r\nOne of the easiest things to do before an interview is do some research on the employer. Though it seems obvious, many people overlook this step and show up to an interview without any knowledge about the employer besides what was posted in the original job opening. When you interview with a company you are demonstrating what kind of employee you''ll be if hired. Do you want to show that you''ll be disorganized and uninformed or that you''ll be prepared and competent?\r\n\r\nThe good news is this type of research is incredibly easy! Almost every potential employer probably has an online presence with lots of readily available information including company history, management, and current news releases. Just an hour or so of reading can give you enough knowledge to give you an edge in the interview process.\r\n\r\nThough one of the main points of the interview is for the company to learn about you, being a good listener is a crucial aspect to any job interview. You want to understand and be able to answer the question accurately and succinctly. Most interviewers are not only looking for the specific answers, but also the way that you answer a question. Extra words (or rambling) or off-topic answers are often an indicator that you don''t either know the answer or how to clearly answers the question.\r\n\r\nComing prepared to an interview can help you give clear and precise answers. The internet has many websites that offer some interview questions for you to practice with. Though you probably won''t get the exact same question, preparing will help give you confidence to answer a bunch of different questions and you''ll have many practice answers in your head to work from.\r\n\r\nThe last tip is to always send a follow-up thank you letter or e-mail. It''s surprising how many people forget to do this little last step int he interview process! Sending a thank you note will give you one more chance to briefly reaffirm who you are and why you''re a great match for the open position. It also demonstrates that you appreciated the interviewers time and effort, and what type of employee you''ll be if hired. One again, take every advantage you can get.\r\n\r\nSo remember, the little things count in job interviewing today. Take just a few extra minutes to show up prepared, be a good listener, and send a follow-up thank you note and you''ll help yourself get the extra edge you may need to get that job. Good luck!\r\n\r\nKurt Allan publishes the <a href="http://www.minnesotajobbankhq.com" target="_new">Minnesota Job Bank</a> HQ, the one source <a href="http://www.minnesotajobbankhq.com" target="_new">MN Job Bank</a> for your Minnesota job search.\r\n\r\nArticle Source: <a href="http://ezinearticles.com/?expert=Kurt_A_Allan" target="_new">http://EzineArticles.com/?expert=Kurt_A_Allan</a>\r\n\r\n<a href="http://ezinearticles.com/?Overlooked-Job-Interview-Tips&amp;id=6776377" target="_new">http://EzineArticles.com/?Overlooked-Job-Interview-Tips&amp;id=6776377</a>\r\n\r\n&nbsp;\r\n\r\n<script type="text/javascript">// <![CDATA[\r\ngoogle_ad_client = "ca-pub-9308539135145186";\r\n/* Inner Page Ads */\r\ngoogle_ad_slot = "8215635861";\r\ngoogle_ad_width = 468;\r\ngoogle_ad_height = 60;\r\n// ]]></script>\r\n<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">// <![CDATA[\r\n\r\n// ]]></script>\r\n\r\n[CSSBUTTON target="http://www.;domain;#search" color="8f231f" textcolor="ffffff" float="left" newwindow="false"]Search Jobs[/CSSBUTTON]\r\n\r\n&nbsp;', 'Overlooked Job Interview Tips', '', 'publish', 'open', 'open', '', 'overlooked-job-interview-tips', '', '', '2012-01-14 11:31:56', '2012-01-14 16:31:56', '', 0, 'http://buffalojoblink.com/?p=108', 0, 'post', '', 0),
(147, 1, '2012-01-07 13:20:52', '2012-01-07 18:20:52', '<strong>Students and new grads in ;city; - Check out this article!</strong>\r\n<script type="text/javascript">// <![CDATA[\r\n google_ad_client = "ca-pub-9308539135145186"; /* Inner Page Ads */ google_ad_slot = "8215635861"; google_ad_width = 468; google_ad_height = 60;\r\n// ]]></script>\r\n<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">// <![CDATA[\r\n\r\n\r\n// ]]></script>\r\n\r\nStanding Out From The Crowd As A Student Or Graduate\r\n\r\nBy <a href="http://ezinearticles.com/?expert=Gavin_F_Redelman">Gavin F Redelman</a>\r\n\r\nWhen you dedicate the vast majority of the first quarter of your life to schooling (plus the costs involved in getting an education) it is imperative to ensure that you make the most of your education and begin to set yourself up for the "real world". In order to take advantage of the skills that you have learned, there are a various extra-curricular activities you can do to ensure that you get the most out of what you have paid for. Internships, part-time jobs and volunteer work are the best ways to not only benefit yourself long term but you cannot go wrong with having a little extra "coin" in the pocket right now.\r\n\r\nInternships:\r\n\r\nProfessional internships are often one of the best ways to further educate yourself about your specific field and to gather an abundance of reputable networks for potential future jobs. It goes without saying that having internship will look good on your resume and instantly impress potential employers. Internships are also a great way to get a shoe in the door into a particular company. Going forward, as you have already gained first-hand experience of the business and its culture, you will have a huge advantage over your competitor''s when the time comes to hire new graduates. Which would you prefer - blindly applying for the role with potentially hundreds of other candidates or being able to reach out to one of your contacts within the business?\r\n\r\nPart-Time/ Casual Jobs:\r\n\r\nGenerally speaking most university students will aim to work part-time during their studies. Not only will you learn real life experiences and grow your networking contacts, it is also possible to make a reasonable income which will help in creating a more balanced approach to your university life. It goes without saying that if you can get a job in your chosen field, this can certainly benefit you going forward. However, any type of job will still be considered as work experience to future prospective employers.\r\n\r\nVolunteer Work\r\n\r\nVolunteer work is extremely popular amongst graduates. It can be a way of making a difference in the world whilst accumulating experience. It also looks impressive on a resume. Performing volunteer work can teach you an abundance of life skills and provide you with the opportunity to help those in need or to raise funds for a cause that you feel strongly about. In the cut throat world of job seeking, having volunteer work on your resume is always a positive and portrays a positive image and good first impression to the hiring manager.\r\n\r\nDoes Your Resume Stand Out?\r\n\r\nWhen applying for graduate positions the more value added experience you can include on the resume the greater your chance of finding success. By performing extra-curricular activities, working part time or volunteering your time, will give you an edge over other job candidates who only share similar educational backgrounds to yourself. Remember that as a graduate you need to distinguish yourself from the crowd and brand yourself as a well-rounded job candidate.\r\n\r\n<a href="http://www.redstarresume.com/" target="_new">Resume Writing</a> - During the last decade, RedStarResume has successfully written hundreds of professional resumes for candidates across the globe. From the student or entry level position to the CEO, our unique, custom-made resumes are written specifically to match the goals and desires of our clients and to help them land jobs.\r\n\r\nArticle Source: <a href="http://ezinearticles.com/?expert=Gavin_F_Redelman" target="_new">http://EzineArticles.com/?expert=Gavin_F_Redelman</a>\r\n<a href="http://ezinearticles.com/?Standing-Out-From-The-Crowd-As-A-Student-Or-Graduate&amp;id=6799180" target="_new">http://EzineArticles.com/?Standing-Out-From-The-Crowd-As-A-Student-Or-Graduate&amp;id=6799180</a>\r\n\r\n<script type="text/javascript">// <![CDATA[\r\ngoogle_ad_client = "ca-pub-9308539135145186";\r\n/* Inner Page Ads */\r\ngoogle_ad_slot = "8215635861";\r\ngoogle_ad_width = 468;\r\ngoogle_ad_height = 60;\r\n// ]]></script>\r\n<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">// <![CDATA[\r\n\r\n\r\n// ]]></script>\r\n\r\n[CSSBUTTON target="http://www.;domain;#search" color="8f231f" textcolor="ffffff" float="left" newwindow="false"]Search Jobs[/CSSBUTTON]', 'Standing Out From The Crowd As A Student Or Graduate', '', 'publish', 'open', 'open', '', 'standing-out-from-the-crowd', '', '', '2012-01-14 11:50:14', '2012-01-14 16:50:14', '', 0, 'http://buffalojoblink.com/?p=147', 0, 'post', '', 0),
(130, 1, '2011-12-29 18:17:42', '2011-12-29 23:17:42', '', 'Post A Job', '', 'publish', 'open', 'open', '', 'post-a-job', '', '', '2012-01-10 03:57:05', '2012-01-10 08:57:05', '', 0, 'http://buffalojoblink.com/?p=130', 4, 'nav_menu_item', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(149, 1, '2012-01-07 13:24:31', '2012-01-07 18:24:31', '<script type="text/javascript">// <![CDATA[\r\ngoogle_ad_client = "ca-pub-9308539135145186";\r\n/* Inner Page Ads */\r\ngoogle_ad_slot = "8215635861";\r\ngoogle_ad_width = 468;\r\ngoogle_ad_height = 60;\r\n// ]]></script>\r\n<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">// <![CDATA[\r\n\r\n\r\n// ]]></script>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n5 Tips to Draft an Impressive Resume\r\nBy <a href="http://ezinearticles.com/?expert=Jennifer_Joe_Parker">Jennifer Joe Parker</a>\r\n\r\nPaper resumes gave way to online applications in the last decade. The new trend settling in this decade is to create your own resume website. One thing remains constant throughout the years in all forms of job applications - resume. You are free to adopt any method of job application as long as you are equipped with an impressive resume. Here are the 5 tips to draft an impressive resume and use it to present hard copy or add it to the resume website.\r\n\r\n1) Use titles and sub headings\r\n\r\nOrganize the content under suitable titles. It is important to sort data and club relevant information under one heading. This helps to present a well structured resume that makes it easy for the reader to find out required information. Also, it breaks the monotony of reading vital chunks of information in one go.\r\n\r\nFor example: Common titles used in resume are career objective, work summary, experience details, educational qualifications, achievements, personal details, references etc\r\n\r\n2) Professional Format\r\n\r\nWhether you send a hard or soft copy, make sure the resume is designed professionally. Use white for background and black for the wordings. Using Times New Roman, Calibri or Arial of 12 font size is considered ideal for resume writing. Most resumes should be limited to 2 pages to keep the interest of the recruiter intact. However, executive resumes can go up to 3 pages. Do not use any pictures within the resume. Those planning for a resume website are allowed to be creative and use pictures or colorful backgrounds as long as it is professional.\r\n\r\n3) Keywords Usage\r\n\r\nUsing keywords is essential to make your resume noticeable. Most recruiters adopt the practice of searching candidates based on the certain keywords. The computerized systems select only those profiles that contain the buzzwords. Hence, make sure the words are well placed within the objective and responsibilities segments.\r\n\r\nFor example: The buzzwords for an accounting profile would be accountant, bookkeeper, accounts receivable, accounts payable, benefits specialist, and payroll specialist\r\n\r\n4) Quantified Terms + Action Words\r\n\r\nQuantify your achievements to give an exact idea of the work performed to the recruiters. Instead of putting a generic description, mention the actual quantities of work performed. Make use of action words to present the facts. Common examples are implemented, improved, practiced, formatted, devised, trained, conducted, etc.\r\n\r\nFor example: One may say... ''Improved the quarterly sale turnover significantly''. A better form of expression would be to say.... ''Implemented policies that increased the quarterly sales turnover by 10% from the past quarter''.\r\n\r\n5) Targeted Resume\r\n\r\nUpdate your resume every few days and add details of the advancements of your career to the resume. Tweak the resume contents to match the job requirements. Drafting a resume relevant to the recruiter''s expectations will certainly improve your job prospects. You can alter your career objective and role as per the requirements. Tweaking a resume is about emphasizing certain details of your career more prominently than rest of the information. It does not include providing false information.\r\n\r\nFor example: As per the recruiter''s requirement, you can name your profile as customer service executive, customer attendant, client coordinator, retail management officer, etc to describe your profile.\r\n\r\nWe hope these resume tips help you draft an impressive resume.\r\n\r\nRead Jenny on <a href="http://bestcareerresumewebsite.blogspot.com/2011/12/resume-website-sections.html" target="_new">resume website</a> and <a href="http://bestcareerresumewebsite.blogspot.com/2011/12/how-to-make-personalized-resume-website.html" target="_new">top resume website</a>\r\n\r\nArticle Source: <a href="http://ezinearticles.com/?expert=Jennifer_Joe_Parker" target="_new">http://EzineArticles.com/?expert=Jennifer_Joe_Parker</a>\r\n\r\n<a href="http://ezinearticles.com/?5-Tips-to-Draft-an-Impressive-Resume&amp;id=6791989" target="_new">http://EzineArticles.com/?5-Tips-to-Draft-an-Impressive-Resume&amp;id=6791989</a>\r\n\r\n&nbsp;\r\n\r\n<script type="text/javascript">// <![CDATA[\r\ngoogle_ad_client = "ca-pub-9308539135145186";\r\n/* Inner Page Ads */\r\ngoogle_ad_slot = "8215635861";\r\ngoogle_ad_width = 468;\r\ngoogle_ad_height = 60;\r\n// ]]></script>\r\n<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">// <![CDATA[\r\n\r\n\r\n// ]]></script>\r\n\r\n[CSSBUTTON target="http://www.;domain;#search" color="8f231f" textcolor="ffffff" float="left" newwindow="false"]Search Jobs[/CSSBUTTON]\r\n\r\n&nbsp;', '5 Tips to Draft an Impressive Resume', '', 'publish', 'open', 'open', '', 'resume_writing_tips', '', '', '2012-01-14 11:31:35', '2012-01-14 16:31:35', '', 0, 'http://buffalojoblink.com/?p=149', 0, 'post', '', 0),
(157, 1, '2012-01-07 13:40:23', '2012-01-07 18:40:23', '', 'Blog', '', 'publish', 'open', 'open', '', 'blog', '', '', '2012-01-14 10:45:06', '2012-01-14 15:45:06', '', 0, 'http://buffalojoblink.com/?page_id=157', 0, 'page', '', 0),
(161, 1, '2012-01-07 14:00:07', '2012-01-07 19:00:07', '<strong>;city; Jobs Seekers - Here is an excellent article on preparing to take on career change!</strong>\r\n<script type="text/javascript">// <![CDATA[\r\ngoogle_ad_client = "ca-pub-9308539135145186";\r\n/* Inner Page Ads */\r\ngoogle_ad_slot = "8215635861";\r\ngoogle_ad_width = 468;\r\ngoogle_ad_height = 60;\r\n// ]]></script>\r\n<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">// <![CDATA[\r\n\r\n// ]]></script>\r\n\r\n\r\n<html>\r\n<head><title>How To Really Move Forward In Your Career</title></head>\r\n\r\n<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">\r\n\r\n<p>How To Really Move Forward In Your Career<br>\r\nBy <a href="http://ezinearticles.com/?expert=Deborah_Brown-Volkman">Deborah Brown-Volkman</a></p>\r\n\r\n\r\n<p>People come to me all the time because they are unhappy in their careers and are not sure what to do about it. They tell me the reasons they don''t have what they want; the economy, their company; some are even honest enough to blame themselves. They are all facing tough challenges, either internal or external.</p><p>When you have an unresolved challenge in your career, it affects your whole life. You think about your challenge all the time, and in many cases, it consumes and defines you. You want more and are willing to do the work; you just don''t believe it''s possible. Or, you don''t how to get there.</p><p>I believe that people do not move forward in their careers for 2 reasons. Once you overcome and push past these 2 items, you are ready to go.</p><p><em>So what are these 2 items? See them below.</em></p><p><strong>1) FEAR</strong></p><p>Everyone is afraid of something and fear is normal. Actually, fear can be a good thing, because it protects you from harm or getting into damaging situations. But, fear is negative when it paralyzes you and keeps you from taking action. For example, fear of making a mistake will keep you from trying something new. Fear of looking bad in front of friends and family will keep you from expressing your true career wishes to the people in your life. Fear of failing will keep you from succeeding.</p><p>It''s important to recognize fear for what it is; a scary thought that turns into an emotion, that in turn, stops you. If you can remember that a thought is just a thought, without judging it, then your thought does not have to keep you from moving forward anymore.</p><p>Many people believe they will act when fear goes away, but fear doesn''t disappear on its own. You eliminate fear by talking yourself through it. That''s how you push past fear, you become your own savior and tell yourself that it''s ok to be afraid, but it''s not ok to stay where you are. Fear goes away when you switch your mindset to pro-active, rather than re-active.</p><p><strong>2) LOGISTICS</strong></p><p>While fear covers the thinking portion of your problem, logistics is the set of steps you take to move your career forward.</p><p>Say to yourself, "here are the steps that I''m going to take" and then take them. If you take these steps on a regular basis, you will reach your career goals. If you don''t take these steps, you won''t. If you take these steps here and there, you may reach your goals, or you may not. And, if you do, it will take a long time.</p><p>Some people stop at logistics because they don''t know what steps to take. Again, this is normal. Write down what you do know and begin there. Put these steps in your calendar and start moving forward. What you don''t know turn into a question. For example, "I don''t know who to call" becomes "who can I call that will point me in the right direction?" You are not supposed to have all the answers, so expect that you will be reaching out to people who do.</p><p>Logistics also is about taking one step a time. Small piece by small piece. You may want to rush to the finish line, but slow and steady wins the race.</p><p>***Deborah Brown-Volkman, PCC, is the President of Surpass Your Dreams, Inc. a successful career, life, and mentor coaching programs for those who want a new job, new career, or a new way to flourish in today''s hectic workplace. She is the author of "Coach Yourself To A New Career", "Don''t Blow It! The Right Words For The Right Job" and "How To Feel Great At Work Everyday." Deborah can be reached at <a target="_new" href="http://www.surpassyourdreams.com">http://www.surpassyourdreams.com</a> or at (631) 874-2877.***</p>\r\n\r\n<p>\r\nArticle Source: <a href="http://ezinearticles.com/?expert=Deborah_Brown-Volkman" target="_new">http://EzineArticles.com/?expert=Deborah_Brown-Volkman</a>\r\n\r\n<br><a href="http://ezinearticles.com/?How-To-Really-Move-Forward-In-Your-Career&id=6790879" target="_new">http://EzineArticles.com/?How-To-Really-Move-Forward-In-Your-Career&id=6790879</a>\r\n\r\n<br>\r\n<script type="text/javascript">// <![CDATA[\r\ngoogle_ad_client = "ca-pub-9308539135145186";\r\n/* Inner Page Ads */\r\ngoogle_ad_slot = "8215635861";\r\ngoogle_ad_width = 468;\r\ngoogle_ad_height = 60;\r\n// ]]></script>\r\n<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">// <![CDATA[\r\n\r\n// ]]></script>\r\n\r\n[CSSBUTTON target="http://www.;domain;#search" color="8f231f" textcolor="ffffff" float="left" newwindow="false"]Search Jobs[/CSSBUTTON]\r\n\r\n\r\n</p>\r\n\r\n</body>\r\n</html>', 'How To Really Move Forward In Your Career', '', 'publish', 'open', 'open', '', 'move-forward-in-your-career', '', '', '2012-01-14 11:31:25', '2012-01-14 16:31:25', '', 0, 'http://buffalojoblink.com/?p=161', 0, 'post', '', 0),
(183, 1, '2012-01-08 16:19:40', '2012-01-08 21:19:40', '<strong>;city; Job Seekers - Considering quitting your job? Read this one...</strong>\r\n<script type="text/javascript">// <![CDATA[\r\n   google_ad_client = "ca-pub-9308539135145186"; /* Inner Page Ads */ google_ad_slot = "8215635861"; google_ad_width = 468; google_ad_height = 60;\r\n// ]]></script>\r\n<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">// <![CDATA[\r\n\r\n\r\n// ]]></script>\r\n\r\n3 Things to Consider Before Quitting Your Job\r\n\r\nBy <a href="http://ezinearticles.com/?expert=Clay_Andrews">Clay Andrews</a>\r\n\r\nThese days there are a lot of people unsatisfied with their line of work. It''s not uncommon to feel a soul-sucking feeling as you head in to work at something that just isn''t rewarding for you.\r\n\r\nIs this what you were meant to do with your life? Is this all that there is? Just do this day-in-and-day-out and live for those magical 48 hours we call the weekend?\r\n\r\nThoughts like this can lead to feelings of creeping dread as you stare down a depressing path that you may just end up calling "the rest of your life."\r\n\r\nBut things don''t have to necessarily be this way. There are quite a few people who have quit their jobs and found meaningful employment or started their own businesses.\r\n\r\nHowever, before you take the plunge and hand your letter of resignation to your boss, it is important to think things out a bit.\r\n\r\nFirst, ask yourself if this is a chronic problem or if this is just something you''re feeling in the heat of the moment after getting chewed out at a recent meeting. If this is a long term problem that has haunted you for a long time, on the other hand, then perhaps this is something you might want to do.\r\n\r\nSecond, understand the situation better. What specifically don''t you like about your job? Is it the fact that you aren''t in control of certain things? Is it that you don''t feel respected for what you do? Is it that what you do isn''t aligned with your strengths?\r\n\r\nDon''t just identify what you''re moving away from though. Understand what you want to move toward. Moving away from what you don''t want doesn''t guarantee you that you''ll get where you want to go, it only pushes you out of your current situation. Do you want more free time? Do you want more responsibility? Less responsibility? An outlet for your creativity? Something more logical? Get specific about what you truly enjoy doing with your life.\r\n\r\nFinally, develop a plan for leaving your job. Yes, action is important, but blind action can be dangerous. Once you figure out what you''d rather be doing than working at your job, get a realistic roadmap to taking you from point A to point B. If you can, get the foundation laid before actually quitting your job. Start that blog, get the business license, find the perfect retail space, or whatever you need to do.\r\n\r\nThen once you have a reasonable plan and maybe even a little bit of cash-flow, then consider handing in your resignation so you can strike out on your own and peruse the living that your truly want.\r\n\r\nIf you want to learn more on <a href="http://www.illuminatedmind.net/2011/10/07/why-quitting-your-job-wont-solve-all-your-problems/" target="_new">quitting your job</a>, stop by my <a href="http://www.journeyofmyown.com" target="_new">lifestyle design</a> blog for advice and tips on how to start your own business and make it profitable.\r\n\r\nArticle Source: <a href="http://ezinearticles.com/?expert=Clay_Andrews" target="_new">http://EzineArticles.com/?expert=Clay_Andrews</a>\r\n<a href="http://ezinearticles.com/?3-Things-to-Consider-Before-Quitting-Your-Job&amp;id=6783730" target="_new">http://EzineArticles.com/?3-Things-to-Consider-Before-Quitting-Your-Job&amp;id=6783730</a>\r\n\r\n&nbsp;\r\n\r\n<script type="text/javascript">// <![CDATA[\r\n   google_ad_client = "ca-pub-9308539135145186"; /* Inner Page Ads */ google_ad_slot = "8215635861"; google_ad_width = 468; google_ad_height = 60;\r\n// ]]></script>\r\n<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">// <![CDATA[\r\n\r\n\r\n// ]]></script>\r\n\r\n[CSSBUTTON target="http://www.;domain;#search" color="8f231f" textcolor="ffffff" float="left" newwindow="false"]Search Jobs[/CSSBUTTON]', '3 Things to Consider Before Quitting Your Job', '', 'publish', 'open', 'open', '', '3-things-to-consider-before-quitting-your-job', '', '', '2012-01-14 11:31:17', '2012-01-14 16:31:17', '', 0, 'http://buffalojoblink.com/?p=183', 0, 'post', '', 0),
(186, 1, '2012-01-08 16:24:13', '2012-01-08 21:24:13', '<strong>An interesting article on interview preparation.</strong>\r\n<script type="text/javascript">// <![CDATA[\r\n  google_ad_client = "ca-pub-9308539135145186"; /* Inner Page Ads */ google_ad_slot = "8215635861"; google_ad_width = 468; google_ad_height = 60;\r\n// ]]></script>\r\n<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">// <![CDATA[\r\n\r\n\r\n// ]]></script>\r\n4 Ways to Charm an Interviewer\r\nBy <a href="http://ezinearticles.com/?expert=Ken_Sundheim">Ken Sundheim</a>\r\n\r\nIf someone were to ask me, "What are some things that interviewers want to see or hear from interviewees?", then I could probably go on all day.\r\n\r\nIn the interest of brevity and not overwhelming you, here are four.\r\n\r\n1. Passion - Passion cannot be faked. Any good interviewer is not only going to want to see interest in their company, but interest in their industry from this person they are interviewing.\r\n\r\nFor instance, and this may seem like a no-brainer, if you are interviewing for a sales job at a television network, don''t tell your interviewer about your lifelong ambition to be a news anchor.\r\n\r\nYou should be there auditioning for an on-air role, in that case, not interviewing for a sales position, and the interviewer is completely without fault not to offer you the job, even if you have great sales credentials.\r\n\r\n2. Never Be Complacent - This is a crucial one. You must never be complacent, and never allow yourself to be okay with some negative status quo, even if you feel powerless against it.\r\n\r\nA good current example is the unemployment level. It is true that the unemployment rate is sky-high right now, and that a lot of good employees are out of work.\r\n\r\nBut interviewing and getting a job is a fight; however, the more educated and the more prepared you are, the better you are going to do in battle, so to speak. You can never allow yourself to get complacent or dragged down by external forces (e.g., the unemployment level).\r\n\r\n3. Guide Your Interviewer - Your resume should serve as your interviewer''s road map. What you have in a resume is an anticipation of questions that will be asked of you in an interview.\r\n\r\nNow, you can''t anticipate all questions, but if you write your resume properly, you can essentially prepare for the questions that are going to be asked of you, and set them up to where you look good.\r\n\r\nYou don''t always have to tell someone you went to community college if you went on to graduate from a 4-year college, for instance. If you know you are going in to interview at a firm that prizes the cache of higher education, thinking about that fact can help put you one step closer to a successful interview.\r\n\r\n4. People Are People - Understand that the person you are interviewing with is only a human being. They''re not perfect, they''re not magical, but a lot of people go in and put interviewers on such a pedestal that they end up getting an offer that''s so bad they''re not treated well once they get the job - if they get the job at all.\r\n\r\nYou want to analyze how interviewers think, how HR professionals think, and use that analysis to get the job you want, the job you''re passionate about, and not the job you''re willing to settle for.\r\n\r\nYou want to analyze how interviewers think, how HR professionals think, and use that analysis to get the job you want, the job you''re passionate about, and not the job you''re willing to settle for.\r\n\r\nKen Sundheim runs KAS Placement, an executive staffing firm that Ken started in 2005.\r\n\r\n<a href="http://kasplacement.com/internship-review-kas-placement.php" target="_new">KAS Placement Reviews Media Internship</a>\r\n\r\nKen''s articles have appeared in, among many others Forbes, NYTimes, USA Today and more.\r\n\r\n<a href="http://www.kensundheim.com/" target="_new">Ken Sundheim KAS Placement Blog</a>\r\n\r\nArticle Source: <a href="http://ezinearticles.com/?expert=Ken_Sundheim" target="_new">http://EzineArticles.com/?expert=Ken_Sundheim</a>\r\n<a href="http://ezinearticles.com/?4-Ways-to-Charm-an-Interviewer&amp;id=6784946" target="_new">http://EzineArticles.com/?4-Ways-to-Charm-an-Interviewer&amp;id=6784946</a>\r\n\r\n&nbsp;\r\n\r\n<script type="text/javascript">// <![CDATA[\r\n  google_ad_client = "ca-pub-9308539135145186"; /* Inner Page Ads */ google_ad_slot = "8215635861"; google_ad_width = 468; google_ad_height = 60;\r\n// ]]></script>\r\n<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">// <![CDATA[\r\n\r\n\r\n// ]]></script>\r\n\r\n[CSSBUTTON target="http://www.;domain;#search" color="8f231f" textcolor="ffffff" float="left" newwindow="false"]Search Jobs[/CSSBUTTON]', '4 Ways to Charm an Interviewer', '', 'publish', 'open', 'open', '', '4-ways-to-charm-an-interviewer', '', '', '2012-01-14 11:31:07', '2012-01-14 16:31:07', '', 0, 'http://buffalojoblink.com/?p=186', 0, 'post', '', 0),
(188, 1, '2012-01-08 16:29:32', '2012-01-08 21:29:32', '<strong>Hey ;city; job seekers - Here are some strategies to consider!</strong>\r\n<script type="text/javascript">// <![CDATA[\r\n  google_ad_client = "ca-pub-9308539135145186"; /* Inner Page Ads */ google_ad_slot = "8215635861"; google_ad_width = 468; google_ad_height = 60;\r\n// ]]></script>\r\nThe Hidden Job Market and Strategies for Finding a New Job\r\nBy <a href="http://ezinearticles.com/?expert=Paul_Hedges">Paul Hedges</a>\r\n\r\nWhen searching for a new job most people just look in newspapers or at online job sites. They are certainly a good starting point but not all jobs are advertised on them. There is a huge hidden job market and by taking a more multi pronged strategy to finding a new job it is amazing what opportunities you can find.\r\n\r\nWhat is the hidden job market I hear you ask? Simply it refers to jobs that are currently available but are not directly advertised. So how do you find these jobs? Listed below are some simple strategies to help you find the hidden job market.\r\n\r\nPreparation\r\n\r\nBefore trying any of the methods listed it is important to make sure your CV is looking good. A typical employer will spend less than two minutes looking at a CV. Any hard work in finding a hidden job can be wasted if you send a CV that lets you down.\r\n\r\nA CV is like an advert for you. If it contains little relevant information, is poorly presented or full of spelling mistakes then that reflects badly on you. Before sending your CV make sure all contact details are updated, do a spell check, and get someone to proof read it for you. Not every one is good at writing CV''s so if you are struggling you can find lots of help online or may want to use a CV writing Service like CV Made Better.\r\n\r\nCanvassing for a job\r\n\r\nMarketing yourself to prospective employers can be on of the best strategies for finding a hidden job. If you speak with them directly you will be amazed how you can quickly find yourself a new job. Even if they are not hiring at that time a lot of companies keep peoples details on file which could lead to a job later down the line.\r\n\r\nCanvassing can be done over the phone, face to face or email. Start by getting a copy of your local yellow pages and compile a list of companies your skills might be suited to. For example if you are a mechanic then a list of local garages. Once you have a list of say ten try to find out the name and contact details of the person who deals with recruitment / hiring for the business, which you can usually get by a quick call / email to the company.\r\n\r\nNow you have your list and name you can move onto the second stage contact. Depending upon the type of business you can either do this face to face or via phone. Before contacting the company rehearse what you are going to say a couple of time or if via phone maybe have it written in front of you. It does not need to be a speech below is an example\r\n\r\nHello my name is... I wanted to speak with... who I understand deals with your recruitment?\r\n\r\nIf the person is not available ask when they will be around or if they can call you back if you leave a number. At this point you may get asked to just hand over or send your CV / to the company representative you are speaking with. Do not do this unless you have to. This is a common fob off and may result in your details never getting to their intended target.\r\n\r\nOnce you manage to speak to the correct person be polite / friendly and aware this may not be the best time for them. Start by explaining you are currently looking for a new job and feel that your skills / experience may be off interest (have some examples to hand eg I have worked as a mechanic for the last five years). Ask if they are currently hiring and if not when jobs maybe coming up in the future. Try and build a rapport with the person you are speaking with but don''t be too pushy. Most people will be empathetic to your situation and generally like to help, you just have to be nice. The goal of the conversation is to find out about any current jobs and get yourself into a position where you might be considered or they will at least keep a copy of your details on file for future jobs. Make records of the people / companies you speak with. If you are asked for a copy of your CV / resume make sure you follow up within a week to find out what the person thought etc.\r\n\r\nRepeat this for all the companies in your list and as previously stated keep a record of who you spoke to, what happened, and if you need to follow up about a job coming up in the future. The results of this process will lead you to have not only got your CV out to ten companies who may come back to you in the future, but increased your network and hopefully found some of those hidden jobs.\r\n\r\nRegister with recruitment agencies\r\n\r\nRecruitment agencies handle a lot of vacancies exclusively for their clients. A lot of vacancies don''t get advertised and are filled via people registered with them on their databases. As recruitment agencies work across a multitude of industry sectors there are hundreds of hidden jobs that you could be missing out on. Register with five recruitment agencies that deal with the type of work you are looking for. This will increase your chances of finding a job massively by allowing you access to jobs that you didn''t have previously. Make sure you keep in touch with the agencies and give them a call once a week to enquire about new jobs that they have.\r\n\r\nNetworking\r\n\r\nIf you are looking for a job one of the best tools you have at your disposal is your own social network. The expression "It is not what you know but who you know" can be so true when looking for work. Lots of companies have employee referral schemes and are more likely to look at your application if it comes from someone that already works there. Speak with friends, family and other people you know. Ask them to keep an eye out for you or whether they know of anyone who is hiring. This is a great method of finding a job and again will help you to discover hidden jobs that may not be advertised.\r\n\r\nThe Internet / Social media\r\n\r\nThe internet can be a great tool to marketing your skills to potential employers. Firstly you can register your details with job site like Monster and Jobsite. They have huge CV databases which you can have your CV placed into. These databases are being used more and more by employers /recruitment agencies prior to placing an advert to find new staff.\r\n\r\nSocial networks like Facebook can be very helpful as well. Send a message to your friends letting them know you are looking for work. You can also try changing your status to "looking for a job please contact me if you hear of anything" just make sure your boss or colleagues are not friends.\r\n\r\nOne other thing to try is by placing your own job advert in the work wanted section on sites like Gumtree, Facebook and various jobsites. When writing your advert just put the types of jobs you are looking for and any relevant experience / qualifications.\r\n\r\nFor more help with your CV check my site <a href="http://www.cvmadebetter.com" target="_new">http://www.cvmadebetter.com</a>.\r\n\r\nArticle Source: <a href="http://ezinearticles.com/?expert=Paul_Hedges" target="_new">http://EzineArticles.com/?expert=Paul_Hedges</a>\r\n<a href="http://ezinearticles.com/?The-Hidden-Job-Market-and-Strategies-for-Finding-a-New-Job&amp;id=6781566" target="_new">http://EzineArticles.com/?The-Hidden-Job-Market-and-Strategies-for-Finding-a-New-Job&amp;id=6781566</a>\r\n\r\n&nbsp;\r\n\r\n<script type="text/javascript">// <![CDATA[\r\n  google_ad_client = "ca-pub-9308539135145186"; /* Inner Page Ads */ google_ad_slot = "8215635861"; google_ad_width = 468; google_ad_height = 60;\r\n// ]]></script>\r\n<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">// <![CDATA[\r\n\r\n\r\n// ]]></script>\r\n\r\n[CSSBUTTON target="http://www.;domain;#search" color="8f231f" textcolor="ffffff" float="left" newwindow="false"]Search Jobs[/CSSBUTTON]', 'The Hidden Job Market and Strategies for Finding a New Job', '', 'publish', 'open', 'open', '', 'finding-a-new-job', '', '', '2012-01-14 11:31:02', '2012-01-14 16:31:02', '', 0, 'http://buffalojoblink.com/?p=188', 0, 'post', '', 0);

-- --------------------------------------------------------

--
-- Table structure for table `wp_slim_browsers`
--

DROP TABLE IF EXISTS `wp_slim_browsers`;
CREATE TABLE IF NOT EXISTS `wp_slim_browsers` (
  `browser_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
  `browser` varchar(40) COLLATE utf8_unicode_ci DEFAULT '',
  `version` varchar(15) COLLATE utf8_unicode_ci DEFAULT '',
  `platform` varchar(15) COLLATE utf8_unicode_ci DEFAULT '',
  `css_version` varchar(5) COLLATE utf8_unicode_ci DEFAULT '',
  `type` tinyint(3) unsigned DEFAULT '0',
  PRIMARY KEY (`browser_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `wp_slim_countries`
--

DROP TABLE IF EXISTS `wp_slim_countries`;
CREATE TABLE IF NOT EXISTS `wp_slim_countries` (
  `ip_from` int(10) unsigned NOT NULL DEFAULT '0',
  `ip_to` int(10) unsigned NOT NULL DEFAULT '0',
  `country_code` char(2) COLLATE utf8_unicode_ci DEFAULT '',
  PRIMARY KEY (`ip_from`,`ip_to`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `wp_slim_outbound`
--

DROP TABLE IF EXISTS `wp_slim_outbound`;
CREATE TABLE IF NOT EXISTS `wp_slim_outbound` (
  `outbound_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `outbound_domain` varchar(255) COLLATE utf8_unicode_ci DEFAULT '',
  `outbound_resource` varchar(2048) COLLATE utf8_unicode_ci DEFAULT '',
  `type` tinyint(3) unsigned DEFAULT '0',
  `id` int(10) unsigned NOT NULL DEFAULT '0',
  `dt` int(10) unsigned DEFAULT '0',
  PRIMARY KEY (`outbound_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `wp_slim_screenres`
--

DROP TABLE IF EXISTS `wp_slim_screenres`;
CREATE TABLE IF NOT EXISTS `wp_slim_screenres` (
  `screenres_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
  `resolution` varchar(12) COLLATE utf8_unicode_ci DEFAULT '',
  `colordepth` varchar(5) COLLATE utf8_unicode_ci DEFAULT '',
  `antialias` tinyint(1) DEFAULT '0',
  PRIMARY KEY (`screenres_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `wp_slim_stats`
--

DROP TABLE IF EXISTS `wp_slim_stats`;
CREATE TABLE IF NOT EXISTS `wp_slim_stats` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `ip` int(10) unsigned DEFAULT '0',
  `user` varchar(255) COLLATE utf8_unicode_ci DEFAULT '',
  `language` varchar(5) COLLATE utf8_unicode_ci DEFAULT '',
  `country` varchar(2) COLLATE utf8_unicode_ci DEFAULT '',
  `domain` varchar(255) COLLATE utf8_unicode_ci DEFAULT '',
  `referer` varchar(2048) COLLATE utf8_unicode_ci DEFAULT '',
  `searchterms` varchar(2048) COLLATE utf8_unicode_ci DEFAULT '',
  `resource` varchar(2048) COLLATE utf8_unicode_ci DEFAULT '',
  `browser_id` smallint(5) unsigned NOT NULL DEFAULT '0',
  `screenres_id` smallint(5) unsigned NOT NULL DEFAULT '0',
  `plugins` varchar(255) COLLATE utf8_unicode_ci DEFAULT '',
  `visit_id` int(10) unsigned NOT NULL DEFAULT '0',
  `dt` int(10) unsigned DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `wp_slim_visits`
--

DROP TABLE IF EXISTS `wp_slim_visits`;
CREATE TABLE IF NOT EXISTS `wp_slim_visits` (
  `visit_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `tracking_code` varchar(255) COLLATE utf8_unicode_ci DEFAULT '',
  PRIMARY KEY (`visit_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `wp_terms`
--

DROP TABLE IF EXISTS `wp_terms`;
CREATE TABLE IF NOT EXISTS `wp_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL DEFAULT '',
  `slug` varchar(200) NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_id`),
  UNIQUE KEY `slug` (`slug`),
  KEY `name` (`name`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=38 ;

--
-- Dumping data for table `wp_terms`
--

INSERT INTO `wp_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES
(1, 'Uncategorized', 'uncategorized', 0),
(2, 'Blogroll', 'blogroll', 0),
(4, 'Main', 'main', 0),
(6, 'Buffalo Jobs', 'buffalo-jobs', 0),
(7, 'Careers', 'careers', 0),
(8, 'Job Interview', 'job-interview', 0),
(9, 'Student Job Seeking', 'student-job-seeking', 0),
(10, 'Resume Writing Tips', 'resume-writing-tips', 0),
(11, 'Career Change', 'career-change', 0),
(12, 'Strategies', 'strategies', 0),
(13, 'Resume', 'resume', 0),
(14, 'Tips', 'tips', 0),
(15, 'Standing Out', 'standing-out', 0),
(16, 'Writing', 'writing', 0),
(17, 'Advancement', 'advancement', 0),
(18, 'Students', 'students', 0),
(19, 'Graduating', 'graduating', 0),
(20, 'Job Market', 'job-market', 0),
(21, 'Jobs', 'jobs', 0),
(22, 'Interview Tips', 'interview-tips', 0),
(23, 'Career Advice', 'career-advice', 0),
(24, 'Job Searching Strategies', 'job-searching-strategies', 0),
(25, ';city; jobs', 'city-jobs', 0),
(26, ':job search in in ;city;', 'job-search-in-in-city', 0),
(27, ';city; resume writing', 'city-resume-writing', 0),
(28, 'interviewing in ;city;', 'interviewing-in-city', 0),
(29, ';city; career advice', 'city-career-advice', 0),
(30, ';city; careers', 'city-careers', 0),
(31, 'career advancement', 'career-advancement', 0),
(32, 'career change in ;city;', 'career-change-in-city', 0),
(33, ';city; resumes', 'city-resumes', 0),
(34, 'standing out in ;city;', 'standing-out-in-city', 0),
(35, 'tips for students in ;city;', 'tips-for-students-in-city', 0),
(36, ';city; job market', 'city-job-market', 0),
(37, 'job search in ;city;', 'job-search-in-city', 0);

-- --------------------------------------------------------

--
-- Table structure for table `wp_term_relationships`
--

DROP TABLE IF EXISTS `wp_term_relationships`;
CREATE TABLE IF NOT EXISTS `wp_term_relationships` (
  `object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `term_order` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

--
-- Dumping data for table `wp_term_relationships`
--

INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES
(1, 2, 0),
(2, 2, 0),
(3, 2, 0),
(4, 2, 0),
(5, 2, 0),
(6, 2, 0),
(7, 2, 0),
(1, 1, 0),
(108, 1, 0),
(66, 4, 0),
(68, 4, 0),
(69, 4, 0),
(87, 1, 0),
(147, 1, 0),
(130, 4, 0),
(87, 7, 0),
(149, 1, 0),
(149, 27, 0),
(161, 1, 0),
(149, 29, 0),
(149, 33, 0),
(147, 36, 0),
(147, 35, 0),
(147, 34, 0),
(108, 14, 0),
(147, 19, 0),
(108, 28, 0),
(108, 29, 0),
(183, 1, 0),
(188, 37, 0),
(186, 1, 0),
(161, 29, 0),
(183, 29, 0),
(188, 1, 0),
(183, 30, 0),
(186, 28, 0),
(161, 37, 0),
(186, 14, 0),
(161, 25, 0),
(188, 25, 0),
(147, 37, 0),
(188, 27, 0),
(161, 31, 0),
(161, 32, 0),
(149, 34, 0);

-- --------------------------------------------------------

--
-- Table structure for table `wp_term_taxonomy`
--

DROP TABLE IF EXISTS `wp_term_taxonomy`;
CREATE TABLE IF NOT EXISTS `wp_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `taxonomy` varchar(32) NOT NULL DEFAULT '',
  `description` longtext NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=38 ;

--
-- Dumping data for table `wp_term_taxonomy`
--

INSERT INTO `wp_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES
(1, 1, 'category', '', 0, 7),
(2, 2, 'link_category', '', 0, 7),
(4, 4, 'nav_menu', '', 0, 4),
(6, 6, 'post_tag', 'Buffalo Jobs', 0, 0),
(7, 7, 'post_tag', '', 0, 0),
(8, 8, 'post_tag', '', 0, 0),
(9, 9, 'post_tag', '', 0, 0),
(10, 10, 'post_tag', '', 0, 0),
(11, 11, 'post_tag', '', 0, 0),
(12, 12, 'post_tag', '', 0, 0),
(13, 13, 'post_tag', '', 0, 0),
(14, 14, 'post_tag', '', 0, 2),
(15, 15, 'post_tag', '', 0, 0),
(16, 16, 'post_tag', '', 0, 0),
(17, 17, 'post_tag', '', 0, 0),
(18, 18, 'post_tag', '', 0, 0),
(19, 19, 'post_tag', '', 0, 1),
(20, 20, 'post_tag', '', 0, 0),
(21, 21, 'post_tag', '', 0, 0),
(22, 22, 'post_tag', '', 0, 0),
(23, 23, 'post_tag', '', 0, 0),
(24, 24, 'post_tag', '', 0, 0),
(25, 25, 'post_tag', '', 0, 2),
(26, 26, 'post_tag', '', 0, 0),
(27, 27, 'post_tag', '', 0, 2),
(28, 28, 'post_tag', '', 0, 2),
(29, 29, 'post_tag', '', 0, 4),
(30, 30, 'post_tag', '', 0, 1),
(31, 31, 'post_tag', '', 0, 1),
(32, 32, 'post_tag', '', 0, 1),
(33, 33, 'post_tag', '', 0, 1),
(34, 34, 'post_tag', '', 0, 2),
(35, 35, 'post_tag', '', 0, 1),
(36, 36, 'post_tag', '', 0, 1),
(37, 37, 'post_tag', '', 0, 3);

-- --------------------------------------------------------

--
-- Table structure for table `wp_usermeta`
--

DROP TABLE IF EXISTS `wp_usermeta`;
CREATE TABLE IF NOT EXISTS `wp_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=27 ;

--
-- Dumping data for table `wp_usermeta`
--

INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES
(1, 1, 'first_name', ''),
(2, 1, 'last_name', ''),
(3, 1, 'nickname', 'admin'),
(4, 1, 'description', ''),
(5, 1, 'rich_editing', 'true'),
(6, 1, 'comment_shortcuts', 'false'),
(7, 1, 'admin_color', 'fresh'),
(8, 1, 'use_ssl', '0'),
(9, 1, 'show_admin_bar_front', 'true'),
(26, 1, 'dismissed_wp_pointers', 'wp330_toolbar,wp330_media_uploader'),
(11, 1, 'aim', ''),
(12, 1, 'yim', ''),
(13, 1, 'jabber', ''),
(14, 1, 'wp_capabilities', 'a:1:{s:13:"administrator";s:1:"1";}'),
(15, 1, 'wp_user_level', '10'),
(16, 1, 'wp_dashboard_quick_press_last_post_id', '182'),
(18, 1, 'managenav-menuscolumnshidden', 'a:4:{i:0;s:11:"link-target";i:1;s:11:"css-classes";i:2;s:3:"xfn";i:3;s:11:"description";}'),
(19, 1, 'metaboxhidden_nav-menus', 'a:2:{i:0;s:8:"add-post";i:1;s:12:"add-post_tag";}'),
(20, 1, 'wp_user-settings', 'm6=o&m10=o&editor=html'),
(21, 1, 'wp_user-settings-time', '1326186231'),
(22, 1, 'meta-box-order_toplevel_page_genesis', 'a:1:{s:4:"main";s:304:"genesis-theme-settings-version,genesis-theme-settings-feeds,genesis-theme-settings-layout,genesis-theme-settings-header,genesis-theme-settings-nav,genesis-theme-settings-breadcrumb,genesis-theme-settings-comments,genesis-theme-settings-posts,genesis-theme-settings-blogpage,genesis-theme-settings-scripts";}'),
(23, 1, 'nav_menu_recently_edited', '4'),
(24, 1, 'closedpostboxes_toplevel_page_genesis', 'a:0:{}'),
(25, 1, 'metaboxhidden_toplevel_page_genesis', 'a:0:{}');

-- --------------------------------------------------------

--
-- Table structure for table `wp_users`
--

DROP TABLE IF EXISTS `wp_users`;
CREATE TABLE IF NOT EXISTS `wp_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) NOT NULL DEFAULT '',
  `user_pass` varchar(64) NOT NULL DEFAULT '',
  `user_nicename` varchar(50) NOT NULL DEFAULT '',
  `user_email` varchar(100) NOT NULL DEFAULT '',
  `user_url` varchar(100) NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(60) NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT '0',
  `display_name` varchar(250) NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;

--
-- Dumping data for table `wp_users`
--

INSERT INTO `wp_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES
(1, 'admin', '$P$BgwzRpLFeYIKA0ZZEg7Kevh2jDIfOC0', 'admin', 'info@talentek.com', '', '2011-12-11 17:08:30', '', 0, 'admin');

/*!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 */;

